/*!
Theme Name: QAVS
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: qavs
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

QAVS is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.3;
  font-size: 112.5%;
	-webkit-text-size-adjust: 100%;
}

@media (min-width: 1024px) {
  html {
    font-size: 150.0%;
  }
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

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

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #1f1f1f;
	font-family: 'Open Sans', sans-serif;
	font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-family: 'DM Serif Text', serif;
  font-weight: 400 !important;
}

h5,
h6 {
  font-size: 1rem;
}

h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  font-weight: 400 !important;
}

h1 b,
h2 b,
h3 b,
h4 b,
h5 b,
h6 b {
  font-weight: 400 !important;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}

p {
  margin-top: 0;
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
	background: #fff;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
  color: #136C85;
  text-decoration: underline;
}

a:visited {
	color: #136C85;
}

a:hover {
  color: #082B35;
  text-decoration: underline;
}

a:focus,
a:active {
  outline: none;
  background: #E1ABED;
  box-shadow: 0 4px #0b0c0c;
  color: #0b0c0c;
  text-decoration: none;
  outline: 0;
}

a:hover,
a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

.site-header {
  border-bottom: 4px solid #ccc;
}

.site-header .container {
  display: flex;
  align-items: center;
  min-height: 98px;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
}

.site-branding {
  margin-right: 2rem;
  display: inline-block;
  width: 211px;
  flex: 0 0 auto;
}

.site-branding img {
  width: 100%;
  height: auto;
  display: inline-block;
}

/* Navigation
--------------------------------------------- */
.main-navigation {
	display: none;
  width: 100%;
}

.main-navigation ul {
	list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
  position: relative;
  padding-left: 0;
  text-align: left;
  margin-top: 1.3rem;
}

.main-navigation li:last-child {
  margin-right: 0 !important;
}

.main-navigation a {
	display: inline !important;
  text-decoration: none;
  color: #1f1f1f;
  text-align: right;
  font-size: 19px;
  padding: 0.2rem 0;
}

.main-navigation li.current-menu-item a,
.main-navigation li.current_page_parent a {
  font-weight: bold;
  border-bottom: 3px solid currentColor;

}

.main-navigation li:not(.button) a:hover {
  border-bottom: 3px solid currentColor;
}

.main-navigation li:not(.button) a:focus,
.main-navigation li:not(.button) a:active {
  border-bottom-color: transparent !important;
}

.main-navigation .button a {
  border: 2px solid #8A0DA6;
  padding: 0.35rem 0.5rem;
  color: #8A0DA6;
  background: transparent;
  display: inline-block !important;
  font-weight: 400;
}

.main-navigation .button a:hover {
  background: #8A0DA6;
  color: white;
  text-decoration: none;
}

.main-navigation .button a:focus,
.main-navigation .button a:active {
  background: #E1ABED !important;
  box-shadow: 0 3px #0b0c0c !important;
  border-color: #E1ABED !important;
  color: #0b0c0c !important;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled {
	display: block;
}

.menu-toggle {
  justify-self: flex-end;
  border: none;
  font-weight: 400;
  background: transparent;
  color: #1f1f1f;
  padding: 15px 0;
  text-decoration: underline;
  border-radius: 0 !important;
  cursor: pointer;
}

.menu-toggle:active,
.menu-toggle:focus {
  background: #E1ABED;
  box-shadow: 0 -2px #E1ABED, 0 4px #0b0c0c;
  color: #0b0c0c;
  text-decoration: none;
  outline: none;

}

@media screen and (min-width: 992px) {

  .site-header .container {
    justify-items: start;
    flex-wrap: wrap;
    flex-direction: row;
    min-height: 104px !important;
  }

	.menu-toggle {
		display: none;
  }

  .main-navigation {
    display: block;
    flex: 1;
  }

	.main-navigation ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .main-navigation li {
    text-align: left;
    margin: 0;
    margin-right: 1rem;
    padding-right: 0;
    padding-left: 0;
    margin-top: 0;
  }

  .main-navigation li a {
    display: block;
    padding: 0;
    text-align: center;
  }
}

@media (min-width: 1100px) {
  .main-navigation li {
    margin-right: 1.5rem;
  }
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
}

@media (max-width: 767px) {
  .comment-navigation .nav-links,
  .posts-navigation .nav-links,
  .post-navigation .nav-links {
    flex-direction: column;
  }
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

@media (max-width: 767px) {
  .comment-navigation .nav-next,
  .posts-navigation .nav-next,
  .post-navigation .nav-next {
    text-align: left;
  }
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.post,
.page {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.entry-content h2 {
  margin-bottom: 0.8rem;
  position: relative;
  top: -0.6rem;
}

.entry-content p {
  margin-bottom: 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

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

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

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

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

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

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

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

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

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

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

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

.wp-block-table {
  width:33.333rem;
  max-width: 100%;
  overflow: visible !important;
}

.wp-block-table table {
  border-collapse: collapse;
  margin: 0 !important;
}

*:last-child {
  margin-bottom: 0;
}


.wp-block-table table th,
.wp-block-table table td {
  border-bottom: 1px solid #47A14E;
  text-align: left !important;
  vertical-align: top;
  padding: 0.7rem 0.5rem;
  word-break: break-word;
  min-width: 150px;
}

/**
 * COLORS
 * purple: #8A0DA6
 * blue
 * green
 */

.container {
  width: 1200px;
  max-width: calc(100% - 4em);
  margin: 0 auto;
  position: relative;
}

@media(max-width: 600px) {
  .container {
    max-width: calc(100% - 2em) !important;
  }
}

.pre-header {
  background: #8A0DA6;
  color: white;
}

.pre-header .container {
  height: 45px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.pre-header__social-link,
.pre-header__social-link:visited {
  color: white !important;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
  margin-right: 1.5rem;
  height: 1.25rem;
  width: 1.25rem;
  text-align: center;
  line-height: 1.25rem;
}

.pre-header__social-link:hover {
  text-decoration: none;
  color: #E8C0F2 !important;
  box-shadow: none !important;
}

.pre-header__social-link svg {
  display: inline-block;
}

.pre-header__social-link path {
  fill: currentColor;
}

.pre-header__social-link:hover path {
  fill: #E8C0F2 !important;
}

.pre-header__social-link:focus path,
.pre-header__social-link:active path {
  fill: #0b0c0c !important;
}

.pre-header__social-link:active,
.pre-header__social-link:focus {
  box-shadow: 0 3px white !important;
  color: #0b0c0c;
}

.pre-header__link,
.pre-header__link:visited {
  color: white !important;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  height: 1.25rem;
  padding: 0 0.5rem;
  text-align: center;
  line-height: 1.25rem;
  margin-left: -0.35rem;
}

.pre-header__link:hover {
  color: E8C0F2 !important;
}
.pre-header__link:focus,
.pre-header__link:active {
  color: #1f1f1f !important;
  box-shadow: 0 3px white !important;
}

.site-footer {
  background: #F7F7F7 !important;
  border-bottom: 20px solid #8A0DA6;
}

.site-footer__links {
  font-size: 1em;
  font-weight: 400;
  flex: 1;
}

.site-footer__links a {
  text-decoration: underline;
  color: #1F1F1F;
  margin-right: 2rem;
  /* display: inline-block; */
  font-size: 1em;
  font-weight: 400;
}

.site-footer__links a:hover {
  color: #136C85;
}

.site-footer__links a:focus,
.site-footer__links a:active {
  text-decoration: none;
  color: #0b0c0c;
}

@media (max-width: 992px) {
  .site-footer__links nav {
    display: flex;
    flex-direction: column;
  }

  .site-footer__links a {
    display: inline-block;
    width: auto;
    align-self: baseline;
    padding: 0.25rem 0.1rem;
    margin: 0.65rem 0;
  }
}

.site-footer__links p {
  color: #0b0c0c;
  margin-top: 1.25rem;
  max-width: 750px;
}

.site-footer__phone,
.site-footer__email {
  display: inline !important;
}

.site-footer__email {
  word-break: break-all;
}

.site-footer__phone svg {
  margin-right: 0.3rem;
  position: relative;
  top: 2px;
}

.site-footer__email svg {
  margin-right: 0.3rem;
  position: relative;
  top: 2px;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  font-size: 0.750rem;
  padding: 2.5rem 0;
}

.site-footer__copyright {
  padding-top: 2rem;
  color: #1F1F1F;
  text-align: center;
  font-size: 1em;
  margin-left: 3rem;
  width: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.site-footer__copyright img {
  height: 73px;
  width: 89px;
  display: inline-block;
  flex: 0 0 auto;
}

.site-footer__copyright p {
  margin: 0;
  font-size: 1em;
}

@media (max-width: 1200px) {
  .site-footer__inner {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .site-footer__inner {
    flex-direction: column;
  }

  .site-footer__copyright {
    text-align: left;
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .crown-cta {
    height: auto;
    width: 180px !important;
    display: block !important;
    margin: 2rem auto 0 !important;
  }
}


.ab-block-cta {
  background: transparent !important;
  padding: 0;
}

.ab-cta-text {
  margin-bottom: 1.5rem !important;
}

.ab-block-cta p {
  margin: 0 auto !important;
  width: 700px !important;
  max-width: 100% !important;
  text-align: center;
  font-size: 1rem;
  color: #1f1f1f !important;
}

.ab-cta-title {
  margin-bottom: 1rem !important;
  font-size: 1.583rem;
  color: #1f1f1f !important;
}

.button--inverse {
  border: 2px solid #8A0DA6 !important;
  padding: 0.35rem 1rem;
  color: #8A0DA6 !important;
  font-weight: 500;
  text-decoration: none;
  background: transparent;
  display: inline-block;
  border-radius: 0 !important;
}

.button--inverse:hover {
  background: #8A0DA6;
  color: white !important;
  text-decoration: none;
  border: 2px solid #8A0DA6 !important;
}

.button--inverse:focus,
.button--inverse:active {
  background: #E1ABED !important;
  box-shadow: 0 3px #0b0c0c !important;
  border-color: #E1ABED !important;
  color: #0b0c0c !important;
  outline: 0;
}

@media (max-width: 1024px) {
  .button--inverse {
    padding: 0.555555rem 1.5rem;
  }
}

.button--inverse svg {
  height: 1em !important;
  width: auto;
  display: inline-block;
  position: relative;
  top: 3px;
}

.button--inverse svg path {
  fill: currentColor;
}

.filter-button,
.ab-cta-button a,
.ab-cta-button button {
  background: #8A0DA6 !important;
  color: #fff !important;
  border: 2px solid #8A0DA6 !important;
  font-weight: 500;
  font-size: 1rem !important;
  border-radius: 0 !important;
  line-height: 1.5 !important;
  padding: 0.35rem 1rem !important;
  font-size: 1rem !important;
  transition: none !important;
}

.filter-button:hover,
.ab-cta-button a:hover,
.ab-cta-button button:hover {
  background: #fff !important;
  color: #8A0DA6 !important;
  border: 2px solid #8A0DA6 !important;
  font-weight: 500;
  font-size: 1rem !important;
  outline: 0 !important;
}

.filter-button:focus,
.filter-button:active,
.ab-cta-button a:focus,
.ab-cta-button a:active,
.ab-cta-button button:focus,
.ab-cta-button button:active {
  background: #E1ABED !important;
  box-shadow: 0 3px #0b0c0c !important;
  border-color: #E1ABED !important;
  color: #0b0c0c !important;
  text-decoration: none !important;
  outline: 0 !important;
}

.section {
  background: white;
}

.page-title {
  color: #8A0DA6 !important;
  font-size: 3em;
}

.news-categories p {
  margin-bottom: 0.5rem;;
}

.news-categories a {
  color: #1F1F1F !important;
  text-decoration: none !important;
}

.news-categories ul {
  list-style-type: none;
  padding: 0 !important;
  margin: 0 !important;
}

.news-categories li {
  display: inline-block;
  margin-bottom: 0.9rem !important;
}


.news-categories ul li a {
  background: white !important;
  border: 2px solid #8A0DA6 !important;
  color: #8A0DA6 !important;
  border-radius: 40px;
  padding: 0.25rem 1.25rem;
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 18px;
}

.news-categories ul li a:focus,
.news-categories ul li a:active {
  background: #E1ABED !important;
  box-shadow: 0 3px #0b0c0c !important;
  border-color: #E1ABED !important;
  color: #0b0c0c !important;
}

.news-categories ul li a.active {
  background: #8A0DA6 !important;
  color: white !important;
}

.news-categories p {
  font-weight: 600;
}

.news-social-links {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 18px;
}

.news-social-links a {
  color: #136C85;
  font-weight: 400;
  margin-left: 0.6rem;
}

.news-social-links a:focus,
.news-social-links a:active {
  background: #E1ABED !important;
  box-shadow: 0 3px #0b0c0c !important;
  border-color: #E1ABED !important;
  color: #0b0c0c !important;
}

.news-social-links svg path {
  fill: currentColor;
}

.news-social-links svg circle {
  stroke: currentColor;
}

.news-social-links svg {
  width: auto;
  height: 1rem;
  position: relative;
  top: 5px;
}


.news-social-links svg:before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid currentColor;
  border-radius: 100%;
  position: absolute;
  top: -0.25rem;
  left: -0.25rem;
}

.news-social-links p {
  font-weight: 600;
  color: #1F1F1F;
}


.blog {
  color: #1F1F1F;
}

.news-article__details {

}


.featured-news-article {
  border-left: 10px solid #47A14E;
}

.featured-news-article__details a {
  color: #136C85;
  font-weight: 400;
}

.featured-news-article__details {
  margin-right: 2rem;
}

.featured-news-article {
  display: flex;
  padding-left: 2rem;
  margin-bottom: 45px;
}

.featured-news-article img {
  max-width: 50%;
  height: auto;
  max-height: 360px;
  object-position: center;
  object-fit: cover;
}

@media (max-width: 992px)  {
  .featured-news-article {
    flex-direction: column-reverse;
    padding-left: 1rem;
  }

  .featured-news-article__details {
    margin-top: 2rem;
  }

  .featured-news-article img {
    max-width: 100%;
  }
}

.news-articles {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px 2rem;
}

.news-articles--home {
  margin-top: 45px;
}

.news-article {
  margin: 0 15px 45px;
  width: 380px;
  display: flex;
  flex-direction: column;
}

.news-article:nth-child(odd) {
  border-bottom: 8px solid #8A0DA6;
}

.news-article:nth-child(even) {
  border-bottom: 8px solid #47A14E;
}

.news-article img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
}

.news-article__details {
  margin-top: 30px;
  margin-bottom: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-article__title {
  margin: 0 0 10px !important;
  font-size: 1.25em;
  line-height: 1.3;
  flex: 1;
}

.news-article__meta {
  color: #595959;
  margin: 0 0 30px;
  font-weight: 400;
}

a.news-article__cta {
  color: #136C85;
  justify-self : flex-end;
}

.post-navigation .nav-links {
  margin: 3.5em 0 1em;
}

.post-navigation .nav-links .nav-previous,
.post-navigation .nav-links .nav-next {
  display: block;
}

.post-navigation .nav-links .nav-previous a,
.post-navigation .nav-links .nav-next a {
  display: inline-block;
  max-width: 15em;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  color: #136C85;
}

.post-navigation .nav-links .nav-previous a .nav-subtitle,
.post-navigation .nav-links .nav-next a .nav-subtitle {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.833rem;
}

.post-navigation .nav-links .nav-previous a .nav-title,
.post-navigation .nav-links .nav-next a .nav-title {
  display: block;
  text-decoration: underline;
  font-weight: normal;
  font-size: 0.917rem;
}

.post-navigation .nav-links .nav-previous a:hover,
.post-navigation .nav-links .nav-next a:hover {
  color: #0b0c0c !important;
}

.post-navigation .nav-links .nav-previous a:focus,
.post-navigation .nav-links .nav-next a:focus,
.post-navigation .nav-links .nav-previous a:active,
.post-navigation .nav-links .nav-next a:active {
  text-decoration: none;
  color: #0b0c0c !important;
}

.post-navigation .nav-links .nav-previous a:focus .nav-title,
.post-navigation .nav-links .nav-previous a:active .nav-title,
.post-navigation .nav-links .nav-next a:focus .nav-title,
.post-navigation .nav-links .nav-next a:active .nav-title {
  text-decoration: none;
  color: #0b0c0c;
}

.post-navigation .nav-links .nav-next {
  margin-top: 1rem;
}

.post-navigation .nav-links .nav-previous a {
  margin-top: 1em;
  padding-left: 1.5em;
}

.post-navigation .nav-links .nav-previous a:before {
  content: " ";
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0.25em;
  left: 0;
  background-image: url(/wp-content/themes/qavs/images/prev.svg);
  background-repeat: no-repeat;
  background-size: 1em auto;
  background-position: center;
  transform-origin: 50% 50%;
}

.post-navigation .nav-links .nav-next a {
  padding-left: 1.5em;
}

.post-navigation .nav-links .nav-previous a:hover:before,
.post-navigation .nav-links .nav-previous a:focus:before,
.post-navigation .nav-links .nav-previous a:active:before {
  background-image: url(/wp-content/themes/qavs/images/prev-black.svg);
}

.post-navigation .nav-links .nav-next a:before {
  content: " ";
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0.25em;
  left: 0;
  background-image: url(/wp-content/themes/qavs/images/next.svg);
  background-repeat: no-repeat;
  background-size: 1em auto;
  background-position: center;
}

.post-navigation .nav-links .nav-next a:hover:before,
.post-navigation .nav-links .nav-next a:focus:before,
.post-navigation .nav-links .nav-next a:active:before {
  background-image: url(/wp-content/themes/qavs/images/next-black.svg);
}

@media (min-width: 768px) {
  .post-navigation .nav-links {
    align-items: flex-start;
  }

  .post-navigation .nav-links:after {
    content: "";
    display: table;
    zoom: 1;
    clear: both;
  }

  .post-navigation .nav-links .nav-previous {
    float: left;
  }

  .post-navigation .nav-links .nav-previous a {
    margin-top: 0 !important;
  }

  .post-navigation .nav-links .nav-next {
    float: right;
    margin-top: 0;
  }

  .post-navigation .nav-links .nav-next a {
    padding-left: 0;
    padding-right: 1.5em;
  }

  .post-navigation .nav-links .nav-next a:before {
    right: 0;
    left: auto;
  }
}

.parental-navigation {
  margin: 3.5em 0 1em;
}

.parental-navigation a {
  display: inline-block;
  max-width: 15em;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  color: #136C85 !important;
  padding-left: 1.5em;
}

.parental-navigation a:before {
  content: " ";
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0.25em;
  left: 0;
  background-image: url(/wp-content/themes/qavs/images/next.svg);
  background-repeat: no-repeat;
  background-size: 1em auto;
  background-position: center;
  transform-origin: 50% 50%;
}

.parental-navigation a:focus,
.parental-navigation a:hover,
.parental-navigation a:active {
  color: #0b0c0c !important;
}

.parental-navigation a:hover:before,
.parental-navigation a:focus:before,
.parental-navigation a:active:before {
  background-image: url(/wp-content/themes/qavs/images/next-black.svg);
}

.parental-navigation a .nav-subtitle {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.833rem;
}

.parental-navigation a .nav-title {
  display: block;
  text-decoration: underline;
  font-weight: normal;
  font-size: 0.917rem;
}

.parental-navigation a:focus .nav-title,
.parental-navigation a:active .nav-title {
  text-decoration: none;
}

.back-link {
  position: relative;
  display: inline-block;
  margin: -1rem 0 2.5rem;
  padding-left: 1rem;
  text-decoration: underline;
  font-size: 0.917rem;
}

.back-link:focus,
.back-link:active {
  background: #E1ABED;
  box-shadow: 0 -2px #E1ABED, 0 4px #0b0c0c;
  color: #0b0c0c;
  text-decoration: none;
}

.back-link:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0.4em;
  left: 0;
  height: 0.8em;
  width: 0.8em;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(-45deg);
}

.news-single-page {
  padding: 2rem 0;
}

.article__title {
  font-size: 1.625rem;
  margin: 1em 0 0;
  width: 33.333rem;
  max-width: 100%;
}

.article__meta {
  font-size: 1rem;
  color: #4c4c4c;
  font-weight: 400;
  margin-bottom: 1em;
}

.article__image {
  width: 100%;
  height: auto;
  max-height: 509px;
  object-fit: cover;
  object-position: center;
}

.article__body {
  width: 33.333em;
  max-width: 100%;
  margin-top: 2rem;
}

.article__body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
}

.article__body blockquote {
  margin: 0;
  border-left: 10px solid #a5a5a5;
  padding-left: 1.5rem;
}

.article__body ol,
.article__body ul {
  margin: 1rem 0 1.5rem;
  padding: 0 0 0 1rem;
}

.wp-block-gallery {
  margin: 2.5em 0 0;
}


h1 {
  color: #8A0DA6;
  font-size: 2.667em;
  line-height: 1.2;
  font-weight: 400 !important;
  position: relative;
  top: -0.7rem !important;
  margin-bottom: 0.7rem !important;
}

p.has-medium-font-size {
  font-size: 1.250em !important;
  font-weight: 400 !important;
}

.wp-block-column h2 {
  font-size: 1.625em;
}

.purple-border-left {
  border-left: 8px solid #8A0DA6;
  padding-left: 2rem;
}

.green-border-left {
  border-left: 8px solid #47A14E;
  padding-left: 2rem;
}

.green-border-right {
  border-right: 8px solid #47A14E;
  padding-right: 2rem;
}

.purple-border-right {
  border-right: 8px solid #8A0DA6;
  padding-right: 2rem;
}

.learn-to-nominate {
  text-align: left;
}

.learn-to-nominate p {
  width: 570px !important;
  margin: 0 !important;
  text-align: left !important;
}

.gray-block {
  background: #F7F7F7 !important;
}

.wp-block-separator {
  background: #f7f7f7 !important;
  height: 15px !important;
  margin: 0 !important;
  border: none !important;
}

.featured-awardees-text {
  width: 800px;
  max-width: 100%;
  margin-bottom: 2rem;
}

@media (min-width: 801px) {
  .featured-awardees-wrapper .button--inverse{
    position: absolute;
    top: 5px;
    right: 0;
  }
}

.featured-awardees-wrapper h2 {
  margin-bottom: 0.45rem;
}

.featured-news-wrapper h2 {
  margin-bottom: 0.25rem;
}

@media (min-width: 801px) {
  .featured-news-wrapper .button--inverse{
    position: absolute;
    top: -0.625rem;
    right: 0;
  }
}

@media (max-width: 800px) {
  .featured-news-wrapper .button--inverse {
    margin-top: 1.5rem;
    display: inline-block;
  }

  .featured-awardees {
    margin-bottom: 2rem;
    margin-top: 1rem;
  }

  .featured-awardees-wrapper .button--inverse {
    display: inline-block;
    margin-top: 1.5rem;
  }
}

@media (max-width: 600px) {
  .featured-awardees-wrapper .button--inverse,
  .featured-news-wrapper .button--inverse {
    display: block;
    text-align: center;
  }
}

.featured-awardee {
  display: flex;
  margin-bottom: 4rem;
}

.featured-awardee:last-of-type {
  margin-bottom: 0;
}

.featured-awardee img {
  width: 50%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 800px) {
  .featured-awardee img {
    width: 100%;
  }
}

.featured-awardee__cta {
  display: inline;
  align-self: baseline;
}

.featured-awardee__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-awardee:nth-child(1),
.featured-awardee:nth-child(3) {
  border-right: 8px solid #47A14E;
}

.featured-awardee:nth-child(2) {
  border-left: 8px solid #8A0DA6;
  flex-direction: row-reverse;
}

@media (min-width: 801px) {
  .featured-awardee:nth-child(1) .featured-awardee__details,
  .featured-awardee:nth-child(3) .featured-awardee__details {
    padding: 0 2rem;
  }

  .featured-awardee:nth-child(2) .featured-awardee__details {
    padding: 0 2rem;
  }

  .featured-awardee:nth-child(2) {
    padding: 0 2rem;
  }
}

@media (max-width: 800px) {
  .featured-awardee__details {
    margin-top: 1rem;
  }

  .featured-awardee:nth-child(1) .featured-awardee__details,
  .featured-awardee:nth-child(3) .featured-awardee__details {
    padding: 0 1.25rem;
  }

  .featured-awardee:nth-child(2) .featured-awardee__details {
    padding: 0 1.25rem;
  }
}

@media (max-width: 800px) {
  .featured-awardee {
    flex-direction: column !important;
  }
}

.featured-awardee__title {
  margin-bottom: 0.2rem !important;
}

.featured-awardee__meta {
  color: #595959;
  margin: -0.5rem 0 1.25rem;
  font-weight: 400;
}

.featured-awardee__escerpt {
  margin-bottom: 1.5rem;
}

.page-tabs {
  margin: 0 !important;
  padding: 0 !important;
  list-style-type: none;
  margin-bottom: -3.8rem !important;
  width: 38rem !important;
}

.page-tabs li {
  display: inline-block;
  margin-right: 10px;
}

@media (max-width: 800px) {
  .page-tabs li {
    display: block;
  }
}

.page-tabs a {
  text-decoration: none;
  display: inline-block;
  padding: 10px 0 !important;
  font-weight: 400;
  border-bottom: 3px solid transparent;
}

.page-tabs li:not(.active) a:hover {
  border-bottom: 3px solid currentColor;
}

.page-tabs li.active a {
  border-bottom: 3px solid #136C85;
  color: #1f1f1f !important;
}

.wp-block-columns .wp-block-image {
  margin: 1rem  0 0;
}

.page-tabs li {
  margin-right: 3rem !important;
}

.section .wp-block-columns {
  margin-bottom: 0 !important;
}

.wp-block-button__link {
  background: #8A0DA6 !important;
  color: white;
  font-weight: 500;
  border-radius: 0;
  font-size: 1rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  border: 2px solid #8A0DA6 !important;
  font-weight: 500;
}

.wp-block-button__link:hover,
.is-style-outline .wp-block-button__link:hover,
.wp-block-button__link:focus,
.is-style-outline .wp-block-button__link:focus  {
  text-decoration: none;
}

.wp-block-button__link:hover {
  color: #8A0DA6 !important;
  background: transparent !important;
}


.is-style-outline .wp-block-button__link {
  background: transparent !important;
  color: #8A0DA6 !important;
  border: 2px solid #8A0DA6 !important;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  font-weight: 500;
}

.is-style-outline .wp-block-button__link:hover {
  background: #8A0DA6 !important;
  color: white !important;
}

.wp-block-button__link:focus,
.wp-block-button__link:active,
.is-style-outline .wp-block-button__link:focus,
.is-style-outline .wp-block-button__link:active {
  outline: 0;
  background: #E1ABED !important;
  box-shadow: 0 3px #0b0c0c !important;
  border-color: #E1ABED !important;
  color: #0b0c0c !important;
}

.wp-block-pb-accordion-item {
  border-top: 1px solid #8A0DA6;
  border-bottom: 1px solid #8A0DA6;
  margin: 1rem 0;
  width: 800px;
  max-width: 100%;
}

.wp-block-pb-accordion-item.is-open {
  padding-bottom: 1rem;
}

.c-accordion__title {
  margin: 1rem 0 !important;
  padding-right: 2.5rem !important;
}

.c-accordion__title--button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-weight: 400 !important;
  font-size: 1rem !important;
}

.c-accordion__content {
  padding-left: 1.5rem;
}

.c-accordion__title:after {
  content: '' !important;
  background-image: url(/wp-content/themes/qavs/images/read.svg);
  background-repeat: no-repeat;
  width: 31px;
  height: 32px;
  background-size: 100% auto;
  right: 3px !important;
}

.c-accordion__title[aria-expanded="true"]:after {
  transform: translateY(-50%) rotate(180deg);
  transform-origin: 50% 50%;
}

.c-accordion__title:focus {
  outline: 0;
  background: #E1ABED !important;
  box-shadow: 0 3px #0b0c0c !important;
  border-color: #E1ABED !important;
  color: #0b0c0c !important;
}

.c-accordion__title:focus:after {
  background-image: url(/wp-content/themes/qavs/images/read-black.svg);
}

.section ol,
.section ul {
  margin-left: 0;
  padding: 0 1rem;
}

.section ol li,
.section ul li {
  margin-bottom: 0.5rem;
}

.section ol ol,
.section ol ul,
.section ul ol,
.section ul ul {
  padding-left: 1.5rem
}

.section a {
  word-break: break-all;
}

.border-top-bottom {
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
}


.promoted-article {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 4rem;
  background: #f7f7f7;
  border-left: 10px solid #8A0DA6;
  padding: 2rem 0;
  align-items: center;
}

.promoted-article img {
  max-width: 50%;
  width: 580px;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  object-position: center;
}
.promoted-article__details {
  padding: 1rem 2rem;
}

.promoted-article__title {
  margin-bottom: 0.2rem !important;
}

.promoted-article__meta {
  margin-bottom: 2rem;
  font-weight: 400;
  color: #595959;
}

@media (max-width: 992px) {
  .promoted-article {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem !important;
  }

  .promoted-article img {
    max-width: 100%;
  }

  .promoted-article__details {
    padding: 1rem 0 0;
    align-self: flex-start;
  }
}


a.arrow-link,
p.arrow-link a {
  display: inline-block;
  text-decoration: none;
  font-weight: 400;
  align-self: baseline;
}

a.arrow-link:hover,
p.arrow-link a:hover {
  text-decoration: underline;
}

a.arrow-link:focus,
p.arrow-link a:focus {
  color: #0b0c0c !important;
  text-decoration: none;
}

a.arrow-link:after,
p.arrow-link a:after {
  content: " ";
  margin-left: 10px;
  display: inline-block;
  width: 32px;
  height: 16px;
  background-image: url(/wp-content/themes/qavs/images/next.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
}

a.arrow-link:focus:after,
a.arrow-link:active:after,
p.arrow-link a:focus:after,
p.arrow-link a:active:after {
  background-image: url(/wp-content/themes/qavs/images/next-black.svg);
  text-decoration: none !important;
}

.border-top-bottom h3 {
  margin-top: 0.2rem !important;
  margin-bottom: 0.2rem !important;
}

.news-categories a:focus,
.news-categories a:hover {
  color: white !important;
  background: #8A0DA6 !important;
}

.hidden {
  display: none !important;
}

.cookie-banner {
  background: #f7f7f7;
  padding: 2rem 0;
}

.cookie-banner h2 {
  font-size: 1.458rem;
  margin: 0 0 1rem;
}

.cookie-banner p {
  width: 900px;
  max-width: 100%;
  font-size: 0.917rem !important;
  margin: 0;
}

.cookie-banner__buttons {
  margin-top: 1.5rem;
}

.cookie-banner__buttons .button:focus,
.cookie-banner__buttons .button:active {
  outline: 0 !important;
}

@media (min-width: 1025px) {
  .cookie-banner__buttons .button {
    font-size: 0.917rem !important;
  }
}

.accept-additional-cookies {
  margin-right: 0.5rem;
}

.cookie-banner__buttons a {
  margin-left: 1rem;
  font-size: 0.917rem;
}

@media (max-width:768px) {
  .cookie-banner__buttons .button{
    display: block;
    margin-bottom: 1.5rem;
  }

  .cookie-banner__buttons a {
    margin-left: 0;
  }
}

.radio-button {
  position: relative;
  margin-bottom: 0.5rem;
}

.radio-button input {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.radio-button input + label {
  position: relative;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 45px;
  display: inline-block;
}

.radio-button input + label:before {
  content: "";
  border: 1px solid #136C85;
  border-radius: 100%;
  width: 34px;
  height: 34px;
  display: block;
  position: absolute;
  left: 0;
  top: calc(0.25rem - 1px);
}

.radio-button input:checked + label:after {
  content: "";
  background: #136C85;
  border: 1px solid #136C85;
  border-radius: 100%;
  width: 18px;
  height: 18px;
  display: block;
  position: absolute;
  top: calc(0.25rem + 7px);
  left: 8px;
}

.radio-button input:focus + label:after {
  content: "";
  background: #0b0c0c;
  border: 1px solid #0b0c0c;
  border-radius: 100%;
  width: 18px;
  height: 18px;
  display: block;
  position: absolute;
  top: calc(0.25rem + 7px);
  left: 8px;
}

.radio-button input:focus + label {
  background: #E1ABED;
  font-weight: 600;
}

.radio-button input:focus + label:before{
  border: 3px solid #0b0c0c;
}

.cookies-link-qavs a {
  text-decoration: none;
}

.ab-button {
  line-height: 1.5 !important;
}

.ab-button:focus,
.ab-button:hover {
  text-decoration: none !important;
}


.ab-button-shape-rounded {
  border-radius: 0% !important;
}

.save-cookie-message {
  margin: 1rem 0;
  border: 2px solid #8A0DA6;
  color: #1f1f1f;
  padding: 0.5rem 1rem;
  font-weight: 400;
  font-size: 0.917rem;
}

.chair-video {
  position: relative;
}

.chair-video button {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-repeat: no-repeat;
  background-image: url(/wp-content/themes/qavs/images/icon_play.svg);
  background-color: transparent;
  border: none;
  width: 73px;
  height: 73px;
  display: block;
  text-indent: -200px !important;
  overflow: hidden !important;
  top: calc(50% - 37px);
  left: calc(50% - 37px);
}

.chair-video button:focus,
.chair-video button:active {
  outline: 0;
}

.section.hero-section {
  padding: 1rem 0 0 !important;
}

@media (max-width: 599px) {
  .section .wp-block-columns.hero {
    margin: 1.75rem 0 -1.5rem !important;
  }
}

.hero p {
  font-weight: 400 !important;
  margin-bottom: 2rem;
}

@media (min-width: 782px) {
  .hero p {
    margin-bottom: 0;
  }
}

@media(max-width: 380px) {
  .site-branding {
    margin-right: 0;
    width: 190px;
  }
}

.news-social-links p{
  width: auto;
}

@media(max-width:992px) {
  .news-social-links {
    display: none;
  }
}


.wp-block-column.center-aligned {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#primary:focus {
  outline: 0 !important;
}

.ab-block-cta .ab-button {
  line-height: 1.5 !important;
}

.ab-block-cta .ab-cta-text p {
  width: 750px !important;
}

.phase-banner {
  padding-top: 1rem;
  color: #333333;
  border-bottom: 1px solid #a5a5a5;
}

.phase-banner p {
  font-size: 0.917rem;
  padding-bottom: 1rem;
  position: relative;
  padding-left: 4rem;
}

.phase-banner span {
  background-color: #136C85;
  color: white;
  padding: 0.1rem 0.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-right: 0.5rem;
  position: absolute;
  top: 0.05rem;
  left: 0;
}

.hero h1 {
  color: #1F1F1F !important;
}

.crown-logo {
  width: 305px !important;
  max-width: 100% !important;
  display: block;
  margin: 0 0 0 auto;
  flex-basis: 305px;
  align-self: flex-end;
}

.crown-logo figure {
  float: none !important;
  margin: 0 !important;
}

@media (max-width: 599px) {
  .crown-logo {
    display: none !important;
  }
}

.addtoany_list a:not(.addtoany_special_service)>span {
  border-radius: 100px !important;
  border: 1px solid currentColor;
  height: 42px !important;
  width: 42px !important;
  line-height: 42px !important;
}

.addtoany_list a:hover,
.widget .addtoany_list a:hover {
  color: #0b0c0c;
}

.addtoany_list a:hover path,
.widget .addtoany_list a:hover path {
  fill: #0b0c0c;
}


.addtoany_list a:not(.addtoany_special_service)>span svg {
  width: 32px !important;
  height: 32px !important;
  top: 4px !important;
  left: 0px !important;
}

.addtoany_list a:not(.addtoany_special_service):hover {
  color: #0b0c0c !important;
}

.addtoany_list a:not(.addtoany_special_service):focus {
  box-shadow: 0 3px #0b0c0c !important;
}

.addtoany_list a:not(.addtoany_special_service):focus>span svg path {
  fill: currentColor;
}

.pagination {
  list-style-type: none;
  margin-left: 0;
  margin: -2rem 0 2rem !important;
  padding: 0 !important;
}

.past-awardees-pagination .pagination {
  margin: 0 !important;
}

.pagination li {
  display: inline-block;
  padding-right: 1rem;
}

.pagination a {
  text-decoration: none;
  color: #136C85;
}

.page-numbers.current {
  color: #717171 !important;
}

.next.page-numbers {
  position: relative;
}

.prev.page-numbers {
  position: relative;
}

.prev.page-numbers:focus,
.next.page-numbers:focus,
.page-numbers:focus,
.prev.page-numbers:active,
.next.page-numbers:active,
.page-numbers:active {
  color: #1F1F1F;
}

.next.page-numbers:after {
  content: "";
  display: inline-block;
  margin-left: 0.2rem;
  position: relative;
  top: 0;
  background-image: url(/wp-content/themes/qavs/images/next.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 1.333em;
  height: 0.667em;
  background-position: center;
}

.prev.page-numbers:before {
  content: "";
  display: inline-block;
  margin-right: 0.2rem;
  position: relative;
  top: 0;
  background-image: url(/wp-content/themes/qavs/images/prev.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 1.333em;
  height: 0.667em;
  background-position: center;
}

.next.page-numbers:focus:after,
.next.page-numbers:active:after {
  background-image: url(/wp-content/themes/qavs/images/next-black.svg);
}

.prev.page-numbers:focus:before,
.prev.page-numbers:active:before {
  background-image: url(/wp-content/themes/qavs/images/prev-black.svg);
}

.site-footer__copyright a {
  text-decoration: none;
  display: inline-block;
  color: #1F1F1F;
}

.site-footer__copyright span {
  display: block;
  text-align: center;
}

.form-group {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.form-group legend {
  border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
  word-wrap: normal !important;
}

@media (max-width: 992px) {
  .desktop-only {
    display: none;
  }
}

@media (min-width: 993px) {
  .mobile-only {
    display: none;
  }
}

.article__sharing {
  border-bottom: 1px solid #a5a5a5;
  border-top: 1px solid #a5a5a5;
  padding: 0.75rem 0;
}

.article__sharing p {
  margin-bottom: 0.5rem;
}

.addtoany_shortcode {
  margin-left: -5px;
}

.crown-hero {
  margin: 0 !important;
  text-align: right !important;
}

.section.border-bottom {
  border-bottom: 1px solid #a5a5a5;
}

.sharing-buttons a {
  display: inline-block;
  margin-right: 1.25rem;
}

.sharing-buttons a svg {
  display: inline-block;
  height: 1.6rem;
  width: 1.6rem;
  margin-right: 0.3rem;
  vertical-align: text-bottom;
  margin-bottom: -0.1rem;
}

.sharing-buttons a svg path {
  fill: currentColor !important;
}

.sharing-buttons a svg circle,
.sharing-buttons a svg ellipse {
  stroke: currentColor !important;
}

.px-video-img-captions-container video {
  width: 100%;
}

.px-video-container.square-ratio .px-video-img-captions-container {
  padding-bottom: 100% !important;
}

.px-video-controls input[type='range'] {
  position: relative;
  top: -6px;
  margin: 0 !important;
}

.home-animation-video {
  max-width: 100%;
  width: 640px;
}

.control-home-animation {
  appearance: none;
  border: none;
  background: transparent;
  color: #136C85;
  display: inline-block;
  align-self: flex-start;
  padding: 0.25rem 0;
  margin-top: 1rem;
}

.control-home-animation svg {
  display: inline-block;
  height: 1.25rem;
  width: auto;
  margin-right: 0.2rem;
  vertical-align: text-bottom;
}

.control-home-animation svg path {
  fill: currentColor;
}

.control-home-animation:hover {
  color: #082B35;
  text-decoration: underline;
}

.control-home-animation:focus,
.control-home-animation:active {
  outline: none;
  background: #E1ABED;
  box-shadow: 0 4px #0b0c0c;
  color: #0b0c0c;
  text-decoration: none;
  outline: 0;
}

.control-home-animation.paused .playing {
  display: none;
}

.control-home-animation.playing  .paused{
  display: none;
}

.transcript__summary {
  color: #136C85;
  display: inline-block;
  position: relative;
  padding-right: 1.5rem;
}

.transcript__summary::-webkit-details-marker {
  display:none;
}

.transcript__summary:hover {
  color: #082B35;
}

.transcript__summary:focus,
.transcript__summary:active {
  outline: none;
  background: #E1ABED;
  box-shadow: 0 4px #0b0c0c;
  color: #0b0c0c;
  text-decoration: none;
  outline: 0;
}

.transcript__summary svg {
  position: absolute;
  top: 0.25rem;
  right: 0;
  width: 1.15rem;
  height: 1.15rem;
}

.transcript__summary svg circle {
  stroke: currentColor;
}

.transcript__summary svg path {
  stroke: currentColor;
}

.transcript[open] .transcript__summary svg {
  transform-origin: 50% 50%;
  transform: rotate(180deg);
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

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

.past-awardees-filter form {
  margin-bottom: 0;
}

.past-awardees-filter form .top-row {
  width: 38%;
  max-width: 390px;
  margin-bottom: 0.75rem;
}

.past-awardees-filter form .bottom-row {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}


.past-awardees-filter form .top-row .form-group {
  margin-right: 0 !important;
  margin-bottom: 0 !important;
}

.past-awardees-filter .form-group {
  margin-right: 1rem !important;
  margin-bottom: 0.75rem !important;
  color: #333333;
}

.past-awardees-filter .bottom-row .form-group:nth-child(1) {
  width: 14%;
  min-width: 150px;
}

.past-awardees-filter .bottom-row .form-group:nth-child(2) {
  width: 38%;
  min-width: 250px;
}

.past-awardees-filter .bottom-row .form-group:nth-child(3) {
  width: 38%;
  min-width: 250px;
}

@media (max-width: 767px) {
  .past-awardees-filter form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .past-awardees-filter .filter-button {
    margin-top: 0.35rem !important;
  }

  .past-awardees-filter form .top-row {
    width: 100%;
    max-width: 100%;
  }

  .past-awardees-filter form .bottom-row {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
  }

  .past-awardees-filter .bottom-row .form-group:nth-child(2) {
    width: 100%;
  }

  .past-awardees-filter .bottom-row .form-group:nth-child(3) {
    width: 100%;
  }
}

.past-awardees-filter .form-group select {
  background-color: white;
  border-color: #919191;
  padding: 0.2rem 0.5rem;
  text-align: left;
  width: 100%;
  color: #1F1F1F !important;
}

.past-awardees-filter .form-group select:focus {
  border: 1px solid #8A0DA6;
  outline: 2px solid #8A0DA6;
}

.past-awardees-filter .form-group input {
  background-color: white;
  border-color: #919191;
  padding: 0.2rem 0.5rem;
  text-align: left;
  width: 100%;
  color: #1F1F1F !important;
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
  border-radius: 0;
}

.past-awardees-filter .form-group input:focus {
  border: 1px solid #8A0DA6;
  outline: 2px solid #8A0DA6;
}

.past-awardees-filter .form-group label {
  margin-bottom: 0.1rem;
}

.past-awardees-filter .form-group label {
  display: block;
}

#past-awardees-filter-title {
  margin-bottom: 0.5rem;
}

.past-awardees-filter .filter-button {
  margin-right: 1rem;
  padding: 0.15rem 1rem !important;
  margin-bottom: 0.75rem;
}

.past-awardees-filter a {
  display: inline-block;
  margin-bottom: 0.9rem;
}

.past-awardees-filter .search_buttons {
  display: flex;
  align-items: center;
}

.past-awardees-pagination-info {
  margin: 0 0 1rem;
  font-size: 0.917rem;
}

.past-awardees {
  margin: 2rem 0;
  list-style-type: none;
  padding: 0 !important;
  width: 100% !important;
}

.past-awardee {
  padding-right: 2rem;
  margin: 1rem 0 3.5rem !important;
  border-right: 10px solid #8A0DA6;
  display: block;
}

.past-awardee .arrow-link {
  margin-top: 1.25rem;
}

.past-awardee:nth-child(odd) {
  border-right-color: #47A14E;
}

.past-awardee * {
  max-width: 750px;
}

.past-awardee__title {
  margin-bottom: 1rem;
}

.past-awardee__details {
  margin-bottom: 1.5rem;
}

.past-awardee__detail {
  margin-bottom: 0.5rem;
  font-size: 0.917rem;
}

.past-awardee__citation {
  margin-bottom: 0;
  font-size: 0.917rem;
}

figcaption {
  font-size: 0.792rem;
  font-weight: 400;
  font-style: normal;
}

.article-featured-image figcaption {
  margin: 0 0 20px;
}

.article__body figure.wp-block-image {
  display: table;
}

.article__body figure.wp-block-image figcaption {
  display: table-caption;
  caption-side: top;
  margin: 10px 0 -20px;
}
