@charset "UTF-8";
/*==========================================================================================
Filename:	reset.css	v1.0 | 20080212
Purpose:	overwrite default browser CSS styles to create a consistent baseline to
			inherit from. see http://meyerweb.com/eric/tools/css/reset/
===========================================================================================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 1em;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

/* remember to define focus styles! */
:focus {
  outline: none;
}

/* remember to highlight inserts somehow! */
ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

figure {
  margin: 0;
}

* {
  box-sizing: border-box;
}

@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-Bold.woff2") format("woff2"), url("fonts/Lato-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-Black.woff2") format("woff2"), url("fonts/Lato-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-BlackItalic.woff2") format("woff2"), url("fonts/Lato-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-BoldItalic.woff2") format("woff2"), url("fonts/Lato-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-Italic.woff2") format("woff2"), url("fonts/Lato-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-Light.woff2") format("woff2"), url("fonts/Lato-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-LightItalic.woff2") format("woff2"), url("fonts/Lato-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-Regular.woff2") format("woff2"), url("fonts/Lato-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato Hairline";
  src: url("fonts/Lato-Hairline.woff2") format("woff2"), url("fonts/Lato-Hairline.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato Hairline";
  src: url("fonts/Lato-HairlineItalic.woff2") format("woff2"), url("fonts/Lato-HairlineItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "IM FELL DW Pica SC";
  src: url("fonts/IM_FELL_DW_Pica_SC.woff2") format("woff2"), url("fonts/IM_FELL_DW_Pica_SC.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IM FELL DW Pica";
  src: url("fonts/IM_FELL_DW_Pica_Italic.woff2") format("woff2"), url("fonts/IM_FELL_DW_Pica_Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "IM FELL DW Pica";
  src: url("fonts/IM_FELL_DW_Pica_Roman.woff2") format("woff2"), url("fonts/IM_FELL_DW_Pica_Roman.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html,
body {
  margin: 0 !important;
  padding: 0;
  font-family: "Lato", sans-serif;
  font-size: 22px;
  font-weight: normal;
  background-color: white;
  color: #222222;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@supports (overflow-x: clip) {
  html, body {
    overflow-x: clip;
  }
}
#skip-nav a {
  position: absolute;
  text-align: left;
  margin: 0;
  padding: 0.5em;
  left: -1000em;
  top: 0;
  background-color: #7F1416;
  z-index: 99999;
  color: white;
  -webkit-transition: all 250ms;
  -moz-box-shadow: all 250ms;
  -ms-box-shadow: all 250ms;
  transition: all 250ms;
}
#skip-nav a:focus {
  left: 0px;
  -webkit-transition: all 250ms;
  -moz-box-shadow: all 250ms;
  -ms-box-shadow: all 250ms;
  transition: all 250ms;
}

h1, h2, h3,
h4, h5, h6 {
  line-height: 1.25em;
  font-style: normal;
  margin-bottom: 1.5rem;
  font-family: "IM FELL DW Pica", serif;
}

h1 {
  font-size: 2.99rem;
  font-family: "IM FELL DW Pica SC", serif;
  font-weight: normal;
}

h2 {
  font-size: 2.07rem;
}

h1:after, h2:after {
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='301' height='18.281' viewBox='0 0 301 18.281'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_115' data-name='Rectangle 115' width='301' height='18.281' fill='none' /%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Group_2' data-name='Group 2' transform='translate(0 0)'%3E%3Cg id='Group_1' data-name='Group 1' transform='translate(0 0)' clip-path='url(%23clip-path)'%3E%3Cpath id='Path_1' data-name='Path 1' d='M.024,6.012c1.049-8.833,16.523-5.171,15.4,2.8,2.408-.093,4.83-.07,7.239-.15,3.509-.117,7.054-.364,10.564-.479a37.988,37.988,0,0,0,5.657-.174c1.652-6.18,7.876-8.718,13.662-6.058C55.2,3.169,57.2,4.642,57.1,7.877l25.25-.3C83.728,3.386,86.371,1.18,90.668.312c2.12-.429,3.538-.618,5.322.806A9,9,0,0,1,99.409,8.5a9.152,9.152,0,0,1,2.094.161c6.407.333,13.7-.754,20.232-1.087,17.647-.9,35.479-.593,53.192-.776,14.93-.154,29.85.51,44.78.932,20.209.571,40.27,1.139,60.516,1.088,4.33-.011,8.708-.266,13.065-.17a49.033,49.033,0,0,1,6.986.324.948.948,0,0,1-.141,1.866c-15.523-.536-31.211,1.272-46.674.464-4.811-.252-9.457-1.062-14.309-.945-1.478.036-3.175.287-4.653.324-8.362.206-16.59-1.428-24.885-1.243-4.156.093-8.067.61-12.3.466-5.691-.193-11.386-1.086-17.095-1.256-11.946-.357-23.565,2.186-35.475,1.722-2.939-.115-5.9-.545-8.852-.634-10.239-.311-20.456.519-30.64.789-.841.022-6.128-.161-6.322.089-1.161,3.579-4.669,7.231-8.538,7.669h-.933c-.563-.239-1.193-.257-1.795-.46a8.927,8.927,0,0,1-5.517-7.615c-8.4-.254-16.778-.389-25.188-.3-1.29,8.728-17.228,10.85-18.048.768-8.025-.067-16,.921-24.027.781-.5.1-1.126,1.551-1.507,2.067C10.5,17.422,5.811,19.189,2.541,14.6A16.66,16.66,0,0,1,.024,8.031c.054-.646-.075-1.389,0-2.019m6.656-2.6c-5.9.56-3.625,13.979,3.148,10.291C15.114,10.826,12.242,2.887,6.68,3.414m83.668-.005c-3.334.521-6.237,6.324-4.227,9.116,3.55,4.931,11.774.231,9.428-5.842-.92-2.38-2.536-3.69-5.2-3.274m-42.3.938c-3.6.432-6.292,2.537-5.859,6.385.66,5.88,7.968,5.072,10.313,1.014a9.967,9.967,0,0,0,1.167-5.175c-.289-2.486-3.753-2.447-5.621-2.223' transform='translate(0 0)' style='fill:%23E58223'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 100%;
  height: 1rem;
}
h1.has-text-align-center:after, h2.has-text-align-center:after {
  background-position: center;
}

h3 {
  font-size: 1.73rem;
}

h4 {
  font-size: 1.44rem;
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 1rem;
}

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

ul,
ol {
  margin: 0 0 1.5rem 0;
  padding-left: 2em;
}
ul ul,
ul ol,
ol ul,
ol ol {
  margin: 0.25em 0;
}
ul li,
ol li {
  line-height: 1.5em;
}

ul li::marker {
  color: #7F1416;
}

a {
  color: #7F1416;
  text-decoration-color: #7F1416;
  text-decoration-thickness: 2px;
  text-decoration-style: solid;
  font-weight: bold;
  -webkit-transition: all 250ms;
  -moz-box-shadow: all 250ms;
  -ms-box-shadow: all 250ms;
  transition: all 250ms;
}
a:hover {
  -webkit-transition: all 250ms;
  -moz-box-shadow: all 250ms;
  -ms-box-shadow: all 250ms;
  transition: all 250ms;
  color: #5D0C0D;
  text-decoration-thickness: 3px;
  text-decoration-color: #E58223;
}

.has-white-color a:not(.wp-element-button) {
  color: white;
  text-decoration-color: #E58223;
}
.has-white-color a:not(.wp-element-button):hover {
  color: #E58223;
}

blockquote {
  width: 100%;
  border-top: 3px solid #7F1416;
  border-bottom: 3px solid #7F1416;
  margin: 2rem 0;
  padding: 2rem 0;
  font-family: "IM FELL DW Pica", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1.5em;
}
blockquote p:last-of-type {
  margin-bottom: 0;
}
blockquote cite {
  color: #222222;
  font-family: "Lato", sans-serif;
  font-size: 0.83rem;
  font-style: normal;
  margin-top: 15px;
  display: block;
  position: relative;
  padding-left: 1em;
}
blockquote cite:before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
}

hr {
  border: none;
  border-top: 2px dotted #D9D9D9;
  margin: 3.5rem 0;
}

:focus {
  outline: 2px solid #7F1416;
  outline-offset: 2px;
}

pre {
  line-height: 1.5em;
}

code {
  font-family: "Fira Code", monospace;
  background: #f1f1f1;
  display: inline-block;
  padding: 0.1em 0.35em;
  font-size: 0.9em;
}

small {
  font-size: 0.83rem;
}

mark {
  background-color: #f9dac3;
}

/* =WordPress Core
-------------------------------------------------------------- */
.alignwide {
  margin: 1rem calc(25% - 25vw);
  max-width: 100vw;
}

.alignfull {
  box-sizing: border-box;
  max-width: 100vw;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.alignfull img {
  width: 100vw;
}

.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

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

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%; /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* 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; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

.wp-block-media-text {
  margin: 4% 0;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
  -ms-box-shadow: 10px 7px 15px rgba(0, 0, 0, 0.16);
  -o-box-shadow: 10px 7px 15px rgba(0, 0, 0, 0.16);
  box-shadow: 10px 7px 15px rgba(0, 0, 0, 0.16);
}

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

/* Let images with a border width actually show a border */
.wp-block-image.has-custom-border img {
  border-style: solid;
}

.has-border-color,
[style*=border-top-color],
[style*=border-bottom-color],
[style*=border-left-color],
[style*=border-right-color] {
  border-style: solid;
}

body.home .site-header,
body.page-template-has-hero .site-header {
  background-color: transparent;
  box-shadow: none;
}

/* bump the header down when admin bar is visible */
body.admin-bar .site-header {
  top: 32px; /* desktop toolbar height */
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px; /* taller toolbar on smaller screens */
  }
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  z-index: 1000;
  background: white;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 200ms ease, box-shadow 200ms ease;
}
.site-header:after {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 8rem;
  z-index: -1;
  background: rgba(255, 255, 255, 0.9);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}
.site-header.is-scrolled {
  background-color: white !important;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1) !important;
  opacity: 1;
  -webkit-transition: opacity 250ms;
  -moz-box-shadow: opacity 250ms;
  -ms-box-shadow: opacity 250ms;
  transition: opacity 250ms;
}
.site-header.is-scrolled:after {
  opacity: 0;
}

.site-footer-cta .nf-before-form-content {
  display: none;
}
.site-footer-cta nf-fields-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .site-footer-cta nf-fields-wrap {
    flex-direction: column;
  }
}
.site-footer-cta nf-field {
  flex-basis: 49%;
}
@media (max-width: 768px) {
  .site-footer-cta nf-field {
    flex-basis: 100%;
  }
}
.site-footer-cta nf-field {
  /* display: flex; */
  /* align-items: center; */
  /* flex-direction: row; */
}

.site-footer a:not(.wp-element-button) {
  text-decoration-color: transparent;
}
.site-footer a:not(.wp-element-button):hover {
  text-decoration-color: #E58223;
}

.wp-block-navigation a {
  font-weight: normal;
  font-size: 1rem;
}

.wp-block-navigation__submenu-container.wp-block-navigation-submenu a {
  font-size: 0.83rem;
}

.wp-block-navigation-link a {
  position: relative;
}
.wp-block-navigation-link a:after {
  content: "";
  width: 0;
  height: 2px;
  background-color: #7F1416;
  -webkit-transition: all 250ms;
  -moz-box-shadow: all 250ms;
  -ms-box-shadow: all 250ms;
  transition: all 250ms;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.wp-block-navigation-link a:hover:after {
  width: 100%;
}

.wp-block-navigation__submenu-container.wp-block-navigation-submenu {
  border-radius: 0.5rem;
  border: 1px solid rgb(187.8, 177.6, 168.6);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden !important;
}
@media (max-width: 768px) {
  .wp-block-navigation__submenu-container.wp-block-navigation-submenu {
    border: none;
    box-shadow: none;
    border-radius: 0;
    background-color: #FBF4EE !important;
  }
}

.wp-block-button {
  /* Base button (no style chosen) */
}
.wp-block-button .wp-block-button__link.wp-element-button {
  padding: 0.65rem 1.25rem;
  border-radius: 2rem;
  font-weight: normal;
  text-decoration: none;
  border: 1px solid #222222;
  background-color: #222222;
  color: white;
  -webkit-transition: all 250ms;
  -moz-box-shadow: all 250ms;
  -ms-box-shadow: all 250ms;
  transition: all 250ms;
  font-family: "IM FELL DW Pica", serif;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  text-decoration-color: rgba(34, 34, 34, 0);
}
.wp-block-button.is-style-primary .wp-block-button__link.wp-element-button {
  background: #9C4942;
  background: linear-gradient(to bottom, #9C4942 0%, #7F1416 100%);
  background-size: 100% 115%;
  background-position: 100% 0;
  border-color: #7F1416;
  color: white;
}
.wp-block-button.is-style-primary .wp-block-button__link.wp-element-button:after {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1em;
  margin-left: 0.5em;
  background-image: url("data:image/svg+xml,%3Csvg id='Arrow' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='36.833' height='19.013' viewBox='0 0 36.833 19.013'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_117' data-name='Rectangle 117' width='36.833' height='19.013' transform='translate(0 0)' /%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Group_5' data-name='Group 5' transform='translate(0 0)' clip-path='url(%23clip-path)' style='fill:%23E58223' %3E%3Cpath id='Path_2' data-name='Path 2' d='M36.833,9.036c-.063-.05-.128-.1-.191-.148a.646.646,0,0,0-.157-.122C32.442,5.613,27.776,3.228,23.75.035c-.336-.191-.834.437-.6.753a12.177,12.177,0,0,0,1.932,1.587c1.237.945,2.586,1.748,3.847,2.643,1.949,1.383,3.667,2.638,5.492,4q-1.548-.006-3.1.008c-9.133.094-1.811,0-10.911.462-3.367.172-7.128.732-10.431.56A4.717,4.717,0,0,0,8.9,9.967,4.64,4.64,0,0,0,7.139,6.162a2.827,2.827,0,0,0-2.744-.416A5.163,5.163,0,0,0,.108,9.49L0,10.848a4.6,4.6,0,0,0,2.844,3.926c.31.1.635.114.925.237h.481a5.86,5.86,0,0,0,4.4-3.954,28.719,28.719,0,0,1,3.26-.046c5.25-.139,10.519-.567,15.8-.407l6.34-.623a5.02,5.02,0,0,0,.5-.011c-3.744,2.7-7.87,4.911-11.465,7.781a2.589,2.589,0,0,1,.709,1.262c2.371-1.788,4.763-3.554,7.2-5.28,1.261-.895,2.61-1.7,3.847-2.643A12.173,12.173,0,0,0,36.772,9.5a.39.39,0,0,0,.021-.379.447.447,0,0,0,.039-.088M2.051,12.043c-1.037-1.44.46-4.432,2.179-4.7A2.288,2.288,0,0,1,6.912,9.031c1.21,3.131-3.03,5.554-4.861,3.012' transform='translate(0 0)' style='fill:%23E58223' /%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: bottom;
}
.wp-block-button.is-style-primary .wp-block-button__link.wp-element-button:hover {
  background-position: 0 101%;
  text-decoration-color: #B8766F;
  border-color: #B8766F;
}
.wp-block-button.is-style-secondary .wp-block-button__link.wp-element-button {
  background: #ED9C5C;
  background: linear-gradient(to bottom, #ED9C5C 0%, #E58223 100%);
  background-size: 100% 115%;
  background-position: 100% 0;
  border-color: #E58223;
  color: #222222;
}
.wp-block-button.is-style-secondary .wp-block-button__link.wp-element-button:after {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1em;
  margin-left: 0.5em;
  background-image: url("data:image/svg+xml,%3Csvg id='Arrow' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='36.833' height='19.013' viewBox='0 0 36.833 19.013'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_117' data-name='Rectangle 117' width='36.833' height='19.013' transform='translate(0 0)' /%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Group_5' data-name='Group 5' transform='translate(0 0)' clip-path='url(%23clip-path)' style='fill:%237F1416' %3E%3Cpath id='Path_2' data-name='Path 2' d='M36.833,9.036c-.063-.05-.128-.1-.191-.148a.646.646,0,0,0-.157-.122C32.442,5.613,27.776,3.228,23.75.035c-.336-.191-.834.437-.6.753a12.177,12.177,0,0,0,1.932,1.587c1.237.945,2.586,1.748,3.847,2.643,1.949,1.383,3.667,2.638,5.492,4q-1.548-.006-3.1.008c-9.133.094-1.811,0-10.911.462-3.367.172-7.128.732-10.431.56A4.717,4.717,0,0,0,8.9,9.967,4.64,4.64,0,0,0,7.139,6.162a2.827,2.827,0,0,0-2.744-.416A5.163,5.163,0,0,0,.108,9.49L0,10.848a4.6,4.6,0,0,0,2.844,3.926c.31.1.635.114.925.237h.481a5.86,5.86,0,0,0,4.4-3.954,28.719,28.719,0,0,1,3.26-.046c5.25-.139,10.519-.567,15.8-.407l6.34-.623a5.02,5.02,0,0,0,.5-.011c-3.744,2.7-7.87,4.911-11.465,7.781a2.589,2.589,0,0,1,.709,1.262c2.371-1.788,4.763-3.554,7.2-5.28,1.261-.895,2.61-1.7,3.847-2.643A12.173,12.173,0,0,0,36.772,9.5a.39.39,0,0,0,.021-.379.447.447,0,0,0,.039-.088M2.051,12.043c-1.037-1.44.46-4.432,2.179-4.7A2.288,2.288,0,0,1,6.912,9.031c1.21,3.131-3.03,5.554-4.861,3.012' transform='translate(0 0)' style='fill:%237F1416' /%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: bottom;
}
.wp-block-button.is-style-secondary .wp-block-button__link.wp-element-button:hover {
  background-position: 0 101%;
  text-decoration-color: #F3B587;
  border-color: #F3B587;
}

form {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

input[type=text],
input[type=date],
input[type=datetime],
input[type=email],
input[type=number],
input[type=search],
input[type=time],
input[type=url],
input[type=datetime-local],
input[type=month],
input[type=week],
input[type=tel],
input[type=password],
input[type=file],
textarea,
select {
  width: 100%;
  font-family: "Lato", sans-serif;
  font-weight: normal;
  border: 1px solid #D9D9D9;
  border-radius: 0.5rem;
  margin: 0;
  padding: 0.75rem;
  box-sizing: border-box;
  background-color: rgb(248.1, 248.1, 248.1);
  color: #222222;
  font-size: 1rem;
}
input[type=text]:focus,
input[type=date]:focus,
input[type=datetime]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=datetime-local]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=tel]:focus,
input[type=password]:focus,
input[type=file]:focus,
textarea:focus,
select:focus {
  background-color: #EFEDE6;
}
html[data-theme=dark] input[type=text],
html[data-theme=dark] input[type=date],
html[data-theme=dark] input[type=datetime],
html[data-theme=dark] input[type=email],
html[data-theme=dark] input[type=number],
html[data-theme=dark] input[type=search],
html[data-theme=dark] input[type=time],
html[data-theme=dark] input[type=url],
html[data-theme=dark] input[type=datetime-local],
html[data-theme=dark] input[type=month],
html[data-theme=dark] input[type=week],
html[data-theme=dark] input[type=tel],
html[data-theme=dark] input[type=password],
html[data-theme=dark] input[type=file],
html[data-theme=dark] textarea,
html[data-theme=dark] select {
  background-color: #3c4148;
  border-color: #4e555e;
}
input[type=text].error,
input[type=date].error,
input[type=datetime].error,
input[type=email].error,
input[type=number].error,
input[type=search].error,
input[type=time].error,
input[type=url].error,
input[type=datetime-local].error,
input[type=month].error,
input[type=week].error,
input[type=tel].error,
input[type=password].error,
input[type=file].error,
textarea.error,
select.error {
  border-color: #E64040;
  background-color: hsl(0, 76.8518518519%, 117.6470588235%);
  color: #E64040;
}
input[type=text].error:focus,
input[type=date].error:focus,
input[type=datetime].error:focus,
input[type=email].error:focus,
input[type=number].error:focus,
input[type=search].error:focus,
input[type=time].error:focus,
input[type=url].error:focus,
input[type=datetime-local].error:focus,
input[type=month].error:focus,
input[type=week].error:focus,
input[type=tel].error:focus,
input[type=password].error:focus,
input[type=file].error:focus,
textarea.error:focus,
select.error:focus {
  outline-color: #E64040;
}
html[data-theme=dark] input[type=text].error,
html[data-theme=dark] input[type=date].error,
html[data-theme=dark] input[type=datetime].error,
html[data-theme=dark] input[type=email].error,
html[data-theme=dark] input[type=number].error,
html[data-theme=dark] input[type=search].error,
html[data-theme=dark] input[type=time].error,
html[data-theme=dark] input[type=url].error,
html[data-theme=dark] input[type=datetime-local].error,
html[data-theme=dark] input[type=month].error,
html[data-theme=dark] input[type=week].error,
html[data-theme=dark] input[type=tel].error,
html[data-theme=dark] input[type=password].error,
html[data-theme=dark] input[type=file].error,
html[data-theme=dark] textarea.error,
html[data-theme=dark] select.error {
  color: white;
  background-color: #3c0b00;
  border-color: #66281b;
}

input[type=submit] {
  padding: 0.65rem 1.25rem;
  border-radius: 2rem;
  font-weight: normal;
  font-size: 1rem;
  -webkit-transition: all 250ms;
  -moz-box-shadow: all 250ms;
  -ms-box-shadow: all 250ms;
  transition: all 250ms;
  font-family: "IM FELL DW Pica", serif;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  text-decoration-color: rgba(34, 34, 34, 0);
  background: #9C4942;
  background: linear-gradient(to bottom, #9C4942 0%, #7F1416 100%);
  background-size: 100% 115%;
  background-position: 100% 0;
  border: 1px solid #7F1416;
  color: white;
}
input[type=submit]:after {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1em;
  margin-left: 0.5em;
  background-image: url("data:image/svg+xml,%3Csvg id='Arrow' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='36.833' height='19.013' viewBox='0 0 36.833 19.013'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_117' data-name='Rectangle 117' width='36.833' height='19.013' transform='translate(0 0)' /%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Group_5' data-name='Group 5' transform='translate(0 0)' clip-path='url(%23clip-path)' style='fill:%23E58223' %3E%3Cpath id='Path_2' data-name='Path 2' d='M36.833,9.036c-.063-.05-.128-.1-.191-.148a.646.646,0,0,0-.157-.122C32.442,5.613,27.776,3.228,23.75.035c-.336-.191-.834.437-.6.753a12.177,12.177,0,0,0,1.932,1.587c1.237.945,2.586,1.748,3.847,2.643,1.949,1.383,3.667,2.638,5.492,4q-1.548-.006-3.1.008c-9.133.094-1.811,0-10.911.462-3.367.172-7.128.732-10.431.56A4.717,4.717,0,0,0,8.9,9.967,4.64,4.64,0,0,0,7.139,6.162a2.827,2.827,0,0,0-2.744-.416A5.163,5.163,0,0,0,.108,9.49L0,10.848a4.6,4.6,0,0,0,2.844,3.926c.31.1.635.114.925.237h.481a5.86,5.86,0,0,0,4.4-3.954,28.719,28.719,0,0,1,3.26-.046c5.25-.139,10.519-.567,15.8-.407l6.34-.623a5.02,5.02,0,0,0,.5-.011c-3.744,2.7-7.87,4.911-11.465,7.781a2.589,2.589,0,0,1,.709,1.262c2.371-1.788,4.763-3.554,7.2-5.28,1.261-.895,2.61-1.7,3.847-2.643A12.173,12.173,0,0,0,36.772,9.5a.39.39,0,0,0,.021-.379.447.447,0,0,0,.039-.088M2.051,12.043c-1.037-1.44.46-4.432,2.179-4.7A2.288,2.288,0,0,1,6.912,9.031c1.21,3.131-3.03,5.554-4.861,3.012' transform='translate(0 0)' style='fill:%23E58223' /%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: bottom;
}
input[type=submit]:hover {
  background-position: 0 101%;
  text-decoration-color: #B8766F;
  border-color: #B8766F;
}

legend {
  margin-bottom: 0.5rem;
  font-size: 0.83rem;
}

fieldset {
  margin-bottom: 1.5em;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.83rem;
  line-height: 1em;
}
label.error {
  color: #E64040;
  font-weight: 600;
}

.wp-block-image[style*="--etzanoa-image-rotation"] img {
  transform: rotate(var(--etzanoa-image-rotation));
  transition: transform 180ms ease-out;
}

table {
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  width: 100%;
}
table caption {
  font-family: "Lato", sans-serif;
  font-weight: bold;
  margin-bottom: 10px;
}
table th,
table td {
  padding: 0.75rem;
  border: 1px solid #ccc;
  line-height: 1.25em;
}
html[data-theme=dark] table th,
html[data-theme=dark] table td {
  border-color: #4e555e;
}
table th {
  background-color: #EBEDEE;
  text-align: left;
  font-weight: bold;
}
html[data-theme=dark] table th {
  background-color: #3c4148;
}
table.table-striped tr:nth-child(odd) {
  background: #ECECEC;
}
html[data-theme=dark] table.table-striped tr:nth-child(odd) {
  background: #272f3a;
}
table.table-minimal th,
table.table-minimal td {
  border: none;
  border-bottom: 1px solid #E8E8E8;
  background: none;
}
html[data-theme=dark] table.table-minimal th,
html[data-theme=dark] table.table-minimal td {
  background: none;
}

.wp-block-group {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.wp-block-group.is-style-bg-repeat {
  background-repeat: repeat !important;
  background-size: auto !important;
}

.wp-block-pullquote {
  border-radius: 0.5rem;
  background: white;
  background-image: url("images/pullquote-background.jpg");
  background-size: cover;
  background-position: center;
  padding: 2rem !important;
  border: 1px solid rgb(187.8, 177.6, 168.6) !important;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}
.wp-block-pullquote:before {
  content: "";
  position: absolute;
  top: -0.75rem;
  left: -0.75rem;
  width: 3rem;
  height: 3rem;
  background: #7F1416;
  border-radius: 50%;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 33.33 24.02'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B isolation: isolate; %7D %3C/style%3E%3C/defs%3E%3Cg id='_' data-name=' ' class='cls-1'%3E%3Cg class='cls-1'%3E%3Cpath d='M13.81.99c0,.64-.08,1.12-.23,1.45-.15.33-.36.59-.61.78-.25.19-.55.36-.88.52-.33.15-.66.38-.99.69-.13.13-.32.32-.57.57-.25.25-.5.51-.74.76-.24.25-.46.48-.67.69-.2.2-.32.34-.34.42-.43.51-.81,1.09-1.14,1.73-.33.65-.5,1.3-.5,1.96,0,.15,0,.33.02.53.01.2.04.4.1.59.05.19.13.37.23.53.1.17.25.29.46.36.05.03.17.05.34.08.18.03.37.06.57.1s.39.07.57.1c.18.03.29.05.34.08.71.13,1.27.38,1.68.76.41.38.84.81,1.3,1.3.36.46.69.81.99,1.07s.57.62.8,1.11v1.3c0,.61-.04,1.14-.13,1.58-.09.45-.25.84-.48,1.18-.23.34-.53.64-.9.9s-.83.51-1.39.76c-.18.08-.41.17-.69.29-.28.11-.55.23-.82.34s-.52.22-.74.32c-.23.1-.37.17-.42.19h-.65c-.36,0-.86-.11-1.51-.32-.65-.22-1.31-.48-1.98-.8-.67-.32-1.28-.66-1.83-1.03-.55-.37-.91-.71-1.09-1.01-.03-.03-.06-.11-.11-.25-.05-.14-.11-.29-.17-.44-.06-.15-.13-.29-.19-.42-.06-.13-.1-.2-.1-.23-.08-.23-.19-.5-.34-.82-.15-.32-.31-.65-.46-.99-.15-.34-.28-.68-.38-1.01-.1-.33-.15-.62-.15-.88,0-.33.06-.65.17-.95.11-.3.17-.62.17-.95,0-.36-.06-.71-.17-1.05-.11-.34-.17-.69-.17-1.05,0-.51.01-.95.04-1.33.03-.38.1-.8.23-1.26.05-.05.11-.11.17-.17s.12-.1.17-.1c.38-.81.8-1.68,1.26-2.59s1-1.72,1.64-2.4c.1-.15.24-.31.42-.46.18-.15.35-.31.51-.48.17-.17.31-.35.42-.55.11-.2.17-.43.17-.69.05-.03.15-.06.31-.1.15-.04.31-.08.48-.13.17-.05.32-.1.46-.15.14-.05.25-.08.32-.08.05,0,.15-.01.3-.04.15-.02.31-.06.48-.09.17-.04.33-.07.5-.1.17-.02.27-.04.32-.04.02-.03.1-.06.21-.11.11-.05.23-.11.34-.17.11-.06.22-.12.32-.17.1-.05.15-.1.15-.15.1-.02.26-.06.48-.11.22-.05.44-.1.67-.15.23-.05.44-.1.63-.13.19-.04.32-.06.4-.06h1.79c.31.05.48.18.53.38.05.2.08.41.08.61ZM32.6.99c0,.64-.08,1.12-.23,1.45-.15.33-.36.59-.61.78-.25.19-.55.36-.88.52-.33.15-.66.38-.99.69-.13.13-.32.32-.57.57-.25.25-.5.51-.74.76-.24.25-.46.48-.67.69-.2.2-.32.34-.34.42-.43.51-.81,1.09-1.14,1.73-.33.65-.5,1.3-.5,1.96,0,.15,0,.33.02.53.01.2.04.4.1.59.05.19.13.37.23.53.1.17.25.29.46.36.05.03.17.05.34.08.18.03.37.06.57.1.2.04.39.07.57.1.18.03.29.05.34.08.71.13,1.27.38,1.68.76.41.38.84.81,1.3,1.3.36.46.69.81.99,1.07s.57.62.8,1.11v1.3c0,.61-.04,1.14-.13,1.58-.09.45-.25.84-.48,1.18-.23.34-.53.64-.9.9-.37.25-.83.51-1.39.76-.18.08-.41.17-.69.29-.28.11-.55.23-.82.34s-.51.22-.74.32c-.23.1-.37.17-.42.19h-.65c-.36,0-.86-.11-1.51-.32-.65-.22-1.31-.48-1.98-.8-.67-.32-1.28-.66-1.83-1.03-.55-.37-.91-.71-1.09-1.01,0-.03-.03-.11-.1-.25-.06-.14-.13-.29-.19-.44-.06-.15-.13-.29-.19-.42-.06-.13-.09-.2-.09-.23-.08-.23-.19-.5-.34-.82-.15-.32-.31-.65-.46-.99-.15-.34-.28-.68-.38-1.01s-.15-.62-.15-.88c0-.33.06-.65.17-.95.11-.3.17-.62.17-.95,0-.36-.06-.71-.17-1.05-.11-.34-.17-.69-.17-1.05,0-.51.01-.95.04-1.33.02-.38.1-.8.23-1.26.05-.05.11-.11.17-.17.06-.06.12-.1.17-.1.38-.81.8-1.68,1.26-2.59.46-.92,1-1.72,1.64-2.4.1-.15.24-.31.42-.46s.35-.31.52-.48c.16-.17.3-.35.42-.55.11-.2.17-.43.17-.69.05-.03.15-.06.31-.1.15-.04.31-.08.48-.13.16-.05.32-.1.46-.15.14-.05.25-.08.32-.08.05,0,.15-.01.3-.04.15-.02.31-.06.48-.09.17-.04.33-.07.5-.1.17-.02.27-.04.32-.04.03-.03.1-.06.21-.11s.23-.11.34-.17c.12-.06.22-.12.32-.17.1-.05.15-.1.15-.15.1-.02.26-.06.48-.11.22-.05.44-.1.67-.15s.44-.1.63-.13c.19-.04.32-.06.4-.06h1.79c.3.05.48.18.53.38.05.2.08.41.08.61Z' style='fill:%23F3B587' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50% auto;
}
.wp-block-pullquote blockquote {
  margin: 0;
  padding: 0;
  border: none;
  line-height: unset;
  font-size: 1.44rem;
  text-align: left;
}
.wp-block-pullquote cite {
  font-size: 1rem;
  text-transform: none;
}

.page-hero {
  clip-path: ellipse(120% 65% at 50% 35%);
}
@media (max-width: 768px) {
  .page-hero {
    clip-path: ellipse(245% 65% at 50% 35%);
  }
}
.page-hero:after {
  content: "";
  width: 100%;
  height: 100px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.6rem;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1314.43 33.72'%3E%3Cpath d='M543.74,26.76C380.77,24.51,218.2,17.81,55.54,4.83,37.02,3.35,18.51,1.47,0,0v6.11c18.51,1.47,37.02,3.35,55.54,4.83,162.66,12.98,325.23,19.68,488.21,21.94,237.09,3.28,473.79-2.88,709.87-21.5,20.27-1.6,40.55-3.56,60.81-5.26V0c-20.26,1.7-40.54,3.67-60.81,5.26-236.09,18.61-472.78,24.78-709.87,21.5Z' style='fill:%238F7E6F' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.wp-block-gallery.is-style-masonry {
  display: block;
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: var(--wp--preset--spacing--md, 1.5rem);
       column-gap: var(--wp--preset--spacing--md, 1.5rem);
}

.wp-block-gallery.is-style-masonry .wp-block-image,
.wp-block-gallery.is-style-masonry .blocks-gallery-item {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  page-break-inside: avoid;
  margin: 0 0 var(--wp--preset--spacing--md, 1.5rem);
}

.wp-block-gallery.is-style-masonry .wp-block-image img,
.wp-block-gallery.is-style-masonry .blocks-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .wp-block-gallery.is-style-masonry {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (max-width: 600px) {
  .wp-block-gallery.is-style-masonry {
    -moz-column-count: 1;
         column-count: 1;
  }
}
.archaeology-gallery-container {
  position: relative;
}
.archaeology-gallery-container:before, .archaeology-gallery-container:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 20%;
  z-index: 10;
  pointer-events: none;
}
.archaeology-gallery-container:before {
  background: white;
  background: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0) 100%);
  top: 0;
}
.archaeology-gallery-container:after {
  background: rgba(255, 255, 255, 0);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
  bottom: 0;
}
.archaeology-gallery-container .archaeology-gallery {
  max-height: 70vh;
  overflow: scroll;
}

.wp-block-accordion {
  background: rgb(254.4, 251.3, 249);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgb(251.4, 232.8, 219);
}
.wp-block-accordion h3 {
  font-size: 1rem;
  margin: 0;
}

.container, .container-small, .container.small, .small.container-large, .large.container-small, .small.container-small, .container-large, .container.large {
  width: 95%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.container-large, .container.large, .large.container-small, .large.container-large {
  max-width: 1700px;
}
.container-small, .container.small, .small.container-small, .small.container-large {
  max-width: 700px;
}

.row {
  position: relative;
  width: 100%;
  display: flex;
}
@media (max-width: 768px) {
  .row {
    flex-wrap: wrap;
  }
}
.row [class^=col-] {
  margin: 1.25%;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  width: 100%;
}

.col-1-sm {
  width: 6.8333333333%;
}

.col-2-sm {
  width: 15.1666666667%;
}

.col-3-sm {
  width: 23.5%;
}

.col-4-sm {
  width: 31.8333333333%;
}

.col-5-sm {
  width: 40.1666666667%;
}

.col-6-sm {
  width: 48.5%;
}

.col-7-sm {
  width: 56.8333333333%;
}

.col-8-sm {
  width: 65.1666666667%;
}

.col-9-sm {
  width: 73.5%;
}

.col-10-sm {
  width: 81.8333333333%;
}

.col-11-sm {
  width: 90.1666666667%;
}

.col-12-sm {
  width: 98.5%;
}

@media only screen and (min-width: 768px) {
  .col-1 {
    width: 8.3333333333%;
  }
  .col-2 {
    width: 16.6666666667%;
  }
  .col-3 {
    width: 25%;
  }
  .col-4 {
    width: 33.3333333333%;
  }
  .col-5 {
    width: 41.6666666667%;
  }
  .col-6 {
    width: 50%;
  }
  .col-7 {
    width: 58.3333333333%;
  }
  .col-8 {
    width: 66.6666666667%;
  }
  .col-9 {
    width: 75%;
  }
  .col-10 {
    width: 83.3333333333%;
  }
  .col-11 {
    width: 91.6666666667%;
  }
  .col-12 {
    width: 100%;
  }
}
.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

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

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

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

.text-sans-serif {
  font-family: "Lato", sans-serif;
}

.text-serif {
  font-family: "IM FELL DW Pica", serif;
}

.text-accent {
  font-family: "IM FELL DW Pica SC", serif;
}

.text-weight-100 {
  font-weight: 100;
}

.text-weight-200 {
  font-weight: 200;
}

.text-weight-300 {
  font-weight: 300;
}

.text-weight-400 {
  font-weight: 400;
}

.text-weight-500 {
  font-weight: 500;
}

.text-weight-600 {
  font-weight: 600;
}

.text-weight-700 {
  font-weight: 700;
}

.text-weight-800 {
  font-weight: 800;
}

.text-weight-900 {
  font-weight: 900;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.has-text-xs-font-size,
.text-size-xs {
  font-size: 0.69rem;
}

.has-text-sm-font-size,
.text-size-sm {
  font-size: 0.83rem;
}

.has-text-md-font-size,
.text-size-md {
  font-size: 1rem;
}

.has-text-lg-font-size,
.text-size-lg {
  font-size: 1.2rem;
}

.has-text-xl-font-size,
.text-size-xl {
  font-size: 1.44rem;
}

.has-text-2xl-font-size,
.text-size-2xl {
  font-size: 1.73rem;
}

.has-text-3xl-font-size,
.text-size-3xl {
  font-size: 2.07rem;
}

.has-text-4xl-font-size,
.text-size-4xl {
  font-size: 2.49rem;
}

.has-text-5xl-font-size,
.text-size-5xl {
  font-size: 2.99rem;
}

.has-text-6xl-font-size,
.text-size-6xl {
  font-size: 3.55rem;
}

.text-shadow {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.clear {
  clear: both;
  width: 100%;
  float: none;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

@media (max-width: 768px) {
  .float-none-mobile {
    float: none;
  }
}

.clear-fix {
  clear: both !important;
}
.clear-fix:after {
  content: "";
  display: table;
  width: 100%;
  clear: both;
}

.display-block {
  display: block;
}

.display-inline {
  display: inline;
}

.display-inline-block {
  display: inline-block;
}

.display-flex {
  display: flex;
}

.block-center {
  margin-left: auto;
  margin-right: auto;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

.position-relative {
  position: relative;
}

/*
This .scss loop will create "margin helpers" and "padding helpers" for use in your web projects.

It will generate several classes such as:

.m-r-10 which gives margin-right 10 pixels.
.m-r-15 gives MARGIN to the RIGHT 15 pixels.
.m-t-15 gives MARGIN to the TOP 15 pixels and so on.
.p-b-5 gives PADDING to the BOTTOM of 5 pixels
.p-l-40 gives PADDING to the LEFT of 40 pixels

The first letter is "m" or "p" for MARGIN or PADDING
Second letter is "t", "b", "l", or "r" for TOP, BOTTOM, LEFT, or RIGHT
Third letter is the number of spacing in pixels. Adjust the amounts generated by editing the $spaceamounts variable below.

*/
.m-t-0 {
  margin-top: 0px !important;
}

.p-t-0 {
  padding-top: 0px !important;
}

@media (max-width: 768px) {
  .m-t-0-sm {
    margin-top: 0px !important;
  }
  .p-t-0-sm {
    padding-top: 0px !important;
  }
}
.m-b-0 {
  margin-bottom: 0px !important;
}

.p-b-0 {
  padding-bottom: 0px !important;
}

@media (max-width: 768px) {
  .m-b-0-sm {
    margin-bottom: 0px !important;
  }
  .p-b-0-sm {
    padding-bottom: 0px !important;
  }
}
.m-l-0 {
  margin-left: 0px !important;
}

.p-l-0 {
  padding-left: 0px !important;
}

@media (max-width: 768px) {
  .m-l-0-sm {
    margin-left: 0px !important;
  }
  .p-l-0-sm {
    padding-left: 0px !important;
  }
}
.m-r-0 {
  margin-right: 0px !important;
}

.p-r-0 {
  padding-right: 0px !important;
}

@media (max-width: 768px) {
  .m-r-0-sm {
    margin-right: 0px !important;
  }
  .p-r-0-sm {
    padding-right: 0px !important;
  }
}
.m-t-5 {
  margin-top: 5px !important;
}

.p-t-5 {
  padding-top: 5px !important;
}

@media (max-width: 768px) {
  .m-t-5-sm {
    margin-top: 5px !important;
  }
  .p-t-5-sm {
    padding-top: 5px !important;
  }
}
.m-b-5 {
  margin-bottom: 5px !important;
}

.p-b-5 {
  padding-bottom: 5px !important;
}

@media (max-width: 768px) {
  .m-b-5-sm {
    margin-bottom: 5px !important;
  }
  .p-b-5-sm {
    padding-bottom: 5px !important;
  }
}
.m-l-5 {
  margin-left: 5px !important;
}

.p-l-5 {
  padding-left: 5px !important;
}

@media (max-width: 768px) {
  .m-l-5-sm {
    margin-left: 5px !important;
  }
  .p-l-5-sm {
    padding-left: 5px !important;
  }
}
.m-r-5 {
  margin-right: 5px !important;
}

.p-r-5 {
  padding-right: 5px !important;
}

@media (max-width: 768px) {
  .m-r-5-sm {
    margin-right: 5px !important;
  }
  .p-r-5-sm {
    padding-right: 5px !important;
  }
}
.m-t-10 {
  margin-top: 10px !important;
}

.p-t-10 {
  padding-top: 10px !important;
}

@media (max-width: 768px) {
  .m-t-10-sm {
    margin-top: 10px !important;
  }
  .p-t-10-sm {
    padding-top: 10px !important;
  }
}
.m-b-10 {
  margin-bottom: 10px !important;
}

.p-b-10 {
  padding-bottom: 10px !important;
}

@media (max-width: 768px) {
  .m-b-10-sm {
    margin-bottom: 10px !important;
  }
  .p-b-10-sm {
    padding-bottom: 10px !important;
  }
}
.m-l-10 {
  margin-left: 10px !important;
}

.p-l-10 {
  padding-left: 10px !important;
}

@media (max-width: 768px) {
  .m-l-10-sm {
    margin-left: 10px !important;
  }
  .p-l-10-sm {
    padding-left: 10px !important;
  }
}
.m-r-10 {
  margin-right: 10px !important;
}

.p-r-10 {
  padding-right: 10px !important;
}

@media (max-width: 768px) {
  .m-r-10-sm {
    margin-right: 10px !important;
  }
  .p-r-10-sm {
    padding-right: 10px !important;
  }
}
.m-t-15 {
  margin-top: 15px !important;
}

.p-t-15 {
  padding-top: 15px !important;
}

@media (max-width: 768px) {
  .m-t-15-sm {
    margin-top: 15px !important;
  }
  .p-t-15-sm {
    padding-top: 15px !important;
  }
}
.m-b-15 {
  margin-bottom: 15px !important;
}

.p-b-15 {
  padding-bottom: 15px !important;
}

@media (max-width: 768px) {
  .m-b-15-sm {
    margin-bottom: 15px !important;
  }
  .p-b-15-sm {
    padding-bottom: 15px !important;
  }
}
.m-l-15 {
  margin-left: 15px !important;
}

.p-l-15 {
  padding-left: 15px !important;
}

@media (max-width: 768px) {
  .m-l-15-sm {
    margin-left: 15px !important;
  }
  .p-l-15-sm {
    padding-left: 15px !important;
  }
}
.m-r-15 {
  margin-right: 15px !important;
}

.p-r-15 {
  padding-right: 15px !important;
}

@media (max-width: 768px) {
  .m-r-15-sm {
    margin-right: 15px !important;
  }
  .p-r-15-sm {
    padding-right: 15px !important;
  }
}
.m-t-20 {
  margin-top: 20px !important;
}

.p-t-20 {
  padding-top: 20px !important;
}

@media (max-width: 768px) {
  .m-t-20-sm {
    margin-top: 20px !important;
  }
  .p-t-20-sm {
    padding-top: 20px !important;
  }
}
.m-b-20 {
  margin-bottom: 20px !important;
}

.p-b-20 {
  padding-bottom: 20px !important;
}

@media (max-width: 768px) {
  .m-b-20-sm {
    margin-bottom: 20px !important;
  }
  .p-b-20-sm {
    padding-bottom: 20px !important;
  }
}
.m-l-20 {
  margin-left: 20px !important;
}

.p-l-20 {
  padding-left: 20px !important;
}

@media (max-width: 768px) {
  .m-l-20-sm {
    margin-left: 20px !important;
  }
  .p-l-20-sm {
    padding-left: 20px !important;
  }
}
.m-r-20 {
  margin-right: 20px !important;
}

.p-r-20 {
  padding-right: 20px !important;
}

@media (max-width: 768px) {
  .m-r-20-sm {
    margin-right: 20px !important;
  }
  .p-r-20-sm {
    padding-right: 20px !important;
  }
}
.m-t-25 {
  margin-top: 25px !important;
}

.p-t-25 {
  padding-top: 25px !important;
}

@media (max-width: 768px) {
  .m-t-25-sm {
    margin-top: 25px !important;
  }
  .p-t-25-sm {
    padding-top: 25px !important;
  }
}
.m-b-25 {
  margin-bottom: 25px !important;
}

.p-b-25 {
  padding-bottom: 25px !important;
}

@media (max-width: 768px) {
  .m-b-25-sm {
    margin-bottom: 25px !important;
  }
  .p-b-25-sm {
    padding-bottom: 25px !important;
  }
}
.m-l-25 {
  margin-left: 25px !important;
}

.p-l-25 {
  padding-left: 25px !important;
}

@media (max-width: 768px) {
  .m-l-25-sm {
    margin-left: 25px !important;
  }
  .p-l-25-sm {
    padding-left: 25px !important;
  }
}
.m-r-25 {
  margin-right: 25px !important;
}

.p-r-25 {
  padding-right: 25px !important;
}

@media (max-width: 768px) {
  .m-r-25-sm {
    margin-right: 25px !important;
  }
  .p-r-25-sm {
    padding-right: 25px !important;
  }
}
.m-t-30 {
  margin-top: 30px !important;
}

.p-t-30 {
  padding-top: 30px !important;
}

@media (max-width: 768px) {
  .m-t-30-sm {
    margin-top: 30px !important;
  }
  .p-t-30-sm {
    padding-top: 30px !important;
  }
}
.m-b-30 {
  margin-bottom: 30px !important;
}

.p-b-30 {
  padding-bottom: 30px !important;
}

@media (max-width: 768px) {
  .m-b-30-sm {
    margin-bottom: 30px !important;
  }
  .p-b-30-sm {
    padding-bottom: 30px !important;
  }
}
.m-l-30 {
  margin-left: 30px !important;
}

.p-l-30 {
  padding-left: 30px !important;
}

@media (max-width: 768px) {
  .m-l-30-sm {
    margin-left: 30px !important;
  }
  .p-l-30-sm {
    padding-left: 30px !important;
  }
}
.m-r-30 {
  margin-right: 30px !important;
}

.p-r-30 {
  padding-right: 30px !important;
}

@media (max-width: 768px) {
  .m-r-30-sm {
    margin-right: 30px !important;
  }
  .p-r-30-sm {
    padding-right: 30px !important;
  }
}
.m-t-35 {
  margin-top: 35px !important;
}

.p-t-35 {
  padding-top: 35px !important;
}

@media (max-width: 768px) {
  .m-t-35-sm {
    margin-top: 35px !important;
  }
  .p-t-35-sm {
    padding-top: 35px !important;
  }
}
.m-b-35 {
  margin-bottom: 35px !important;
}

.p-b-35 {
  padding-bottom: 35px !important;
}

@media (max-width: 768px) {
  .m-b-35-sm {
    margin-bottom: 35px !important;
  }
  .p-b-35-sm {
    padding-bottom: 35px !important;
  }
}
.m-l-35 {
  margin-left: 35px !important;
}

.p-l-35 {
  padding-left: 35px !important;
}

@media (max-width: 768px) {
  .m-l-35-sm {
    margin-left: 35px !important;
  }
  .p-l-35-sm {
    padding-left: 35px !important;
  }
}
.m-r-35 {
  margin-right: 35px !important;
}

.p-r-35 {
  padding-right: 35px !important;
}

@media (max-width: 768px) {
  .m-r-35-sm {
    margin-right: 35px !important;
  }
  .p-r-35-sm {
    padding-right: 35px !important;
  }
}
.m-t-40 {
  margin-top: 40px !important;
}

.p-t-40 {
  padding-top: 40px !important;
}

@media (max-width: 768px) {
  .m-t-40-sm {
    margin-top: 40px !important;
  }
  .p-t-40-sm {
    padding-top: 40px !important;
  }
}
.m-b-40 {
  margin-bottom: 40px !important;
}

.p-b-40 {
  padding-bottom: 40px !important;
}

@media (max-width: 768px) {
  .m-b-40-sm {
    margin-bottom: 40px !important;
  }
  .p-b-40-sm {
    padding-bottom: 40px !important;
  }
}
.m-l-40 {
  margin-left: 40px !important;
}

.p-l-40 {
  padding-left: 40px !important;
}

@media (max-width: 768px) {
  .m-l-40-sm {
    margin-left: 40px !important;
  }
  .p-l-40-sm {
    padding-left: 40px !important;
  }
}
.m-r-40 {
  margin-right: 40px !important;
}

.p-r-40 {
  padding-right: 40px !important;
}

@media (max-width: 768px) {
  .m-r-40-sm {
    margin-right: 40px !important;
  }
  .p-r-40-sm {
    padding-right: 40px !important;
  }
}
.m-t-45 {
  margin-top: 45px !important;
}

.p-t-45 {
  padding-top: 45px !important;
}

@media (max-width: 768px) {
  .m-t-45-sm {
    margin-top: 45px !important;
  }
  .p-t-45-sm {
    padding-top: 45px !important;
  }
}
.m-b-45 {
  margin-bottom: 45px !important;
}

.p-b-45 {
  padding-bottom: 45px !important;
}

@media (max-width: 768px) {
  .m-b-45-sm {
    margin-bottom: 45px !important;
  }
  .p-b-45-sm {
    padding-bottom: 45px !important;
  }
}
.m-l-45 {
  margin-left: 45px !important;
}

.p-l-45 {
  padding-left: 45px !important;
}

@media (max-width: 768px) {
  .m-l-45-sm {
    margin-left: 45px !important;
  }
  .p-l-45-sm {
    padding-left: 45px !important;
  }
}
.m-r-45 {
  margin-right: 45px !important;
}

.p-r-45 {
  padding-right: 45px !important;
}

@media (max-width: 768px) {
  .m-r-45-sm {
    margin-right: 45px !important;
  }
  .p-r-45-sm {
    padding-right: 45px !important;
  }
}
.m-t-50 {
  margin-top: 50px !important;
}

.p-t-50 {
  padding-top: 50px !important;
}

@media (max-width: 768px) {
  .m-t-50-sm {
    margin-top: 50px !important;
  }
  .p-t-50-sm {
    padding-top: 50px !important;
  }
}
.m-b-50 {
  margin-bottom: 50px !important;
}

.p-b-50 {
  padding-bottom: 50px !important;
}

@media (max-width: 768px) {
  .m-b-50-sm {
    margin-bottom: 50px !important;
  }
  .p-b-50-sm {
    padding-bottom: 50px !important;
  }
}
.m-l-50 {
  margin-left: 50px !important;
}

.p-l-50 {
  padding-left: 50px !important;
}

@media (max-width: 768px) {
  .m-l-50-sm {
    margin-left: 50px !important;
  }
  .p-l-50-sm {
    padding-left: 50px !important;
  }
}
.m-r-50 {
  margin-right: 50px !important;
}

.p-r-50 {
  padding-right: 50px !important;
}

@media (max-width: 768px) {
  .m-r-50-sm {
    margin-right: 50px !important;
  }
  .p-r-50-sm {
    padding-right: 50px !important;
  }
}
.m-t-55 {
  margin-top: 55px !important;
}

.p-t-55 {
  padding-top: 55px !important;
}

@media (max-width: 768px) {
  .m-t-55-sm {
    margin-top: 55px !important;
  }
  .p-t-55-sm {
    padding-top: 55px !important;
  }
}
.m-b-55 {
  margin-bottom: 55px !important;
}

.p-b-55 {
  padding-bottom: 55px !important;
}

@media (max-width: 768px) {
  .m-b-55-sm {
    margin-bottom: 55px !important;
  }
  .p-b-55-sm {
    padding-bottom: 55px !important;
  }
}
.m-l-55 {
  margin-left: 55px !important;
}

.p-l-55 {
  padding-left: 55px !important;
}

@media (max-width: 768px) {
  .m-l-55-sm {
    margin-left: 55px !important;
  }
  .p-l-55-sm {
    padding-left: 55px !important;
  }
}
.m-r-55 {
  margin-right: 55px !important;
}

.p-r-55 {
  padding-right: 55px !important;
}

@media (max-width: 768px) {
  .m-r-55-sm {
    margin-right: 55px !important;
  }
  .p-r-55-sm {
    padding-right: 55px !important;
  }
}
.m-t-60 {
  margin-top: 60px !important;
}

.p-t-60 {
  padding-top: 60px !important;
}

@media (max-width: 768px) {
  .m-t-60-sm {
    margin-top: 60px !important;
  }
  .p-t-60-sm {
    padding-top: 60px !important;
  }
}
.m-b-60 {
  margin-bottom: 60px !important;
}

.p-b-60 {
  padding-bottom: 60px !important;
}

@media (max-width: 768px) {
  .m-b-60-sm {
    margin-bottom: 60px !important;
  }
  .p-b-60-sm {
    padding-bottom: 60px !important;
  }
}
.m-l-60 {
  margin-left: 60px !important;
}

.p-l-60 {
  padding-left: 60px !important;
}

@media (max-width: 768px) {
  .m-l-60-sm {
    margin-left: 60px !important;
  }
  .p-l-60-sm {
    padding-left: 60px !important;
  }
}
.m-r-60 {
  margin-right: 60px !important;
}

.p-r-60 {
  padding-right: 60px !important;
}

@media (max-width: 768px) {
  .m-r-60-sm {
    margin-right: 60px !important;
  }
  .p-r-60-sm {
    padding-right: 60px !important;
  }
}
.m-t-65 {
  margin-top: 65px !important;
}

.p-t-65 {
  padding-top: 65px !important;
}

@media (max-width: 768px) {
  .m-t-65-sm {
    margin-top: 65px !important;
  }
  .p-t-65-sm {
    padding-top: 65px !important;
  }
}
.m-b-65 {
  margin-bottom: 65px !important;
}

.p-b-65 {
  padding-bottom: 65px !important;
}

@media (max-width: 768px) {
  .m-b-65-sm {
    margin-bottom: 65px !important;
  }
  .p-b-65-sm {
    padding-bottom: 65px !important;
  }
}
.m-l-65 {
  margin-left: 65px !important;
}

.p-l-65 {
  padding-left: 65px !important;
}

@media (max-width: 768px) {
  .m-l-65-sm {
    margin-left: 65px !important;
  }
  .p-l-65-sm {
    padding-left: 65px !important;
  }
}
.m-r-65 {
  margin-right: 65px !important;
}

.p-r-65 {
  padding-right: 65px !important;
}

@media (max-width: 768px) {
  .m-r-65-sm {
    margin-right: 65px !important;
  }
  .p-r-65-sm {
    padding-right: 65px !important;
  }
}
.m-t-70 {
  margin-top: 70px !important;
}

.p-t-70 {
  padding-top: 70px !important;
}

@media (max-width: 768px) {
  .m-t-70-sm {
    margin-top: 70px !important;
  }
  .p-t-70-sm {
    padding-top: 70px !important;
  }
}
.m-b-70 {
  margin-bottom: 70px !important;
}

.p-b-70 {
  padding-bottom: 70px !important;
}

@media (max-width: 768px) {
  .m-b-70-sm {
    margin-bottom: 70px !important;
  }
  .p-b-70-sm {
    padding-bottom: 70px !important;
  }
}
.m-l-70 {
  margin-left: 70px !important;
}

.p-l-70 {
  padding-left: 70px !important;
}

@media (max-width: 768px) {
  .m-l-70-sm {
    margin-left: 70px !important;
  }
  .p-l-70-sm {
    padding-left: 70px !important;
  }
}
.m-r-70 {
  margin-right: 70px !important;
}

.p-r-70 {
  padding-right: 70px !important;
}

@media (max-width: 768px) {
  .m-r-70-sm {
    margin-right: 70px !important;
  }
  .p-r-70-sm {
    padding-right: 70px !important;
  }
}
.m-t-75 {
  margin-top: 75px !important;
}

.p-t-75 {
  padding-top: 75px !important;
}

@media (max-width: 768px) {
  .m-t-75-sm {
    margin-top: 75px !important;
  }
  .p-t-75-sm {
    padding-top: 75px !important;
  }
}
.m-b-75 {
  margin-bottom: 75px !important;
}

.p-b-75 {
  padding-bottom: 75px !important;
}

@media (max-width: 768px) {
  .m-b-75-sm {
    margin-bottom: 75px !important;
  }
  .p-b-75-sm {
    padding-bottom: 75px !important;
  }
}
.m-l-75 {
  margin-left: 75px !important;
}

.p-l-75 {
  padding-left: 75px !important;
}

@media (max-width: 768px) {
  .m-l-75-sm {
    margin-left: 75px !important;
  }
  .p-l-75-sm {
    padding-left: 75px !important;
  }
}
.m-r-75 {
  margin-right: 75px !important;
}

.p-r-75 {
  padding-right: 75px !important;
}

@media (max-width: 768px) {
  .m-r-75-sm {
    margin-right: 75px !important;
  }
  .p-r-75-sm {
    padding-right: 75px !important;
  }
}
.m-t-80 {
  margin-top: 80px !important;
}

.p-t-80 {
  padding-top: 80px !important;
}

@media (max-width: 768px) {
  .m-t-80-sm {
    margin-top: 80px !important;
  }
  .p-t-80-sm {
    padding-top: 80px !important;
  }
}
.m-b-80 {
  margin-bottom: 80px !important;
}

.p-b-80 {
  padding-bottom: 80px !important;
}

@media (max-width: 768px) {
  .m-b-80-sm {
    margin-bottom: 80px !important;
  }
  .p-b-80-sm {
    padding-bottom: 80px !important;
  }
}
.m-l-80 {
  margin-left: 80px !important;
}

.p-l-80 {
  padding-left: 80px !important;
}

@media (max-width: 768px) {
  .m-l-80-sm {
    margin-left: 80px !important;
  }
  .p-l-80-sm {
    padding-left: 80px !important;
  }
}
.m-r-80 {
  margin-right: 80px !important;
}

.p-r-80 {
  padding-right: 80px !important;
}

@media (max-width: 768px) {
  .m-r-80-sm {
    margin-right: 80px !important;
  }
  .p-r-80-sm {
    padding-right: 80px !important;
  }
}
.m-t-85 {
  margin-top: 85px !important;
}

.p-t-85 {
  padding-top: 85px !important;
}

@media (max-width: 768px) {
  .m-t-85-sm {
    margin-top: 85px !important;
  }
  .p-t-85-sm {
    padding-top: 85px !important;
  }
}
.m-b-85 {
  margin-bottom: 85px !important;
}

.p-b-85 {
  padding-bottom: 85px !important;
}

@media (max-width: 768px) {
  .m-b-85-sm {
    margin-bottom: 85px !important;
  }
  .p-b-85-sm {
    padding-bottom: 85px !important;
  }
}
.m-l-85 {
  margin-left: 85px !important;
}

.p-l-85 {
  padding-left: 85px !important;
}

@media (max-width: 768px) {
  .m-l-85-sm {
    margin-left: 85px !important;
  }
  .p-l-85-sm {
    padding-left: 85px !important;
  }
}
.m-r-85 {
  margin-right: 85px !important;
}

.p-r-85 {
  padding-right: 85px !important;
}

@media (max-width: 768px) {
  .m-r-85-sm {
    margin-right: 85px !important;
  }
  .p-r-85-sm {
    padding-right: 85px !important;
  }
}
.m-t-90 {
  margin-top: 90px !important;
}

.p-t-90 {
  padding-top: 90px !important;
}

@media (max-width: 768px) {
  .m-t-90-sm {
    margin-top: 90px !important;
  }
  .p-t-90-sm {
    padding-top: 90px !important;
  }
}
.m-b-90 {
  margin-bottom: 90px !important;
}

.p-b-90 {
  padding-bottom: 90px !important;
}

@media (max-width: 768px) {
  .m-b-90-sm {
    margin-bottom: 90px !important;
  }
  .p-b-90-sm {
    padding-bottom: 90px !important;
  }
}
.m-l-90 {
  margin-left: 90px !important;
}

.p-l-90 {
  padding-left: 90px !important;
}

@media (max-width: 768px) {
  .m-l-90-sm {
    margin-left: 90px !important;
  }
  .p-l-90-sm {
    padding-left: 90px !important;
  }
}
.m-r-90 {
  margin-right: 90px !important;
}

.p-r-90 {
  padding-right: 90px !important;
}

@media (max-width: 768px) {
  .m-r-90-sm {
    margin-right: 90px !important;
  }
  .p-r-90-sm {
    padding-right: 90px !important;
  }
}
.m-t-95 {
  margin-top: 95px !important;
}

.p-t-95 {
  padding-top: 95px !important;
}

@media (max-width: 768px) {
  .m-t-95-sm {
    margin-top: 95px !important;
  }
  .p-t-95-sm {
    padding-top: 95px !important;
  }
}
.m-b-95 {
  margin-bottom: 95px !important;
}

.p-b-95 {
  padding-bottom: 95px !important;
}

@media (max-width: 768px) {
  .m-b-95-sm {
    margin-bottom: 95px !important;
  }
  .p-b-95-sm {
    padding-bottom: 95px !important;
  }
}
.m-l-95 {
  margin-left: 95px !important;
}

.p-l-95 {
  padding-left: 95px !important;
}

@media (max-width: 768px) {
  .m-l-95-sm {
    margin-left: 95px !important;
  }
  .p-l-95-sm {
    padding-left: 95px !important;
  }
}
.m-r-95 {
  margin-right: 95px !important;
}

.p-r-95 {
  padding-right: 95px !important;
}

@media (max-width: 768px) {
  .m-r-95-sm {
    margin-right: 95px !important;
  }
  .p-r-95-sm {
    padding-right: 95px !important;
  }
}
.m-t-100 {
  margin-top: 100px !important;
}

.p-t-100 {
  padding-top: 100px !important;
}

@media (max-width: 768px) {
  .m-t-100-sm {
    margin-top: 100px !important;
  }
  .p-t-100-sm {
    padding-top: 100px !important;
  }
}
.m-b-100 {
  margin-bottom: 100px !important;
}

.p-b-100 {
  padding-bottom: 100px !important;
}

@media (max-width: 768px) {
  .m-b-100-sm {
    margin-bottom: 100px !important;
  }
  .p-b-100-sm {
    padding-bottom: 100px !important;
  }
}
.m-l-100 {
  margin-left: 100px !important;
}

.p-l-100 {
  padding-left: 100px !important;
}

@media (max-width: 768px) {
  .m-l-100-sm {
    margin-left: 100px !important;
  }
  .p-l-100-sm {
    padding-left: 100px !important;
  }
}
.m-r-100 {
  margin-right: 100px !important;
}

.p-r-100 {
  padding-right: 100px !important;
}

@media (max-width: 768px) {
  .m-r-100-sm {
    margin-right: 100px !important;
  }
  .p-r-100-sm {
    padding-right: 100px !important;
  }
}
.m-t-125 {
  margin-top: 125px !important;
}

.p-t-125 {
  padding-top: 125px !important;
}

@media (max-width: 768px) {
  .m-t-125-sm {
    margin-top: 125px !important;
  }
  .p-t-125-sm {
    padding-top: 125px !important;
  }
}
.m-b-125 {
  margin-bottom: 125px !important;
}

.p-b-125 {
  padding-bottom: 125px !important;
}

@media (max-width: 768px) {
  .m-b-125-sm {
    margin-bottom: 125px !important;
  }
  .p-b-125-sm {
    padding-bottom: 125px !important;
  }
}
.m-l-125 {
  margin-left: 125px !important;
}

.p-l-125 {
  padding-left: 125px !important;
}

@media (max-width: 768px) {
  .m-l-125-sm {
    margin-left: 125px !important;
  }
  .p-l-125-sm {
    padding-left: 125px !important;
  }
}
.m-r-125 {
  margin-right: 125px !important;
}

.p-r-125 {
  padding-right: 125px !important;
}

@media (max-width: 768px) {
  .m-r-125-sm {
    margin-right: 125px !important;
  }
  .p-r-125-sm {
    padding-right: 125px !important;
  }
}
.m-t-150 {
  margin-top: 150px !important;
}

.p-t-150 {
  padding-top: 150px !important;
}

@media (max-width: 768px) {
  .m-t-150-sm {
    margin-top: 150px !important;
  }
  .p-t-150-sm {
    padding-top: 150px !important;
  }
}
.m-b-150 {
  margin-bottom: 150px !important;
}

.p-b-150 {
  padding-bottom: 150px !important;
}

@media (max-width: 768px) {
  .m-b-150-sm {
    margin-bottom: 150px !important;
  }
  .p-b-150-sm {
    padding-bottom: 150px !important;
  }
}
.m-l-150 {
  margin-left: 150px !important;
}

.p-l-150 {
  padding-left: 150px !important;
}

@media (max-width: 768px) {
  .m-l-150-sm {
    margin-left: 150px !important;
  }
  .p-l-150-sm {
    padding-left: 150px !important;
  }
}
.m-r-150 {
  margin-right: 150px !important;
}

.p-r-150 {
  padding-right: 150px !important;
}

@media (max-width: 768px) {
  .m-r-150-sm {
    margin-right: 150px !important;
  }
  .p-r-150-sm {
    padding-right: 150px !important;
  }
}
.m-t-175 {
  margin-top: 175px !important;
}

.p-t-175 {
  padding-top: 175px !important;
}

@media (max-width: 768px) {
  .m-t-175-sm {
    margin-top: 175px !important;
  }
  .p-t-175-sm {
    padding-top: 175px !important;
  }
}
.m-b-175 {
  margin-bottom: 175px !important;
}

.p-b-175 {
  padding-bottom: 175px !important;
}

@media (max-width: 768px) {
  .m-b-175-sm {
    margin-bottom: 175px !important;
  }
  .p-b-175-sm {
    padding-bottom: 175px !important;
  }
}
.m-l-175 {
  margin-left: 175px !important;
}

.p-l-175 {
  padding-left: 175px !important;
}

@media (max-width: 768px) {
  .m-l-175-sm {
    margin-left: 175px !important;
  }
  .p-l-175-sm {
    padding-left: 175px !important;
  }
}
.m-r-175 {
  margin-right: 175px !important;
}

.p-r-175 {
  padding-right: 175px !important;
}

@media (max-width: 768px) {
  .m-r-175-sm {
    margin-right: 175px !important;
  }
  .p-r-175-sm {
    padding-right: 175px !important;
  }
}
.m-t-200 {
  margin-top: 200px !important;
}

.p-t-200 {
  padding-top: 200px !important;
}

@media (max-width: 768px) {
  .m-t-200-sm {
    margin-top: 200px !important;
  }
  .p-t-200-sm {
    padding-top: 200px !important;
  }
}
.m-b-200 {
  margin-bottom: 200px !important;
}

.p-b-200 {
  padding-bottom: 200px !important;
}

@media (max-width: 768px) {
  .m-b-200-sm {
    margin-bottom: 200px !important;
  }
  .p-b-200-sm {
    padding-bottom: 200px !important;
  }
}
.m-l-200 {
  margin-left: 200px !important;
}

.p-l-200 {
  padding-left: 200px !important;
}

@media (max-width: 768px) {
  .m-l-200-sm {
    margin-left: 200px !important;
  }
  .p-l-200-sm {
    padding-left: 200px !important;
  }
}
.m-r-200 {
  margin-right: 200px !important;
}

.p-r-200 {
  padding-right: 200px !important;
}

@media (max-width: 768px) {
  .m-r-200-sm {
    margin-right: 200px !important;
  }
  .p-r-200-sm {
    padding-right: 200px !important;
  }
}
.m-0 {
  margin: 0px !important;
}

.p-0 {
  padding: 0px !important;
}

@media (max-width: 768px) {
  .m-0-sm {
    margin: 0px !important;
  }
  .p-0-sm {
    padding: 0px !important;
  }
}
.m-5 {
  margin: 5px !important;
}

.p-5 {
  padding: 5px !important;
}

@media (max-width: 768px) {
  .m-5-sm {
    margin: 5px !important;
  }
  .p-5-sm {
    padding: 5px !important;
  }
}
.m-10 {
  margin: 10px !important;
}

.p-10 {
  padding: 10px !important;
}

@media (max-width: 768px) {
  .m-10-sm {
    margin: 10px !important;
  }
  .p-10-sm {
    padding: 10px !important;
  }
}
.m-15 {
  margin: 15px !important;
}

.p-15 {
  padding: 15px !important;
}

@media (max-width: 768px) {
  .m-15-sm {
    margin: 15px !important;
  }
  .p-15-sm {
    padding: 15px !important;
  }
}
.m-20 {
  margin: 20px !important;
}

.p-20 {
  padding: 20px !important;
}

@media (max-width: 768px) {
  .m-20-sm {
    margin: 20px !important;
  }
  .p-20-sm {
    padding: 20px !important;
  }
}
.m-25 {
  margin: 25px !important;
}

.p-25 {
  padding: 25px !important;
}

@media (max-width: 768px) {
  .m-25-sm {
    margin: 25px !important;
  }
  .p-25-sm {
    padding: 25px !important;
  }
}
.m-30 {
  margin: 30px !important;
}

.p-30 {
  padding: 30px !important;
}

@media (max-width: 768px) {
  .m-30-sm {
    margin: 30px !important;
  }
  .p-30-sm {
    padding: 30px !important;
  }
}
.m-35 {
  margin: 35px !important;
}

.p-35 {
  padding: 35px !important;
}

@media (max-width: 768px) {
  .m-35-sm {
    margin: 35px !important;
  }
  .p-35-sm {
    padding: 35px !important;
  }
}
.m-40 {
  margin: 40px !important;
}

.p-40 {
  padding: 40px !important;
}

@media (max-width: 768px) {
  .m-40-sm {
    margin: 40px !important;
  }
  .p-40-sm {
    padding: 40px !important;
  }
}
.m-45 {
  margin: 45px !important;
}

.p-45 {
  padding: 45px !important;
}

@media (max-width: 768px) {
  .m-45-sm {
    margin: 45px !important;
  }
  .p-45-sm {
    padding: 45px !important;
  }
}
.m-50 {
  margin: 50px !important;
}

.p-50 {
  padding: 50px !important;
}

@media (max-width: 768px) {
  .m-50-sm {
    margin: 50px !important;
  }
  .p-50-sm {
    padding: 50px !important;
  }
}
.m-55 {
  margin: 55px !important;
}

.p-55 {
  padding: 55px !important;
}

@media (max-width: 768px) {
  .m-55-sm {
    margin: 55px !important;
  }
  .p-55-sm {
    padding: 55px !important;
  }
}
.m-60 {
  margin: 60px !important;
}

.p-60 {
  padding: 60px !important;
}

@media (max-width: 768px) {
  .m-60-sm {
    margin: 60px !important;
  }
  .p-60-sm {
    padding: 60px !important;
  }
}
.m-65 {
  margin: 65px !important;
}

.p-65 {
  padding: 65px !important;
}

@media (max-width: 768px) {
  .m-65-sm {
    margin: 65px !important;
  }
  .p-65-sm {
    padding: 65px !important;
  }
}
.m-70 {
  margin: 70px !important;
}

.p-70 {
  padding: 70px !important;
}

@media (max-width: 768px) {
  .m-70-sm {
    margin: 70px !important;
  }
  .p-70-sm {
    padding: 70px !important;
  }
}
.m-75 {
  margin: 75px !important;
}

.p-75 {
  padding: 75px !important;
}

@media (max-width: 768px) {
  .m-75-sm {
    margin: 75px !important;
  }
  .p-75-sm {
    padding: 75px !important;
  }
}
.m-80 {
  margin: 80px !important;
}

.p-80 {
  padding: 80px !important;
}

@media (max-width: 768px) {
  .m-80-sm {
    margin: 80px !important;
  }
  .p-80-sm {
    padding: 80px !important;
  }
}
.m-85 {
  margin: 85px !important;
}

.p-85 {
  padding: 85px !important;
}

@media (max-width: 768px) {
  .m-85-sm {
    margin: 85px !important;
  }
  .p-85-sm {
    padding: 85px !important;
  }
}
.m-90 {
  margin: 90px !important;
}

.p-90 {
  padding: 90px !important;
}

@media (max-width: 768px) {
  .m-90-sm {
    margin: 90px !important;
  }
  .p-90-sm {
    padding: 90px !important;
  }
}
.m-95 {
  margin: 95px !important;
}

.p-95 {
  padding: 95px !important;
}

@media (max-width: 768px) {
  .m-95-sm {
    margin: 95px !important;
  }
  .p-95-sm {
    padding: 95px !important;
  }
}
.m-100 {
  margin: 100px !important;
}

.p-100 {
  padding: 100px !important;
}

@media (max-width: 768px) {
  .m-100-sm {
    margin: 100px !important;
  }
  .p-100-sm {
    padding: 100px !important;
  }
}
.m-125 {
  margin: 125px !important;
}

.p-125 {
  padding: 125px !important;
}

@media (max-width: 768px) {
  .m-125-sm {
    margin: 125px !important;
  }
  .p-125-sm {
    padding: 125px !important;
  }
}
.m-150 {
  margin: 150px !important;
}

.p-150 {
  padding: 150px !important;
}

@media (max-width: 768px) {
  .m-150-sm {
    margin: 150px !important;
  }
  .p-150-sm {
    padding: 150px !important;
  }
}
.m-175 {
  margin: 175px !important;
}

.p-175 {
  padding: 175px !important;
}

@media (max-width: 768px) {
  .m-175-sm {
    margin: 175px !important;
  }
  .p-175-sm {
    padding: 175px !important;
  }
}
.m-200 {
  margin: 200px !important;
}

.p-200 {
  padding: 200px !important;
}

@media (max-width: 768px) {
  .m-200-sm {
    margin: 200px !important;
  }
  .p-200-sm {
    padding: 200px !important;
  }
}
.width-0 {
  width: 0% !important;
}

@media (max-width: 768px) {
  .width-0-sm {
    width: 0% !important;
  }
}
.width-5 {
  width: 5% !important;
}

@media (max-width: 768px) {
  .width-5-sm {
    width: 5% !important;
  }
}
.width-10 {
  width: 10% !important;
}

@media (max-width: 768px) {
  .width-10-sm {
    width: 10% !important;
  }
}
.width-15 {
  width: 15% !important;
}

@media (max-width: 768px) {
  .width-15-sm {
    width: 15% !important;
  }
}
.width-20 {
  width: 20% !important;
}

@media (max-width: 768px) {
  .width-20-sm {
    width: 20% !important;
  }
}
.width-25 {
  width: 25% !important;
}

@media (max-width: 768px) {
  .width-25-sm {
    width: 25% !important;
  }
}
.width-30 {
  width: 30% !important;
}

@media (max-width: 768px) {
  .width-30-sm {
    width: 30% !important;
  }
}
.width-35 {
  width: 35% !important;
}

@media (max-width: 768px) {
  .width-35-sm {
    width: 35% !important;
  }
}
.width-40 {
  width: 40% !important;
}

@media (max-width: 768px) {
  .width-40-sm {
    width: 40% !important;
  }
}
.width-45 {
  width: 45% !important;
}

@media (max-width: 768px) {
  .width-45-sm {
    width: 45% !important;
  }
}
.width-50 {
  width: 50% !important;
}

@media (max-width: 768px) {
  .width-50-sm {
    width: 50% !important;
  }
}
.width-55 {
  width: 55% !important;
}

@media (max-width: 768px) {
  .width-55-sm {
    width: 55% !important;
  }
}
.width-60 {
  width: 60% !important;
}

@media (max-width: 768px) {
  .width-60-sm {
    width: 60% !important;
  }
}
.width-65 {
  width: 65% !important;
}

@media (max-width: 768px) {
  .width-65-sm {
    width: 65% !important;
  }
}
.width-70 {
  width: 70% !important;
}

@media (max-width: 768px) {
  .width-70-sm {
    width: 70% !important;
  }
}
.width-75 {
  width: 75% !important;
}

@media (max-width: 768px) {
  .width-75-sm {
    width: 75% !important;
  }
}
.width-80 {
  width: 80% !important;
}

@media (max-width: 768px) {
  .width-80-sm {
    width: 80% !important;
  }
}
.width-85 {
  width: 85% !important;
}

@media (max-width: 768px) {
  .width-85-sm {
    width: 85% !important;
  }
}
.width-90 {
  width: 90% !important;
}

@media (max-width: 768px) {
  .width-90-sm {
    width: 90% !important;
  }
}
.width-95 {
  width: 95% !important;
}

@media (max-width: 768px) {
  .width-95-sm {
    width: 95% !important;
  }
}
.width-100 {
  width: 100% !important;
}

@media (max-width: 768px) {
  .width-100-sm {
    width: 100% !important;
  }
}
.height-100-pixels {
  height: 100px !important;
}

@media (max-width: 768px) {
  .height-100-pixels-sm {
    height: 100px !important;
  }
}
.height-200-pixels {
  height: 200px !important;
}

@media (max-width: 768px) {
  .height-200-pixels-sm {
    height: 200px !important;
  }
}
.height-300-pixels {
  height: 300px !important;
}

@media (max-width: 768px) {
  .height-300-pixels-sm {
    height: 300px !important;
  }
}
.height-400-pixels {
  height: 400px !important;
}

@media (max-width: 768px) {
  .height-400-pixels-sm {
    height: 400px !important;
  }
}
.height-500-pixels {
  height: 500px !important;
}

@media (max-width: 768px) {
  .height-500-pixels-sm {
    height: 500px !important;
  }
}
.height-600-pixels {
  height: 600px !important;
}

@media (max-width: 768px) {
  .height-600-pixels-sm {
    height: 600px !important;
  }
}
.height-700-pixels {
  height: 700px !important;
}

@media (max-width: 768px) {
  .height-700-pixels-sm {
    height: 700px !important;
  }
}
.height-800-pixels {
  height: 800px !important;
}

@media (max-width: 768px) {
  .height-800-pixels-sm {
    height: 800px !important;
  }
}
.height-900-pixels {
  height: 900px !important;
}

@media (max-width: 768px) {
  .height-900-pixels-sm {
    height: 900px !important;
  }
}
.height-10-viewport {
  height: 10vh !important;
}

@media (max-width: 768px) {
  .height-10-viewport-sm {
    height: 10vh !important;
  }
}
.height-20-viewport {
  height: 20vh !important;
}

@media (max-width: 768px) {
  .height-20-viewport-sm {
    height: 20vh !important;
  }
}
.height-30-viewport {
  height: 30vh !important;
}

@media (max-width: 768px) {
  .height-30-viewport-sm {
    height: 30vh !important;
  }
}
.height-40-viewport {
  height: 40vh !important;
}

@media (max-width: 768px) {
  .height-40-viewport-sm {
    height: 40vh !important;
  }
}
.height-50-viewport {
  height: 50vh !important;
}

@media (max-width: 768px) {
  .height-50-viewport-sm {
    height: 50vh !important;
  }
}
.height-60-viewport {
  height: 60vh !important;
}

@media (max-width: 768px) {
  .height-60-viewport-sm {
    height: 60vh !important;
  }
}
.height-70-viewport {
  height: 70vh !important;
}

@media (max-width: 768px) {
  .height-70-viewport-sm {
    height: 70vh !important;
  }
}
.height-80-viewport {
  height: 80vh !important;
}

@media (max-width: 768px) {
  .height-80-viewport-sm {
    height: 80vh !important;
  }
}
.height-90-viewport {
  height: 90vh !important;
}

@media (max-width: 768px) {
  .height-90-viewport-sm {
    height: 90vh !important;
  }
}
.height-100-viewport {
  height: 100vh !important;
}

@media (max-width: 768px) {
  .height-100-viewport-sm {
    height: 100vh !important;
  }
}
.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.border-6 {
  border-width: 6px !important;
}

.border-7 {
  border-width: 7px !important;
}

.border-8 {
  border-width: 8px !important;
}

.border-9 {
  border-width: 9px !important;
}

.border-10 {
  border-width: 10px !important;
}

.border-t-1 {
  border-top-width: 1px !important;
}

.border-b-1 {
  border-bottom-width: 1px !important;
}

.border-l-1 {
  border-left-width: 1px !important;
}

.border-r-1 {
  border-right-width: 1px !important;
}

.border-t-2 {
  border-top-width: 2px !important;
}

.border-b-2 {
  border-bottom-width: 2px !important;
}

.border-l-2 {
  border-left-width: 2px !important;
}

.border-r-2 {
  border-right-width: 2px !important;
}

.border-t-3 {
  border-top-width: 3px !important;
}

.border-b-3 {
  border-bottom-width: 3px !important;
}

.border-l-3 {
  border-left-width: 3px !important;
}

.border-r-3 {
  border-right-width: 3px !important;
}

.border-t-4 {
  border-top-width: 4px !important;
}

.border-b-4 {
  border-bottom-width: 4px !important;
}

.border-l-4 {
  border-left-width: 4px !important;
}

.border-r-4 {
  border-right-width: 4px !important;
}

.border-t-5 {
  border-top-width: 5px !important;
}

.border-b-5 {
  border-bottom-width: 5px !important;
}

.border-l-5 {
  border-left-width: 5px !important;
}

.border-r-5 {
  border-right-width: 5px !important;
}

.border-t-6 {
  border-top-width: 6px !important;
}

.border-b-6 {
  border-bottom-width: 6px !important;
}

.border-l-6 {
  border-left-width: 6px !important;
}

.border-r-6 {
  border-right-width: 6px !important;
}

.border-t-7 {
  border-top-width: 7px !important;
}

.border-b-7 {
  border-bottom-width: 7px !important;
}

.border-l-7 {
  border-left-width: 7px !important;
}

.border-r-7 {
  border-right-width: 7px !important;
}

.border-t-8 {
  border-top-width: 8px !important;
}

.border-b-8 {
  border-bottom-width: 8px !important;
}

.border-l-8 {
  border-left-width: 8px !important;
}

.border-r-8 {
  border-right-width: 8px !important;
}

.border-t-9 {
  border-top-width: 9px !important;
}

.border-b-9 {
  border-bottom-width: 9px !important;
}

.border-l-9 {
  border-left-width: 9px !important;
}

.border-r-9 {
  border-right-width: 9px !important;
}

.border-t-10 {
  border-top-width: 10px !important;
}

.border-b-10 {
  border-bottom-width: 10px !important;
}

.border-l-10 {
  border-left-width: 10px !important;
}

.border-r-10 {
  border-right-width: 10px !important;
}

.border-solid {
  border-style: solid;
}

.border-dashed {
  border-style: dashed;
}

.border-dotted {
  border-style: dotted;
}

.border-t-dashed {
  border-top-style: dashed !important;
}

.border-b-dashed {
  border-bottom-style: dashed !important;
}

.border-l-dashed {
  border-left-style: dashed !important;
}

.border-r-dashed {
  border-right-style: dashed !important;
}

.border-t-solid {
  border-top-style: solid !important;
}

.border-b-solid {
  border-bottom-style: solid !important;
}

.border-l-solid {
  border-left-style: solid !important;
}

.border-r-solid {
  border-right-style: solid !important;
}

.border-t-dotted {
  border-top-style: dotted !important;
}

.border-b-dotted {
  border-bottom-style: dotted !important;
}

.border-l-dotted {
  border-left-style: dotted !important;
}

.border-r-dotted {
  border-right-style: dotted !important;
}

.no-border {
  border: none;
}

.border-radius-50 {
  border-radius: 50%;
  overflow: hidden;
}

.aspect-ratio-1 {
  aspect-ratio: 1;
}

.text-white {
  color: #ffffff;
}

html[data-theme=dark] .text-white-dm {
  color: #ffffff;
}

.background-white {
  background-color: #ffffff !important;
}
.background-white.opacity-10 {
  background-color: #ffffff;
  opacity: 0.1;
}
.background-white.opacity-20 {
  background-color: #ffffff;
  opacity: 0.2;
}
.background-white.opacity-30 {
  background-color: #ffffff;
  opacity: 0.3;
}
.background-white.opacity-40 {
  background-color: #ffffff;
  opacity: 0.4;
}
.background-white.opacity-50 {
  background-color: #ffffff;
  opacity: 0.5;
}
.background-white.opacity-60 {
  background-color: #ffffff;
  opacity: 0.6;
}
.background-white.opacity-70 {
  background-color: #ffffff;
  opacity: 0.7;
}
.background-white.opacity-80 {
  background-color: #ffffff;
  opacity: 0.8;
}
.background-white.opacity-90 {
  background-color: #ffffff;
  opacity: 0.9;
}

html[data-theme=dark] .background-white-dm {
  background-color: #ffffff;
}

.has-white-color {
  color: #ffffff;
}

.has-white-background-color {
  background-color: #ffffff;
}

.border-white {
  border-color: #ffffff;
}

html[data-theme=dark] .border-white-dm {
  border-color: #ffffff;
}

.border-t-white {
  border-top-color: #ffffff !important;
}

html[data-theme=dark] .border-t-white-dm {
  border-top-color: #ffffff !important;
}

.border-b-white {
  border-bottom-color: #ffffff !important;
}

html[data-theme=dark] .border-b-white-dm {
  border-bottom-color: #ffffff !important;
}

.border-l-white {
  border-left-color: #ffffff !important;
}

html[data-theme=dark] .border-l-white-dm {
  border-left-color: #ffffff !important;
}

.border-r-white {
  border-right-color: #ffffff !important;
}

html[data-theme=dark] .border-r-white-dm {
  border-right-color: #ffffff !important;
}

.text-black {
  color: #000000;
}

html[data-theme=dark] .text-black-dm {
  color: #000000;
}

.background-black {
  background-color: #000000 !important;
}
.background-black.opacity-10 {
  background-color: #000000;
  opacity: 0.1;
}
.background-black.opacity-20 {
  background-color: #000000;
  opacity: 0.2;
}
.background-black.opacity-30 {
  background-color: #000000;
  opacity: 0.3;
}
.background-black.opacity-40 {
  background-color: #000000;
  opacity: 0.4;
}
.background-black.opacity-50 {
  background-color: #000000;
  opacity: 0.5;
}
.background-black.opacity-60 {
  background-color: #000000;
  opacity: 0.6;
}
.background-black.opacity-70 {
  background-color: #000000;
  opacity: 0.7;
}
.background-black.opacity-80 {
  background-color: #000000;
  opacity: 0.8;
}
.background-black.opacity-90 {
  background-color: #000000;
  opacity: 0.9;
}

html[data-theme=dark] .background-black-dm {
  background-color: #000000;
}

.has-black-color {
  color: #000000;
}

.has-black-background-color {
  background-color: #000000;
}

.border-black {
  border-color: #000000;
}

html[data-theme=dark] .border-black-dm {
  border-color: #000000;
}

.border-t-black {
  border-top-color: #000000 !important;
}

html[data-theme=dark] .border-t-black-dm {
  border-top-color: #000000 !important;
}

.border-b-black {
  border-bottom-color: #000000 !important;
}

html[data-theme=dark] .border-b-black-dm {
  border-bottom-color: #000000 !important;
}

.border-l-black {
  border-left-color: #000000 !important;
}

html[data-theme=dark] .border-l-black-dm {
  border-left-color: #000000 !important;
}

.border-r-black {
  border-right-color: #000000 !important;
}

html[data-theme=dark] .border-r-black-dm {
  border-right-color: #000000 !important;
}

html[data-theme=dark] .background-medium-blue,
html[data-theme=dark] .has-medium-blue-background-color {
  background-color: #2C5088;
}

body.page-template-default main .page-container {
  padding-top: 10rem;
}

body.post-template-default main .post-container {
  padding-top: 7rem;
}

body.home .homepage-hero {
  z-index: 5;
}
body.home .homepage-hero.page-hero {
  clip-path: ellipse(150% 65% at 50% 35%);
}
@media (max-width: 768px) {
  body.home .homepage-hero.page-hero {
    clip-path: ellipse(245% 65% at 50% 35%);
  }
}
body.home .archaeology-section {
  margin-top: -15rem !important;
}
body.home .floating-photos {
  position: absolute;
  top: 20%;
  z-index: 10;
}
@media (max-width: 768px) {
  body.home .floating-photos {
    bottom: 0;
  }
}

body.page-history .page-hero {
  position: relative;
  z-index: 10;
}
body.page-history .intro-text {
  margin-top: -8rem !important;
}
body.page-history .battlefield-section {
  position: relative;
}
body.page-history .battlefield-columns {
  margin-top: -8rem !important;
}
body.page-history .battlefield-columns .battlefield-photo,
body.page-history .battlefield-columns .battlefield-map {
  border: 3px solid white !important;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--wp--preset--shadow--natural);
}

body.page-rediscovery .page-hero {
  position: relative;
  z-index: 10;
}
body.page-rediscovery .intro-text {
  margin-top: -8rem !important;
}