@charset "UTF-8";
/*!
Theme Name: Headshot Company
Theme URI: http://underscores.me/
Author: Chimera Studio
Author URI: https://chimera-studio.com
Description: Bespoke Theme
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: headshot-company
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.

Headshot Company 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

--------------------------------------------------------------*/
/* usage
.my-box {
  padding: 10px;

  @include for-desktop-up {
    padding: 20px;
  }
}
*/
:root {
  --grid-width: 1170;
  --grid-column-width: 70;
  --grid-columns: 12;
  --grid-gutters: calc(var(--grid-columns) - 1);
  --column-proportion: calc(var(--grid-column-width) / var(--grid-width));
  --gutter-proportion: calc((1 - (var(--grid-columns) * var(--column-proportion))) / var(--grid-gutters));
  --column-unit: calc(var(--column-proportion) * var(--container-width));
  --gutter-unit: calc(var(--gutter-proportion) * var(--container-width));
  --column-and-gutter-unit: calc(var(--column-unit) + var(--gutter-unit));
  --container-width: 1170px;
}

@media (max-width: 1300px) {
  :root {
    --container-width: 90vw;
  }
}
/* 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.15;
  -webkit-text-size-adjust: 100%;
}

/* 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 {
  font-size: 1rem;
}

body {
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  margin-top: 0;
}

h2 {
  font-size: 3rem;
  margin: 0.5em 0;
}
@media (max-width: 899px) {
  h2 {
    font-size: 2.5rem;
    padding: 0 1em;
  }
}

h3 {
  font-size: 2rem;
}

.headshot-tagline {
  font-size: 2em;
  margin: 1em 0;
}
@media (max-width: 899px) {
  .headshot-tagline {
    margin: 0.5em 0;
    padding: 0 1em;
    font-size: 1.75em;
  }
}

.wprev_header_txt h4 {
  font-size: 2rem;
}

p {
  margin-bottom: 1em;
  line-height: 1.5em;
}

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

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #f9f9f9;
  font-family: "Roboto", sans-serif;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: "Roboto", sans-serif;
}

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

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

big {
  font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
  color: #707070;
}

hr {
  background-color: #9ea0a3;
  border: 0;
  height: 1px;
  margin-bottom: 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: #ff8f00;
  text-decoration: none;
}
a:visited {
  color: #ff8f00;
}
a:hover, a:focus, a:active {
  color: #ff8f00;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid #9ea0a3;
  font-weight: bold;
  border-radius: 2em;
  background: #ff8f00;
  color: #ffffff;
  line-height: 1;
  padding: 0.5em 1em;
  cursor: pointer;
}

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 {
  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: #707070;
}

select {
  border: 1px solid #707070;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Header
--------------------------------------------- */
.top-bar {
  flex-basis: 100%;
  background-color: #9ea0a3;
  padding: 0.5em 2.5em;
}
.top-bar li, .top-bar a {
  color: #ffffff;
}
.top-bar .container {
  display: flex;
  justify-content: flex-end;
}
.top-bar .container a {
  color: #ffffff;
}
.top-bar .container .contact-links ul li {
  margin-left: 2em;
}
.top-bar .container .contact-links ul li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 0.5em;
}
.top-bar .container .contact-links ul li:nth-of-type(1)::before {
  content: "";
}
.top-bar .container .contact-links ul li:nth-of-type(2)::before {
  content: "";
}
@media (max-width: 899px) {
  .top-bar {
    padding: 0;
  }
  .top-bar .container .contact-links {
    width: 100%;
  }
  .top-bar .container .contact-links ul {
    justify-content: space-between;
    padding: 0.5em 1em;
  }
  .top-bar .container .contact-links ul li {
    margin-left: 0;
  }
}

header.site-header {
  border-bottom: 1px solid #9ea0a3;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
header.site-header ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

/* Navigation
--------------------------------------------- */
.site-branding {
  flex-basis: calc(4 * var(--column-and-gutter-unit) - var(--gutter-unit));
  margin-right: calc(1 * var(--gutter-unit));
  padding: 0.75em 0 0.5em 2em;
  display: flex;
  align-items: center;
}
.site-branding:last-of-type {
  margin-right: 0;
}

nav.main-navigation {
  display: flex;
  padding-right: 2em;
}
nav.main-navigation ul.menu li {
  display: flex;
  align-items: center;
  margin-right: 1em;
}
nav.main-navigation ul.menu li:last-of-type {
  margin-right: 0;
}
nav.main-navigation ul.menu li:last-of-type a {
  border: 1px solid #9ea0a3;
  border-radius: 2em;
  background: #ff8f00;
  color: #ffffff;
  line-height: 1;
  cursor: pointer;
}
nav.main-navigation ul.menu li a {
  display: block;
  padding: 0.25em 0.5em;
  font-size: 1.5em;
  color: #9ea0a3;
}

@media (max-width: 1199px) {
  nav.main-navigation ul.menu li {
    margin-right: 0.5em;
  }
  nav.main-navigation ul.menu li:last-of-type {
    margin-right: 0;
  }
  nav.main-navigation ul.menu li:last-of-type a {
    background-color: transparent;
    color: #9ea0a3;
    border: none;
  }
  nav.main-navigation ul.menu li a {
    font-size: 1.25em;
  }
}
@media (max-width: 899px) {
  .site-branding {
    padding: 0.75em 0 0.5em 1em;
    flex-basis: calc(8 * var(--column-and-gutter-unit) - var(--gutter-unit));
  }

  nav.main-navigation {
    flex-basis: 100%;
    padding-right: 0;
  }
  nav.main-navigation .menu-main-navigation-container {
    width: 100%;
  }
  nav.main-navigation .menu-main-navigation-container ul.menu {
    flex-direction: column;
  }
  nav.main-navigation .menu-main-navigation-container ul.menu li {
    margin-right: 0;
    width: 100%;
  }
  nav.main-navigation .menu-main-navigation-container ul.menu li a {
    width: 100%;
    text-align: center;
    padding: 0.5em 0;
  }
}
.menu-toggle {
  display: none;
  outline: none;
  color: #9ea0a3;
  cursor: pointer;
}
@media (max-width: 899px) {
  .menu-toggle {
    display: block;
    border: none;
    position: absolute;
    background: none;
    top: 50px;
    right: 1em;
    font-family: "Roboto", sans-serif;
    padding: 0;
  }
  .menu-toggle:after {
    margin-left: 0.5em;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "";
  }
}

@media (max-width: 899px) {
  ul.menu a {
    pointer-events: none;
    font-weight: bold;
    opacity: 0;
    display: block;
    transform: translateY(-10px);
    transition: 0.1s 0.25s ease-out opacity, 0.2s 0.15s ease-out transform;
  }

  ul.menu li:nth-child(2) a {
    transition: 0.1s 0.3s ease-out opacity, 0.1s 0.3s ease-out transform;
  }

  ul.menu li:nth-child(3) a {
    transition: 0.1s 0.35s ease-out opacity, 0.1s 0.35s ease-out transform;
  }

  ul.menu li:nth-child(4) a {
    transition: 0.1s 0.4s ease-out opacity, 0.1s 0.4s ease-out transform;
  }

  ul.menu li:nth-child(5) a {
    transition: 0.1s 0.45s ease-out opacity, 0.1s 0.45s ease-out transform;
  }

  ul.menu.show {
    pointer-events: all;
  }

  ul.menu.show a {
    pointer-events: all;
    opacity: 1;
    transform: translateY(0);
  }

  ul.menu.show {
    max-height: 100vh;
    transition: max-height 2s ease-out;
  }

  ul.menu:not(.show) {
    max-height: 0;
    transition: max-height 2s ease-out;
  }
}
/* Posts and pages
--------------------------------------------- */
.sticky {
  display: block;
}

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

.page-links {
  clear: both;
}

/* 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-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;
}

.foogallery.col-12 {
  margin-bottom: 4rem;
}

/* Columns
--------------------------------------------- */
.wp-block-columns {
  width: 90vw;
  margin: 0 auto 4rem;
}
.wp-block-columns .wp-block-column .wp-block-image {
  display: flex;
  align-items: center;
}
.wp-block-columns .wp-block-column figure {
  margin-top: 0;
}
.wp-block-columns .wp-block-column h3 {
  margin-top: 0;
  margin-bottom: 0.5em;
}

.col-12 {
  width: var(--container-width);
  margin: 0 auto;
}

.book-shoot-choose {
  padding-top: 4rem;
}
@media (max-width: 899px) {
  .book-shoot-choose {
    padding-top: 1rem;
  }
  .book-shoot-choose .wp-block-column .wp-block-image figure {
    width: 30%;
  }
}

.contact-details {
  margin-bottom: 4rem;
}
.contact-details p:not(:first-of-type) {
  margin: 0;
}

/* Forms
--------------------------------------------- */
/*
*******************************************************************
Style the Contact Form
*******************************************************************
*/
#gform_wrapper_1 {
  margin-top: 0;
}
#gform_wrapper_1 .gform_heading h3 {
  font-size: 3em;
}
#gform_wrapper_1 .gform_body .gform_fields {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#gform_wrapper_1 .gform_body .gform_fields li {
  padding: 0;
}
#gform_wrapper_1 .gform_body .gform_fields .gfield {
  flex-basis: 100%;
}
#gform_wrapper_1 .gform_body .gform_fields .gfield input[type=text],
#gform_wrapper_1 .gform_body .gform_fields .gfield textarea {
  padding: 1em;
  border-radius: 8px;
  border: 1px solid #9ea0a3;
  color: #9ea0a3;
}
#gform_wrapper_1 .gform_body .gform_fields .gfield input[type=text]:focus,
#gform_wrapper_1 .gform_body .gform_fields .gfield textarea:focus {
  outline: 0;
  box-shadow: 0px 0px 3px 1px #ff8f00;
}
#gform_wrapper_1 .gform_body .gform_fields .gfield.third {
  flex-basis: 30%;
}
#gform_wrapper_1 .gform_body .gform_fields .gfield.third label {
  display: block;
  text-align: center;
}
#gform_wrapper_1 .gform_body .gform_fields .gfield.third .clear-multi {
  display: flex;
  justify-content: space-around;
}

/*
*******************************************************************
Acuity Style
*******************************************************************
*/
iframe {
  border: 1px solid #9ea0a3;
  background-color: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 4rem;
}

/* Maps
--------------------------------------------- */
.wpgmza_map {
  border-top: 1px solid #9ea0a3 !important;
}

/* CTA
--------------------------------------------- */
.cta-booking,
.cta-groups,
.cta-5-star {
  background-color: #f9f9f9;
  padding: 2em;
}
.cta-booking h3,
.cta-groups h3,
.cta-5-star h3 {
  font-size: 4rem;
  margin: 0;
}
.cta-booking .book-now-link,
.cta-groups .book-now-link,
.cta-5-star .book-now-link {
  font-size: 1.5em;
  margin-top: 1em;
  font-weight: bold;
}
.cta-booking .book-now-link a.wp-block-button__link.no-border-radius,
.cta-groups .book-now-link a.wp-block-button__link.no-border-radius,
.cta-5-star .book-now-link a.wp-block-button__link.no-border-radius {
  border: 1px solid #9ea0a3;
  padding: 0.5em 1em;
  background-color: #ff8f00;
  border-radius: 2em !important;
}
@media (max-width: 899px) {
  .cta-booking,
.cta-groups,
.cta-5-star {
    padding: 1em;
  }
  .cta-booking h3,
.cta-groups h3,
.cta-5-star h3 {
    font-size: 2.5em;
  }
  .cta-booking .book-now-link,
.cta-groups .book-now-link,
.cta-5-star .book-now-link {
    margin-top: 0;
  }
  .cta-booking .book-now-link a,
.cta-groups .book-now-link a,
.cta-5-star .book-now-link a {
    padding: 0.25em 0.5em;
  }
}

.cta-focus {
  background-color: #363636;
  color: #ffffff;
  padding: 2em 0;
}
.cta-focus h2 {
  font-size: 4rem;
  margin-top: 0;
}
.cta-focus p {
  margin-bottom: 0;
  font-size: 3em;
  width: calc(10 * var(--column-and-gutter-unit) - var(--gutter-unit));
  display: block;
  margin: 0.5em auto 0;
}
@media (max-width: 899px) {
  .cta-focus {
    padding: 1em;
  }
  .cta-focus h2 {
    font-size: 3rem;
  }
  .cta-focus p {
    font-size: 2em;
  }
}

.cta-booking {
  margin-bottom: 6rem;
}
@media (max-width: 899px) {
  .cta-booking {
    margin-bottom: 3rem;
  }
}

/* FAQ
--------------------------------------------- */
.accordion .accordion-item {
  border-bottom: 1px solid #9ea0a3;
}
.accordion .accordion-item button[aria-expanded=true] {
  border-bottom: 1px solid #ff8f00;
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #9ea0a3;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  border-radius: 0;
  background: none;
  outline: none;
  transition: color 0.5s;
}
.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: #ff8f00;
}
.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: #9ea0a3;
  border: 1px solid #ff8f00;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded=true] {
  color: #ff8f00;
}
.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
.accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 50em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}

/* Address
--------------------------------------------- */
.contact-details p::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  width: 1.5em;
  display: inline-block;
  color: #ff8f00;
}
.contact-details p:nth-of-type(2):before {
  content: "";
}
.contact-details p:nth-of-type(3):before {
  content: "";
}

/* Footer
--------------------------------------------- */
footer.site-footer .footer-columns {
  background-color: #f9f9f9;
  border-top: 1px solid #9ea0a3;
  border-bottom: 1px solid #9ea0a3;
  padding: 2em;
  display: flex;
  justify-content: space-between;
}
footer.site-footer .footer-columns .footer-column {
  flex-basis: calc(4 * var(--column-and-gutter-unit) - var(--gutter-unit));
  margin-right: calc(1 * var(--gutter-unit));
}
footer.site-footer .footer-columns .footer-column:last-of-type {
  margin-right: 0;
}
footer.site-footer .footer-columns .footer-column .social-follow {
  display: flex;
  justify-content: center;
  margin-top: 1em;
}
footer.site-footer .footer-columns .footer-column .social-follow a {
  display: block;
  transition: all 0.25s;
  font-size: 3em;
  margin-right: 0.5em;
  color: #9ea0a3;
}
footer.site-footer .footer-columns .footer-column .social-follow a:last-of-type {
  margin-right: 0;
}
footer.site-footer .footer-columns .footer-column .social-follow a:hover {
  color: #ff8f00;
}
footer.site-footer .footer-columns .footer-column .opening-times {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}
footer.site-footer .footer-columns .footer-column .opening-times h3 {
  margin-top: 0;
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  flex-basis: 100%;
  color: #707070;
}
footer.site-footer .footer-columns .footer-column .opening-times span,
footer.site-footer .footer-columns .footer-column .opening-times time {
  flex-basis: 50%;
  margin-bottom: 0.5em;
  color: #707070;
}
footer.site-footer .footer-columns .footer-column .opening-times time {
  text-align: right;
}
footer.site-footer .footer-columns .footer-column address {
  font-style: normal;
  margin-bottom: 1em;
  color: #707070;
}
footer.site-footer .footer-columns .footer-column ul.contact-methods {
  list-style: none;
  color: #707070;
  padding: 0;
  margin: 0;
}
footer.site-footer .footer-columns .footer-column ul.contact-methods li {
  margin-bottom: 0.5em;
}
footer.site-footer .footer-columns .footer-column ul.contact-methods li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  width: 1.5em;
  display: inline-block;
  color: #ff8f00;
}
footer.site-footer .footer-columns .footer-column ul.contact-methods li:nth-of-type(1):before {
  content: "";
}
footer.site-footer .footer-columns .footer-column ul.contact-methods li:nth-of-type(2):before {
  content: "";
}
footer.site-footer .footer-credits {
  display: flex;
  padding: 0 2em;
}
footer.site-footer .footer-credits p {
  flex-basis: 50%;
  margin-bottom: 0.5em;
}
footer.site-footer .footer-credits .credit {
  text-align: right;
}
@media (max-width: 899px) {
  footer.site-footer .footer-columns {
    flex-wrap: wrap;
  }
  footer.site-footer .footer-columns .footer-column {
    flex-basis: calc(12 * var(--column-and-gutter-unit) - var(--gutter-unit));
    margin-right: calc(1 * var(--gutter-unit));
    border-bottom: 1px solid #9ea0a3;
    padding-bottom: 2em;
    margin-bottom: 2em;
  }
  footer.site-footer .footer-columns .footer-column:last-of-type {
    margin-right: 0;
  }
  footer.site-footer .footer-columns .footer-column:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  footer.site-footer .footer-columns .footer-column .opening-times {
    width: calc(6 * var(--column-and-gutter-unit) - var(--gutter-unit));
    margin: 0 auto;
  }
  footer.site-footer .footer-columns .footer-column address {
    text-align: center;
  }
  footer.site-footer .footer-columns .footer-column ul.contact-methods {
    text-align: center;
  }
  footer.site-footer .footer-credits {
    flex-wrap: wrap;
  }
  footer.site-footer .footer-credits p.credit,
footer.site-footer .footer-credits p.copyright {
    flex-basis: 100%;
    text-align: center;
  }
  footer.site-footer .footer-credits p.copyright {
    margin-bottom: 0;
  }
}
@media (max-width: 599px) {
  footer.site-footer .footer-columns .footer-column .opening-times {
    width: calc(8 * var(--column-and-gutter-unit) - var(--gutter-unit));
  }
}

/* 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 {
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: red;
  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;
}

.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

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

/*# sourceMappingURL=style.css.map */
