/*!
Theme Name: One Fine Day 1.0.23
Theme URI: http://underscores.me/
Author: Kryzma Design Studios
Author URI: https://kryzma.com/
Description: One Fine Day Event Planning & Design
Version: 1.0.23
Tested up to: 7.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ofd
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.

One Fine Day 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

--------------------------------------------------------------*/
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0px 0px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger-box {
  width: 30px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 2px;
  background-color: #333333;
  border-radius: 2px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  background-size: 100%;
  background-repeat: no-repeat;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -9px;
}
.hamburger-inner::after {
  bottom: -9px;
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  -webkit-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*--------------------------------------------------------------
# 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.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 {
  -webkit-box-sizing: content-box;
          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;
  -webkit-text-decoration: underline dotted;
          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 {
  -webkit-box-sizing: border-box;
          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] {
  -webkit-box-sizing: border-box;
          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 {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
  color: #333333;
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  color: #b5adbf;
  text-transform: uppercase;
  margin: 0.67em 0 0.3em 0;
}

@media (max-width: 600px) {
  h1 {
    font-size: 5vw;
  }
  h2 {
    font-size: 4vw;
  }
}
body {
  font-size: 1em;
  line-height: 1.7;
  color: #333333;
}

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

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: #333333;
  text-decoration: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
a svg {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
a:visited {
  color: #333333;
}
a:hover, a:focus, a:active {
  color: #b5adbf;
}
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;
  border-color: #b5adbf;
  border-radius: 6px;
  background: #b5adbf;
  color: white;
  line-height: 1;
  text-transform: uppercase;
  padding: 0.7em 1em 0.5em;
}
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  background: #a790bd;
}
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 {
  background: #a790bd;
}

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

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
.main-navigation {
  display: block;
  width: 100%;
}
.main-navigation #menu-location-menu-1 {
  display: none;
}
.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.main-navigation ul ul {
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
          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;
}
.main-navigation a {
  display: block;
  text-decoration: none;
}
/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

@media screen and (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .main-navigation #menu-location-menu-1 {
    display: block;
  }
}
.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: end;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
}

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

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

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

.page-content,
.entry-content,
.entry-summary {
  margin: 1em 0 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);
  -webkit-clip-path: inset(50%);
          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;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #333333;
  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;
}

/* Custom
--------------------------------------------- */
html {
  height: 100%;
}

body {
  min-height: 100%;
}

#masthead {
  max-height: 100vh;
  display: grid;
  grid-template-rows: auto minmax(0, 2fr);
  padding-bottom: 0;
  max-width: 100%;
}
#masthead.ofd-fullscreen-masthead {
  position: relative;
  display: block;
  background: transparent;
}
#masthead.ofd-fullscreen-masthead .nav-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: transparent;
}
#masthead.ofd-no-hero {
  grid-template-rows: auto;
}
#masthead.ofd-short-masthead {
  height: 60vh;
  grid-template-rows: auto minmax(0, 1fr);
}
#masthead.ofd-short-masthead.ofd-image-80 {
  height: 80vh;
}
#masthead.ofd-short-masthead.ofd-image-100 {
  height: 100vh;
}
#masthead .menu-header-menu-container {
  margin-top: 15px;
}
@media (max-width: 1535px) {
  #masthead .menu-header-menu-container {
    margin-top: 2%;
  }
}
@media (min-device-width: 414px) and (max-device-width: 812px) and (orientation: landscape) {
  #masthead {
    max-height: unset;
    height: auto;
    grid-template-rows: unset;
  }
}
#masthead .nav-wrap {
  margin-right: var(--margin-edge);
  margin-left: var(--margin-edge);
  padding-left: var(--header-padding);
  padding-right: var(--header-padding);
  padding-top: var(--header-padding);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1279px) {
  #masthead .nav-wrap {
    padding-left: 0;
    padding-right: 0;
    padding-top: 3.125vw;
  }
}
@media (max-width: 1024px) {
  #masthead .nav-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#masthead .nav-wrap .site-title,
#masthead .nav-wrap .site-description {
  display: none;
}
#masthead .nav-wrap .site-branding {
  max-width: 580px;
  min-width: 250px;
}
#masthead .nav-wrap .site-branding img {
  width: 580px;
}
@media (max-width: 1024px) {
  #masthead .nav-wrap .site-branding {
    max-width: 200px;
    min-width: unset;
  }
}
@media (max-width: 400px) {
  #masthead .nav-wrap .site-branding {
    max-width: 150px;
  }
}
#masthead .nav-wrap .main-navigation {
  width: auto;
  font-size: 1.25em;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  color: #333333;
}
#masthead .nav-wrap .main-navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
#masthead .nav-wrap .main-navigation ul ul {
  -webkit-box-shadow: none;
          box-shadow: none;
  left: unset;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#masthead .nav-wrap .main-navigation .menu li {
  padding-bottom: 1em;
}
#masthead .nav-wrap .main-navigation .sub-menu li {
  padding-bottom: 0.5em;
}
#masthead .nav-wrap .main-navigation li {
  margin-right: 1.25em;
  margin-left: 1.25em;
}
@media (max-width: 1600px) {
  #masthead .nav-wrap .main-navigation li {
    font-size: 1.25vw;
  }
}
#masthead .nav-wrap .main-navigation li:hover > ul, #masthead .nav-wrap .main-navigation li.focus > ul {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  opacity: 1;
}
#masthead .nav-wrap .main-navigation .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#masthead .nav-wrap .main-navigation .sub-menu li {
  margin-left: 0;
  margin-right: 0;
}
#masthead .nav-wrap .main-navigation .sub-menu li a {
  white-space: nowrap;
}
#masthead .nav-wrap .main-navigation li.menu-item-has-children > .sub-menu > li.menu-item-has-children > .sub-menu {
  position: absolute;
  right: -100%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  background: white;
  padding-left: 1.5em;
}
#masthead .nav-wrap .main-navigation li.menu-item-has-children > .sub-menu > li.menu-item-has-children:hover .sub-menu {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

body.admin-bar #masthead {
  max-height: calc(100vh - 32px);
}
@media (min-device-width: 414px) and (max-device-width: 812px) and (orientation: landscape) {
  body.admin-bar #masthead {
    max-height: unset;
    height: auto;
    grid-template-rows: unset;
  }
}

body.ofd-hero #masthead {
  padding-bottom: var(--header-padding);
}

button#menu-hamburger-open {
  background: transparent;
  position: fixed;
  left: 20px;
  top: 20px;
  height: 50px;
  width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 0.768627451);
  border-radius: 50%;
  z-index: 9999;
}

@media (min-width: 1024px) {
  button#menu-hamburger-open {
    display: none;
  }
}
#ofd-hero {
  margin-right: var(--margin-edge);
  margin-left: var(--margin-edge);
}
#ofd-hero .ofd-video_section,
#ofd-hero .ofd-image_section {
  position: relative;
  height: 100%;
}
@media (min-device-width: 414px) and (max-device-width: 812px) and (orientation: landscape) {
  #ofd-hero .ofd-video_section,
#ofd-hero .ofd-image_section {
    height: auto;
  }
}
#ofd-hero .ofd-video_section .ofd-play-button,
#ofd-hero .ofd-image_section .ofd-play-button {
  width: 120px;
  position: absolute;
  margin: auto;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
@media (max-width: 1024px) {
  #ofd-hero .ofd-video_section .ofd-play-button,
#ofd-hero .ofd-image_section .ofd-play-button {
    width: 15%;
  }
}
#ofd-hero .image-wrapper {
  height: 100%;
}
#ofd-hero .image-wrapper:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #b5adbf;
  display: block;
  position: absolute;
  bottom: calc(-1 * var(--header-padding));
}
#ofd-hero .image-wrapper img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
#ofd-hero .image-wrapper.ofd-top img {
  -o-object-position: top;
     object-position: top;
}
#ofd-hero .image-wrapper.ofd-bottom img {
  -o-object-position: bottom;
     object-position: bottom;
}

#ofd-hero .ofd-full_screen_video {
  position: relative;
  width: calc(100% + (var(--margin-edge) * 2));
  min-height: 100vh;
  margin: 0 calc(-1 * var(--margin-edge));
  overflow: hidden;
  background-color: #000;
}
#ofd-hero .ofd-full_screen_video .hero-fullscreen__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
#ofd-hero .ofd-full_screen_video .hero-fullscreen__media--interactive {
  cursor: pointer;
}
#ofd-hero .ofd-full_screen_video .hero-fullscreen__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  pointer-events: none;
}
#ofd-hero .ofd-full_screen_video .hero-fullscreen__audio-toggle {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: 0;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
#ofd-hero .ofd-full_screen_video .hero-fullscreen__audio-toggle-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}
#ofd-hero .ofd-full_screen_video .hero-fullscreen__audio-toggle-icon .hero-fullscreen__audio-icon {
  display: none;
  width: 100%;
  height: 100%;
}
#ofd-hero .ofd-full_screen_video .hero-fullscreen__audio-toggle[data-state='muted'] .hero-fullscreen__audio-icon--muted {
  display: block;
}
#ofd-hero .ofd-full_screen_video .hero-fullscreen__audio-toggle[data-state='unmuted'] .hero-fullscreen__audio-icon--unmuted {
  display: block;
}
#ofd-hero .ofd-full_screen_video .hero-fullscreen__audio-toggle:hover,
#ofd-hero .ofd-full_screen_video .hero-fullscreen__audio-toggle:focus-visible {
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
#ofd-hero .ofd-full_screen_video .hero-fullscreen__audio-toggle:focus-visible {
  outline: none;
  -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.55);
          box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.55);
}
#ofd-hero .ofd-full_screen_video .hero-fullscreen__iframe-outer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#ofd-hero .ofd-full_screen_video .hero-fullscreen__iframe-inner {
  position: absolute;
  inset: 0;
}
#ofd-hero .ofd-full_screen_video .hero-fullscreen__iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  border: 0;
  pointer-events: none;
}
#ofd-hero .ofd-full_screen_video .hero-fullscreen__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--hero-overlay-background, rgba(0, 0, 0, 0.35));
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
#ofd-hero .ofd-full_screen_video.has-overlay .hero-fullscreen__overlay {
  opacity: 1;
}
#ofd-hero .ofd-full_screen_video .hero-fullscreen__fallback {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: none;
}
#ofd-hero .ofd-full_screen_video .hero-fullscreen__fallback-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  #ofd-hero .ofd-full_screen_video .hero-fullscreen__media {
    display: none;
  }
  #ofd-hero .ofd-full_screen_video .hero-fullscreen__fallback {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  #ofd-hero .ofd-full_screen_video .hero-fullscreen__media {
    display: none;
  }
  #ofd-hero .ofd-full_screen_video .hero-fullscreen__fallback {
    display: block;
  }
}

#ofd-overlay .ofd-video {
  position: fixed;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform-origin: center;
          transform-origin: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: auto;
  width: 80vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -o-object-fit: contain;
     object-fit: contain;
}
#ofd-overlay .ofd-video video {
  width: 100%;
  height: auto;
  margin: auto;
  right: 0;
  left: 0;
  position: absolute;
}
@media (min-device-width: 414px) and (max-device-width: 812px) and (orientation: landscape) {
  #ofd-overlay .ofd-video video {
    width: auto;
    height: 90%;
  }
}
#ofd-overlay .ofd-video iframe {
  width: 100%;
  height: 100%;
  margin: auto;
  right: 0;
  left: 0;
  position: absolute;
}
@media (min-device-width: 414px) and (max-device-width: 812px) and (orientation: landscape) {
  #ofd-overlay .ofd-video iframe {
    width: auto;
    height: 90%;
  }
}

body.ofd-video-overlay {
  overflow: hidden;
}
body.ofd-video-overlay #ofd-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  z-index: 999;
}
body.ofd-video-overlay #ofd-overlay:before {
  content: "X";
  position: absolute;
  color: white;
  font-size: 30px;
  display: block;
  width: 30px;
  height: 30px;
  top: 20px;
  right: 20px;
  z-index: 99999;
}
body.ofd-video-overlay #ofd-overlay .ofd-video {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
@media (min-device-width: 414px) and (max-device-width: 812px) and (orientation: landscape) {
  body.ofd-video-overlay #ofd-overlay .ofd-video {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100vh;
  }
}

body.ofd-video-overlay.admin-bar #ofd-overlay:before {
  top: 52px;
}

#ofd-hero .ofd-image_section .image-wrapper {
  position: relative;
}
#ofd-hero .ofd-image_section .image-wrapper:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #b5adbf;
  display: block;
  position: absolute;
  bottom: calc(-1 * var(--header-padding));
}

section.text-section {
  text-align: left;
}
section.text-section .section-title {
  text-transform: capitalize;
  margin-bottom: 1em;
  margin-top: 0;
}
section.text-section .content-text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  section.text-section .content-text img {
    width: 100%;
  }
}

section.ofd-list-wrapper {
  text-align: center;
}
section.ofd-list-wrapper .services-title {
  text-transform: none;
  margin-top: 0;
  margin-bottom: 1em;
}
section.ofd-list-wrapper .ofd-service:after {
  content: "|";
  padding: 0 15px;
}
section.ofd-list-wrapper .ofd-service:last-child:after, section.ofd-list-wrapper .ofd-service.ofd-inline-title:after {
  content: unset;
}
section.ofd-list-wrapper .ofd-service.ofd-inline-title {
  margin-right: 15px;
}

section.ofd-carousel .ofd-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  max-height: 90vh;
}
section.ofd-carousel .ofd-slide img {
  -o-object-fit: cover;
     object-fit: cover;
}
section.ofd-carousel.ofd-retain-aspect .ofd-slide img {
  -o-object-fit: contain;
     object-fit: contain;
}
section.ofd-carousel .ofd-prev,
section.ofd-carousel .ofd-next {
  background: #b5adbf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
  position: absolute;
  top: 0;
  height: 100%;
  width: 45px;
}
section.ofd-carousel .ofd-prev svg,
section.ofd-carousel .ofd-next svg {
  height: 25px;
}
section.ofd-carousel .ofd-next {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
section.ofd-carousel .ofd-nav-container {
  position: relative;
  margin-top: 20px;
  margin-right: 45px;
  margin-left: 45px;
}
section.ofd-carousel .ofd-nav-container .ofd-prev {
  left: -45px;
}
section.ofd-carousel .ofd-nav-container .ofd-next {
  right: -45px;
}
section.ofd-carousel .ofd-slide-nav {
  padding: 0 5px;
}
section.ofd-carousel .ofd-main-slider {
  position: relative;
}
section.ofd-carousel .ofd-controls {
  position: absolute;
  z-index: 99;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  width: 60px;
  height: 60px;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  display: none;
}
section.ofd-carousel .ofd-controls.active {
  display: block;
}
section.ofd-carousel .ofd-main-prev,
section.ofd-carousel .ofd-main-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(181, 173, 191, 0.7);
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
section.ofd-carousel .ofd-main-prev svg,
section.ofd-carousel .ofd-main-next svg {
  width: auto;
  height: 20px;
}
section.ofd-carousel .ofd-main-slider:hover .ofd-controls, section.ofd-carousel .ofd-main-slider:hover .ofd-main-prev,
section.ofd-carousel .ofd-main-slider:hover .ofd-main-next {
  opacity: 0.8;
}
section.ofd-carousel .ofd-main-prev {
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
section.ofd-carousel .ofd-main-prev svg {
  position: relative;
  left: -2px;
}
section.ofd-carousel .ofd-main-next {
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
section.ofd-carousel .ofd-main-next svg {
  position: relative;
  right: 2px;
}

section.ofd-video-grid .ofd-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  section.ofd-video-grid .ofd-grid-wrapper {
    grid-template-columns: 1fr;
  }
}
section.ofd-video-grid .ofd-grid-wrapper.ofd-two-columns {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  section.ofd-video-grid .ofd-grid-wrapper.ofd-two-columns {
    grid-template-columns: 1fr;
  }
}
section.ofd-video-grid .ofd-grid-wrapper.ofd-three-columns {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  section.ofd-video-grid .ofd-grid-wrapper.ofd-three-columns {
    grid-template-columns: 1fr;
  }
}
section.ofd-video-grid .ofd-grid-wrapper.ofd-four-columns {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  section.ofd-video-grid .ofd-grid-wrapper.ofd-four-columns {
    grid-template-columns: 1fr;
  }
}
section.ofd-video-grid .ofd-grid-wrapper iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
section.ofd-video-grid .ofd-iframe-wrapper {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}
section.ofd-video-grid .ofd-grid-wrapper.ofd-portrait-mode .ofd-iframe-wrapper {
  height: 0;
  padding-bottom: 177.7777777778%;
  position: relative;
}

section.media-logos .section-title {
  text-align: center !important;
}
section.media-logos .content-logo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  section.media-logos .content-logo-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 550px) {
  section.media-logos .content-logo-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
section.media-logos .ofd-logo {
  display: inline-block;
  margin-right: var(--header-padding);
}
@media (max-width: 767px) {
  section.media-logos .ofd-logo {
    margin-bottom: 20px;
  }
}
@media (max-width: 550px) {
  section.media-logos .ofd-logo {
    margin-bottom: 20px;
    margin-right: 0;
  }
}
section.media-logos .ofd-logo img {
  max-height: 120px;
  max-width: 200px;
}
section.media-logos .ofd-logo a:hover {
  opacity: 0.6;
}

#colophon {
  margin-top: auto;
  padding-top: calc(var(--footer-padding) * 0.8);
  padding-bottom: var(--footer-padding);
}
#colophon.ofd-has-instagram {
  padding-top: 0;
}
#colophon .ofd-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: var(--footer-padding);
}
@media (max-width: 768px) {
  #colophon .ofd-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#colophon .ofd-contact .contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 0px;
  margin-right: 20px;
}
@media (max-width: 768px) {
  #colophon .ofd-contact .contact-item {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
#colophon .ofd-contact .contact-item:last-child {
  margin-right: 0;
}
#colophon .ofd-contact .contact-item.ofd-email svg {
  height: 20px;
}
#colophon .ofd-contact .ofd-contact-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#colophon .ofd-contact .ofd-contact-social .contact-item {
  margin-right: 20px;
}
#colophon .ofd-contact .ofd-contact-social .contact-item:last-child {
  margin-right: 0;
}
#colophon .ofd-contact .ofd-contact-social .contact-item a {
  display: inherit;
}
#colophon .ofd-contact a:hover svg {
  opacity: 0.7;
}
#colophon .ofd-contact .ofd-text {
  margin-left: 10px;
}
#colophon svg {
  height: 1.75rem;
  width: 1.75rem;
}
#colophon .copyright,
#colophon .byline {
  text-align: center;
  font-size: 14px;
}
@media (max-width: 768px) {
  #colophon .copyright,
#colophon .byline {
    max-width: 92%;
    margin: auto;
  }
}
#colophon .copyright {
  position: relative;
  padding-top: var(--footer-padding);
}
#colophon .copyright:before {
  content: "";
  max-width: 80%;
  width: 1024px;
  height: 1px;
  background: #b5adbf;
  position: absolute;
  top: 0;
  margin: auto;
  left: 0;
  right: 0;
}
#colophon #sb_instagram {
  padding-bottom: 20px !important;
}

.ofd-divider {
  position: relative;
}
.ofd-divider:before {
  content: "";
  max-width: 80%;
  width: 1024px;
  height: 1px;
  background: #b5adbf;
  position: absolute;
  top: 0;
  margin: auto;
  left: 0;
  right: 0;
}

#page {
  width: 100%;
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
#page .entry-title {
  text-align: left;
  margin-bottom: 0.8em;
}
#page .entry-content {
  text-align: left;
}
#page h2 {
  text-align: left;
}

body.admin-bar #page {
  min-height: calc(100vh - var(--admin-bar-height));
}

#primary.ofd-center-justify .entry-title,
#primary.ofd-center-justify .section-title,
#primary.ofd-center-justify .services-title,
#primary.ofd-center-justify p {
  text-align: center;
}

body.page-template-template-custom #primary article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body.page-template-template-custom #primary section {
  margin-top: var(--section-top);
}
body.page-template-template-custom #primary section:first-of-type {
  margin-top: 0;
}
body.page-template-template-custom #primary section:last-of-type {
  margin-bottom: var(--header-padding);
}

#primary {
  margin-left: var(--margin-edge);
  margin-right: var(--margin-edge);
}

article.page, article .post {
  max-width: var(--content-width);
  width: 94%;
  margin: auto;
}

.gform_wrapper .gform_body .gfield_required {
  color: #b5adbf;
}

.sbi-owl-dots .sbi-owl-dot span {
  background: #a790bd !important;
}

@media (max-width: 479px) {
  .sbi-owl-dots .sbi-owl-dot {
    zoom: 0.5;
  }
}
.mm-listitem a {
  text-transform: capitalize;
}/*# sourceMappingURL=style.css.map */