@charset "UTF-8";
/*
Theme Name: American Piano Awards
Theme URI:
Description:
Author: Joe Blackburn
Version: 1.0
Tags: custom
*/

/*
Import additional stylesheet
*/
@import url("style_ca_web.css");

/* =============================================================================
   Adapted from HTML5 Boilerplate CSS: h5bp.com/css
   ========================================================================== *

/* !Local Fonts - - - - - */
@font-face {
  font-family: "MADEAwelier";
  src: url("fonts/made-awelier-bold.eot");
  src: url("fonts/made-awelier-bold.eot?#iefix") format("embedded-opentype"), url("fonts/made-awelier-bold.woff2") format("woff2"), url("fonts/made-awelier-bold.woff") format("woff"), url("fonts/made-awelier-bold.ttf") format("truetype"), url("fonts/made-awelier-bold.svg#youworkforthem") format("svg");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "MADEAwelier";
  src: url("fonts/made-awelier-extrabold.eot");
  src: url("fonts/made-awelier-extrabold.eot?#iefix") format("embedded-opentype"), url("fonts/made-awelier-extrabold.woff2") format("woff2"), url("fonts/made-awelier-extrabold.woff") format("woff"), url("fonts/made-awelier-extrabold.ttf") format("truetype"), url("fonts/made-awelier-extrabold.svg#youworkforthem") format("svg");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "MADEAwelier";
  src: url("fonts/made-awelier-black.eot");
  src: url("fonts/made-awelier-black.eot?#iefix") format("embedded-opentype"), url("fonts/made-awelier-black.woff2") format("woff2"), url("fonts/made-awelier-black.woff") format("woff"), url("fonts/made-awelier-black.ttf") format("truetype"), url("fonts/made-awelier-black.svg#youworkforthem") format("svg");
  font-weight: 900;
  font-style: normal;
}
/* !Global Styles - - - - - */
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale;
}

.sans {
  font-family: "poppins", Arial, Verdana, sans-serif;
}

.serif {
  font-family: "MADEAwelier", Georgia, Times, serif;
}

.white {
  color: #fff;
}

.black {
  color: #000;
}

.dk-blue {
  color: #141B28;
}

.yellow {
  color: #D6E031;
}

.purple {
  color: #D8B5EA;
}

.red {
  color: #F2665E;
}

.gold {
  color: #FFCB05;
}

.vlt-grey {
  color: #F0F1ED;
}

.lt-grey {
  color: #F0F1ED;
}

.white-bg {
  background: #fff;
}

.black-bg {
  background: #000;
}

.dk-blue-bg {
  background: #141B28;
}

.yellow-bg {
  background: #D6E031;
}

.purple-bg {
  background: #D8B5EA;
}

.red-bg {
  background: #F2665E;
}

.gold-bg {
  background: #FFCB05;
}

.vlt-grey-bg {
  background: #F0F1ED;
}

.lt-grey-bg {
  background: #F0F1ED;
}

.italic {
  font-style: italic;
}

.normal {
  font-weight: normal;
}

.med {
  font-weight: 500;
}

.semi {
  font-weight: 600;
}

.bold {
  font-weight: bold;
}

.xbold {
  font-weight: 800;
}

.xxbold {
  font-weight: 900;
}

.center {
  text-align: center;
}

.upper {
  text-transform: uppercase;
}

.lower {
  text-transform: lowercase;
}

.space {
  letter-spacing: 0.05em;
}

.xspace {
  letter-spacing: 0.1em;
}

.fleft {
  float: left;
}

.fright {
  float: right;
}

.plain a, a.plain {
  text-decoration: none;
}

a {
  color: #141B28;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s ease-in-out;
}

a:hover {
  color: #D6E031;
}

.rel {
  position: relative;
}

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

ul.inline {
  display: inline-block;
}

ul.inline > li {
  display: inline;
  float: left;
}

ul.ilb > li,
.ilb {
  display: inline-block;
  vertical-align: top;
}

ul.ilb {
  display: block;
}

li.vmiddle,
.vmiddle {
  vertical-align: middle;
}

li.vbottom,
.vbottom {
  vertical-align: bottom;
}

.reverse {
  direction: rtl;
}

.dfix {
  direction: ltr;
}

img.full {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

img.fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
}

.cover {
  background: url(images/trans.png) no-repeat center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
}

.grid.row {
  grid-auto-rows: 1fr;
}

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

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

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

.over {
  position: relative;
  z-index: 20;
}

.swap {
  grid-auto-flow: column;
  direction: rtl;
}

.flex {
  display: flex;
}

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

.rounded {
  border-radius: 10px;
  overflow: hidden;
}

.big-rounded {
  border-radius: 20px;
  overflow: hidden;
}

.overflow {
  overflow: hidden;
}

/* !Font Size Functions - - - - - */
/* !Page Defaults - - - - - */
.text {
  line-height: 1.8em;
  font-size: 1.125rem;
}

.text.small-text {
  font-size: 1rem;
}

.text.large-text {
  font-size: 1.25rem;
  line-height: 1.7em;
}

.text p {
  margin: 15px 0;
}

.text a {
  color: #D8B5EA;
  text-decoration: underline;
}

.text a:hover {
  color: #141B28;
}

.page-block.purple-bg .text a,
.page-block.yellow-bg .text a {
  color: #141B28;
}

.text.white a,
.page-block.purple-bg .text a:hover,
.page-block.yellow-bg .text a:hover {
  color: #fff;
  text-decoration: underline;
}

.text.white a:hover {
  color: #D6E031;
}

.header-text p:first-child,
.text p:first-child {
  margin-top: 0;
}

.header-text p:last-child,
.text p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-weight: normal;
}

.text img {
  display: block;
  margin: 10px auto;
  width: auto;
  height: auto;
  max-width: 100%;
}

.text img.alignleft {
  float: left;
  margin: 0 30px 30px 0;
  display: inline-block;
}

.text img.alignright {
  float: right;
  margin: 0 0 30px 30px;
  display: inline-block;
}

.text ul {
  margin: 30px 0;
  list-style: none;
  padding: 0 0 0 30px;
}

.text ul li {
  position: relative;
  margin: 0;
  line-height: 1.3em;
  padding: 0 0 0 20px;
}

.text ul li + li {
  margin-top: 5px;
}

.text ul li:before {
  content: "•";
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 1;
}

.text h1,
.text h2,
.text h3,
.text h4,
.text h5 {
  margin: 30px 0 10px 0;
  font-weight: 800;
  color: #141B28;
  font-family: "MADEAwelier", Georgia, Times, serif;
  line-height: 1.3em;
}

.text h1 {
  font-size: 2.375rem;
}

.text h2 {
  font-size: 1.875rem;
}

.text h3 {
  font-size: 1.625rem;
}

.text h4 {
  font-size: 1.375rem;
}

.text h5 {
  font-size: 1.25rem;
}

.text.white h1,
.text.white h2,
.text.white h3,
.text.white h4,
.text.white h5 {
  color: #fff;
}

.text h3,
.text h4,
.text h5 {
  font-family: "poppins", Arial, Verdana, sans-serif;
}

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

.text h1:last-child,
.text h2:last-child,
.text h3:last-child,
.text h4:last-child,
.text h5:last-child,
.text ul:last-child {
  margin-bottom: 0;
}

.text blockquote {
  margin: 50px 0;
  padding: 10px 0 10px 30px;
  border-left: 2px solid #D8B5EA;
  color: #141B28;
  font-size: 1.5rem;
  line-height: 1.5em;
  text-align: left;
  font-family: "MADEAwelier", Georgia, Times, serif;
  font-weight: 800;
}

.text.white blockquote {
  color: #fff;
}

section {
  scroll-margin-top: 80px;
}

/* !Body - - - - - */
html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-size: 16px;
  font-family: "poppins", Arial, Verdana, sans-serif;
  color: #141B28;
  line-height: 1.6em;
  background: #F0F1ED;
}

#container {
  background: #fff;
}

/* !Page Blocks - - - - - */
.inner {
  padding: 0 30px;
  display: block;
  max-width: 860px;
  margin: 0 auto;
}

.inner.skinny {
  max-width: 730px;
}

.inner.mid {
  max-width: 1160px;
}

.inner.wide {
  max-width: 1300px;
}

.inner.vwide {
  max-width: 1340px;
}

.max {
  max-width: 1400px;
  display: block;
  margin: 0 auto;
}

.page-block {
  position: relative;
}

.page-block + .page-block {
  margin-top: 100px; /*  border-top: 1px solid $lt-grey; */
}

.page-block.bg,
.block-pad,
.block-pad-top {
  padding: 100px 0;
}

.page-block.bg.small-block-pad,
.small-block-pad {
  padding: 65px 0;
}

.big-block-pad,
.page-block.bg.big-block-pad {
  padding: 150px 0;
}

.page-block.bg + .page-block.bg {
  margin-top: 0;
}

.page-block:last-child {
  padding-bottom: 100px;
}

.page-block:first-child {
  padding-top: 100px;
}

#main > .page-block:first-child.bg {
  margin-top: 0;
}

.block-pad-top {
  padding-top: 100px;
}

.block-pad-bottom {
  padding-bottom: 100px;
}

.big-block-pad:first-child,
.page-block.bg.big-block-pad:first-child {
  padding-top: 150px;
}

.big-block-pad:last-child,
.page-block.bg.big-block-pad:last-child {
  padding-bottom: 150px;
}

.page-block.bg.no-pad {
  padding: 0;
}

.page-block.margin-check:last-child {
  padding-bottom: 0;
}

/* !Buttons + Links - - - - - */
.big-button {
  display: inline-block;
  padding: 15px 27px 12px 27px;
  font-size: 1.25rem;
  line-height: 1.1em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: #D8B5EA;
  border: 1px solid transparent;
  border-radius: 60px;
}

.big-button.nav-button {
  font-size: 1.0625rem;
  padding: 13px 25px 10px 25px;
}

.big-button.red-bg {
  background: #F2665E;
  color: #fff;
}

.big-button:hover,
.big-button.red-bg:hover {
  background: #141B28;
  color: #fff;
}

.big-button.outline {
  border-color: #fff;
  background: none;
  color: #fff;
}

.big-button.outline:hover {
  background: #fff;
  color: #141B28;
}

.big-button.yellow-outline {
  border-color: #D6E031;
  background: none;
  color: #D6E031;
}

.big-button.yellow-outline:hover {
  background: #D6E031;
  color: #141B28;
}

.big-button.nav-button:hover {
  background: #D6E031;
  border-color: #D6E031;
  color: #141B28;
}

.big-button.dk-blue-bg {
  background: #141B28;
  color: #fff;
}

.big-button.dk-blue-bg:hover {
  background: #fff;
  color: #141B28;
}

.big-button.white-bg {
  background: #fff;
  color: #141B28;
}

.big-button.white-bg:hover {
  background: #D8B5EA;
  color: #141B28;
}

.arrow-button,
input.gform_button,
.post-password-form input[type=submit] {
  display: inline-grid;
  grid-template-columns: 1fr 21px;
  gap: 30px;
  align-items: center;
  padding: 14px 20px 12px 25px;
  background: #D8B5EA;
  color: #141B28;
  font-family: "poppins", Arial, Verdana, sans-serif;
  font-weight: bold;
  font-size: 1.1875rem;
  line-height: 1.3em;
  border: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 30px;
  -webkit-transform: translateZ(0);
  transition: all 0.35s ease-in-out;
}

input.gform_button,
.post-password-form input[type=submit] {
  background: url(images/arrow-right-white.svg) no-repeat right 20px center #141B28;
  color: #fff;
  display: inline-block;
  padding-right: 70px;
}

input.gform_button:hover,
.post-password-form input[type=submit]:hover {
  background: url(images/arrow-right.svg) no-repeat right 20px center #F0F1ED;
  color: #141B28;
}

.arrow-button.wide {
  gap: 50px;
}

.arrow-button svg {
  position: relative;
  top: -1px;
}

.arrow-button path {
  fill: #141B28;
  transition: all 0.35s ease-in-out;
}

.arrow-button:hover path {
  fill: #fff;
}

.arrow-button.white-bg {
  background-color: #fff;
}

.arrow-button.vlt-grey-bg {
  background-color: #F0F1ED;
}

.arrow-button.dk-blue-bg,
input.gform-button {
  background: #141B28;
  color: #fff;
}

.arrow-button.dk-blue-bg path {
  fill: #fff;
}

.arrow-button.dk-blue-bg:hover {
  background: #D8B5EA;
  color: #141B28;
}

.arrow-button.dk-blue-bg:hover path {
  fill: #141B28;
}

.arrow-button.yellow-bg {
  background-color: #D6E031;
}

a.arrow-button:hover,
.arrow-button.yellow-bg:hover,
.arrow-button.vlt-grey-bg:hover,
.arrow-button.white-bg:hover {
  background: #141B28;
  color: #fff;
  gap: 40px;
}

.arrow-button.wide:hover {
  gap: 60px;
}

.arrow-button.light-hover:hover {
  background: #F0F1ED;
  color: #141B28;
}

.arrow-button.light-hover:hover path {
  fill: #141B28;
}

.arrow-link {
  display: inline-grid;
  grid-template-columns: 1fr 21px;
  gap: 10px;
  align-items: center;
  padding: 0;
  color: #141B28;
  font-family: "poppins", Arial, Verdana, sans-serif;
  font-weight: bold;
  font-size: 1.1875rem;
  line-height: 1.3em;
}

.arrow-link:hover {
  color: #F2665E;
  gap: 20px;
}

.arrow-link svg {
  position: relative;
  top: -2px;
}

.arrow-link path {
  fill: #141B28;
  transition: all 0.35s ease-in-out;
}

.arrow-link:hover path {
  fill: #F2665E;
}

.circle-link {
  display: inline-grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: center;
  color: #141B28;
  font-size: 0.9375rem;
  line-height: 1.3em;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  font-weight: 500;
}

.circle-link:hover {
  color: #F2665E;
}

.circle-arrow {
  width: 30px;
  height: 30px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 120%;
  overflow: hidden;
  position: relative;
  top: -1px;
  transition: all 0.35s ease-in-out;
}

.circle-link path {
  transition: all 0.35s ease-in-out;
}

.circle-link:hover path {
  fill: #fff;
}

.circle-link:hover .circle-arrow {
  background: #141B28;
}

.circle-arrow svg {
  width: 16px;
  height: 13px;
}

.circle-link.white {
  color: #fff;
}

.circle-link.white:hover {
  color: #fff;
}

.circle-link.white:hover .circle-arrow {
  background: #D6E031;
}

.circle-link.white:hover path {
  fill: #141B28;
}

/* !Headlines - - - - - */
.sub13,
.sub18,
.sub20,
.sub22,
.sub24,
.sub30,
.sub32,
.sub42,
.sub50,
.sub52,
.sub74,
.sub92 {
  font-family: "poppins", Arial, Verdana, sans-serif;
}

.sub13 {
  font-size: 0.8125rem;
  line-height: 1.5em;
}

.sub18 {
  font-size: 1.125rem;
  line-height: 1.5em;
}

.sub20 {
  font-size: 1.25rem;
  line-height: 1.5em;
}

.sub22 {
  font-size: 1.375rem;
  line-height: 1.5em;
}

.sub24 {
  font-size: 1.5rem;
  line-height: 1.5em;
}

.sub30 {
  font-size: 1.875rem;
  line-height: 1.5em;
}

.sub32 {
  font-size: 2rem;
  line-height: 1.45em;
}

.sub42 {
  font-size: 2.625rem;
  line-height: 1.3em;
}

.sub50 {
  font-size: 3.125rem;
  line-height: 1.3em;
}

.sub52 {
  font-size: 3.25rem;
  line-height: 1.3em;
}

.sub74 {
  font-size: 4.625rem;
  line-height: 1.2em;
}

.sub92 {
  font-size: 5.75rem;
  line-height: 1.1em;
}

.head30,
.head44,
.head48,
.head58,
.head72,
.head84,
.head88,
.head108 {
  font-family: "MADEAwelier", Georgia, Times, serif;
}

.head30 {
  font-size: 1.875rem;
  line-height: 1.4em;
}

.head44 {
  font-size: 2.75rem;
  line-height: 1.3em;
}

.head48 {
  font-size: 3rem;
  line-height: 1.3em;
}

.head58 {
  font-size: 3.625rem;
  line-height: 1.2em;
}

.head72 {
  font-size: 4.5rem;
  line-height: 1.1em;
}

.head84 {
  font-size: 5.25rem;
  line-height: 1.1em;
}

.head88 {
  font-size: 5.5rem;
  line-height: 1.1em;
}

.head108 {
  font-size: 6.75rem;
  line-height: 1em;
}

.label11,
.label14,
.label18 {
  font-family: "poppins", Arial, Verdana, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.label11 {
  font-size: 0.6875rem;
}

.label14 {
  font-size: 0.875rem;
}

.label18 {
  font-size: 1.125rem;
}

.sub18 u,
.sub20 u,
.sub22 u,
.sub24 u,
.sub30 u,
.sub32 u,
.sub42 u,
.sub50 u,
.sub52 u,
.sub74 u,
.sub92 u,
.head30 u,
.head44 u,
.head48 u,
.head58 u,
.head72 u,
.head84 u,
.head88 u,
.head108 u {
  color: #D8B5EA;
  text-decoration: none;
}

.text-top .sub42 u {
  color: #F2665E;
}

.blog-header-block .sub50 u,
.purple-bg .sub18 u,
.purple-bg .sub20 u,
.purple-bg .sub22 u,
.purple-bg .sub24 u,
.purple-bg .sub30 u,
.purple-bg .sub32 u,
.purple-bg .sub42 u,
.purple-bg .sub50 u,
.purple-bg .sub52 u,
.purple-bg .sub74 u,
.purple-bg .sub92 u,
.purple-bg .head30 u,
.purple-bg .head44 u,
.purple-bg .head48 u,
.purple-bg .head58 u,
.purple-bg .head72 u,
.purple-bg .head84 u,
.purple-bg .head88 u,
.purple-bg .head108 u,
.red-bg .sub18 u,
.red-bg .sub20 u,
.red-bg .sub22 u,
.red-bg .sub24 u,
.red-bg .sub30 u,
.red-bg .sub32 u,
.red-bg .sub42 u,
.red-bg .sub50 u,
.red-bg .sub52 u,
.red-bg .sub74 u,
.red-bg .sub92 u,
.red-bg .head30 u,
.red-bg .head44 u,
.red-bg .head48 u,
.red-bg .head58 u,
.red-bg .head72 u,
.red-bg .head84 u,
.red-bg .head88 u,
.red-bg .head108 u,
.yellow-bg .sub18 u,
.yellow-bg .sub20 u,
.yellow-bg .sub22 u,
.yellow-bg .sub24 u,
.yellow-bg .sub30 u,
.yellow-bg .sub32 u,
.yellow-bg .sub42 u,
.yellow-bg .sub50 u,
.yellow-bg .sub52 u,
.yellow-bg .sub74 u,
.yellow-bg .sub92 u,
.yellow-bg .head30 u,
.yellow-bg .head44 u,
.yellow-bg .head48 u,
.yellow-bg .head58 u,
.yellow-bg .head72 u,
.yellow-bg .head84 u,
.yellow-bg .head88 u,
.yellow-bg .head108 u {
  color: #fff;
}

.page-block.message-block .head108.message-text.white u {
  color: #141B28;
}

.page-block.message-block.dk-blue-bg .head108.message-text u {
  color: #D8B5EA;
}

/* !Spacing - - - - - */
.sub24 + .sub22 {
  margin-top: 5px;
}

.label18 + .head44,
.sub18 + .sub13 {
  margin-top: 10px;
}

.sub22 + .sub13 {
  margin-top: 15px;
}

.label14 + .sub24,
.sub18 + .text,
.post-title + .arrow-button {
  margin-top: 20px;
}

.sub18 + .head72,
* + .circle-link {
  margin-top: 25px;
}

* + .text,
.sub20 + .arrow-button {
  margin-top: 30px;
}

.text + .arrow-link {
  margin-top: 35px;
}

.text-bottom .sub32 + .text,
.text + .arrow-button,
.text + .big-button,
.head84 + .big-button,
.head58 + .big-button,
.head72 + .large-text {
  margin-top: 40px;
}

.label14 + .head72 {
  margin-top: 45px;
}

/* !Header - - - - - */
header {
  height: 80px;
  border-bottom: 2px solid #fff;
  background: #141B28;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100100;
}

.page-template-homepage header {
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: all 0.35s ease-in-out;
}

.scrolled .page-template-homepage header {
  visibility: visible;
  opacity: 1;
  z-index: 100100;
}

#container {
  padding-top: 80px;
}

.page-template-homepage #container {
  padding-top: 0;
}

a.logo {
  width: 37px;
  height: 37px;
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translate(0, -50%);
  z-index: 1;
}

ul.nav {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: flex-end;
  padding: 0 110px 0 120px;
  gap: 50px;
  align-items: center;
}

a.main {
  height: 80px;
  line-height: 80px;
  font-size: 1.25rem;
  color: #fff;
  display: block;
}

ul.nav .big-button.nav-button {
  position: relative;
  top: -2px;
}

a.main:hover,
a.main.active {
  color: #D6E031;
}

.nav-toggle {
  width: 30px;
  height: 30px;
  position: fixed;
  top: 25px;
  right: 40px;
  z-index: 100500;
}

.nav-toggle div {
  width: 30px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  text-indent: -9999px;
  border-radius: 2px;
  background: #D6E031;
  display: block;
  transition: all 0.35s ease-in-out;
}

.nav-toggle div:nth-child(1) {
  transform: translate(0, -9px);
}

.nav-toggle div:nth-child(2) {
  transform: translate(0, -50%);
}

.nav-toggle div:nth-child(3) {
  transform: translate(0, 7px);
}

.nav-toggle.active div:nth-child(1) {
  transform: translate(0, -50%) rotate(45deg);
}

.nav-toggle.active div:nth-child(3) {
  transform: translate(0, -50%) rotate(-45deg);
}

.nav-toggle.active div:nth-child(2) {
  opacity: 0;
}

.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  overflow: scroll;
  background: #131926;
  z-index: 100200;
  opacity: 0;
  visibility: hidden;
  padding: 140px 120px 60px 120px;
  transition: all 0.35s ease-in-out;
}

.nav-wrap a.logo {
  display: none;
  top: 39px;
}

.nav-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.nav-active .nav-wrap {
  visibility: visible;
  opacity: 1;
}

ul.big-nav a {
  display: block;
  font-size: 5rem;
  line-height: 1em;
  color: #D8B5EA;
  font-family: "MADEAwelier", Georgia, Times, serif;
  font-weight: 800;
}

ul.big-nav li + li {
  margin-top: 25px;
}

ul.big-nav a:hover,
ul.big-nav a.active {
  color: #fff;
}

ul.small-nav a {
  display: block;
  font-size: 1.5rem;
  line-height: 1.4em;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

ul.small-nav a:hover,
ul.small-nav a.active {
  color: #D6E031;
}

ul.small-nav li + li {
  margin-top: 30px;
}

* + .nav-search {
  margin-top: 55px;
}

.nav-social {
  position: absolute;
  bottom: 25px;
  right: 25px;
  z-index: 101;
}

input.search-box {
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  background: none;
  height: 54px;
  border-radius: 30px;
  color: #fff !important;
  font-size: 1.125rem;
  line-height: 1.3em;
  font-family: "poppins", Arial, Verdana, sans-serif;
  padding: 0 25px 0 60px;
  width: 100%;
}

input.search-button {
  position: absolute;
  top: 0;
  left: 0;
  width: 54px;
  height: 54px;
  background: url(images/search-white.svg) no-repeat center;
  background-size: 18px 18px;
  text-indent: -9999px;
  border: none;
  z-index: 101;
  transition: all 0.35s ease-in-out;
}

input.search-button:hover {
  opacity: 0.5;
}

#searchform {
  width: 100%;
  max-width: 400px;
}

#searchform ::-webkit-input-placeholder {
  opacity: 1;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.35s ease-in-out;
}

#searchform :-moz-placeholder { /* Firefox 18- */
  opacity: 1;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.35s ease-in-out;
}

#searchform ::-moz-placeholder { /* Firefox 19+ */
  opacity: 1;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.35s ease-in-out;
}

#searchform :-ms-input-placeholder {
  opacity: 1;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.35s ease-in-out;
}

#searchform :focus::-webkit-input-placeholder {
  color: transparent;
}

#searchform :focus:-moz-placeholder { /* Firefox 18- */
  color: transparent;
}

#searchform :focus::-moz-placeholder { /* Firefox 19+ */
  color: transparent;
}

#searchform :focus:-ms-input-placeholder {
  color: transparent;
}

/* !Home Header - - - - - */
.page-block.home-header-block.bg {
  padding: 140px 0 100px 0;
}

.block-down-arrow:after {
  content: "";
  width: 46px;
  height: 46px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  background: url(images/arrow-down.svg) no-repeat center #D6E031;
  border-radius: 120%;
  overflow: hidden;
  z-index: 101;
}

.center-text-block.white-bg.block-down-arrow:after {
  bottom: -100px;
}

/* !Footer - - - - - */
.footer-top {
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 80px;
}

.footer-bottom {
  padding: 40px 0;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 40px;
  align-items: center;
}

ul.footer-nav a {
  display: block;
  color: #141B28;
  font-size: 1rem;
  line-height: 1.3em;
}

ul.footer-nav a:hover {
  color: #F2665E;
}

ul.footer-nav li + li {
  margin-top: 18px;
}

.footer-top-right {
  gap: 30px;
}

* + .signup-form {
  margin-top: 50px;
}

.signup-form input.large {
  border: none;
  border-bottom: 1px solid #141B28;
  padding: 0 80px 0 0;
  height: 50px;
  font-family: "poppins", Arial, Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1.3em;
  color: #141B28;
  background: none;
  width: 100%;
  border-radius: 0;
}

.signup-form .gfield_label {
  display: none;
}

#field_2_1 {
  width: 100%;
  flex-basis: 100%;
}

.signup-form input[type=submit] {
  width: 34px;
  height: 34px;
  background: url(images/arrow-right.svg) no-repeat center #fff;
  border-radius: 120%;
  overflow: hidden;
  border: none;
  text-indent: -9999px;
  padding: 0;
  margin: 0;
  transition: all 0.35s ease-in-out;
}

.signup-form input[type=submit]:hover {
  background-color: #D6E031;
}

.signup-form ::-webkit-input-placeholder {
  opacity: 1;
  color: #141B28;
  transition: all 0.35s ease-in-out;
}

.signup-form :-moz-placeholder { /* Firefox 18- */
  opacity: 1;
  color: #141B28;
  transition: all 0.35s ease-in-out;
}

.signup-form ::-moz-placeholder { /* Firefox 19+ */
  opacity: 1;
  color: #141B28;
  transition: all 0.35s ease-in-out;
}

.signup-form :-ms-input-placeholder {
  opacity: 1;
  color: #141B28;
  transition: all 0.35s ease-in-out;
}

.signup-form :focus::-webkit-input-placeholder {
  color: transparent;
}

.signup-form :focus:-moz-placeholder { /* Firefox 18- */
  color: transparent;
}

.signup-form :focus::-moz-placeholder { /* Firefox 19+ */
  color: transparent;
}

.signup-form :focus:-ms-input-placeholder {
  color: transparent;
}

ul.social {
  display: flex;
  gap: 7px;
  align-items: center;
}

ul.social svg {
  display: block;
}

ul.social a {
  display: block;
  -webkit-transform: translateZ(0);
}

ul.social a:hover {
  opacity: 0.5;
}

ul.social.footer-social {
  justify-content: flex-end;
}

ul.social.footer-social a circle {
  fill: #141B28;
}

ul.social.footer-social a path {
  fill: #F0F1ED;
}

.footer-bottom-left {
  font-size: 0.6875rem;
  line-height: 1.3em;
  color: #141B28;
}

.footer-sep {
  padding: 0 8px;
}

.footer-bottom-left a:hover {
  color: #F2665E;
}

.gfield_label {
  display: none;
}

#gform_fields_2 {
  position: relative;
}

#gform_fields_2 #field_submit {
  position: absolute;
  top: 2px;
  right: 0;
  z-index: 1;
}

#gform_fields_2 #field_submit img {
  display: block;
  margin: 40px auto 0 auto;
}

/* !Text Block - - - - - */
.text-top {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
}

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

* + .text-bottom {
  margin-top: 60px;
}

.text.two-col {
  columns: 2;
  column-gap: 40px;
}

/* !CTA block - - - - - */
.cta-strip-block.page-block.bg {
  padding: 40px 0;
}

.cta-flex {
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.down-arrow {
  padding-bottom: 50px;
  background: url(images/arrow-down.svg) no-repeat center bottom;
}

.down-arrow.white {
  background-image: url(images/arrow-down-white.svg);
}

/* !Alternating - - - - - */
.alt-row {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 80px;
}

.alt-max {
  max-width: 450px;
  margin: 0 auto;
}

.alt-content {
  padding-top: 40px;
}

.alt-row + .alt-row {
  margin-top: 60px;
}

.alt-row:nth-child(even),
.swap .alt-row:nth-child(odd) {
  direction: rtl;
}

.swap .alt-row:nth-child(even) {
  direction: ltr;
}

a.play-video {
  display: block;
  position: relative;
}

a.play-video:before {
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: url(images/play-button.svg) no-repeat center;
  z-index: 101;
  transform: translate(-50%, -50%);
  transition: all 0.35s ease-in-out;
}

a.play-video:hover:before {
  opacity: 0.7;
}

.caption {
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 4px 0 black;
  font-size: 1.0625rem;
  line-height: 1.4em;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 20px 15px 20px;
}

/* !News Block - - - - - */
* + ul.post-grid {
  margin-top: 60px;
}

ul.post-grid {
  gap: 60px;
}

.post-title a {
  display: block;
  color: #141B28;
}

.post-title a:hover {
  color: #D8B5EA;
}

/* !Accordion - - - - - */
* + .acc-bottom {
  margin-top: 60px;
}

.acc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px 40px;
  flex-wrap: wrap;
}

.acc-item + .acc-item {
  margin-top: 18px;
}

.acc-item {
  background: #fff;
  border-radius: 32px;
}

.acc-toggle {
  display: block;
  position: relative;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3em;
  padding: 19px 70px 19px 30px;
  cursor: pointer;
}

.acc-toggle.has-date {
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: 20px;
}

.acc-toggle:before {
  content: "";
  width: 34px;
  height: 34px;
  position: absolute;
  top: 14px;
  right: 16px;
  background: url(images/plus.svg) no-repeat center;
  transition: all 0.35s ease-in-out;
}

.acc-toggle.ui-state-active:before {
  background-image: url(images/minus.svg);
}

.acc-content {
  padding: 20px 30px 40px 30px;
}

.acc-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
}

/* !Wide Gallery - - - - - */
.wide-gallery-block {
  overflow: hidden;
}

.wide-gallery-block.page-block {
  padding: 0 !important;
}

.wide-gallery-wrap {
  padding: 15px 0;
  width: calc(100% + 60px);
  margin-left: -30px;
}

.wide-gallery-image {
  padding-right: 15px;
}

.wide-gallery-image img {
  height: 500px;
  width: auto;
  display: block;
  border-radius: 10px;
}

.slick-prev,
.slick-next,
button.slick-prev,
button.slick-next {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 120%;
  overflow: hidden;
  background: #D6E031;
  transform: translate(0, -50%);
  z-index: 101;
}

.slick-prev {
  left: 20px;
}

.slick-next {
  right: 20px;
}

button.slick-prev {
  text-indent: -9999px;
  border: none;
  background: url(images/arrow-left.svg) no-repeat center #D6E031;
}

button.slick-next {
  text-indent: -9999px;
  border: none;
  background: url(images/arrow-right.svg) no-repeat center #D6E031;
}

button.slick-prev:hover {
  background: url(images/arrow-left.svg) no-repeat center #D8B5EA;
}

button.slick-next:hover {
  background: url(images/arrow-right.svg) no-repeat center #D8B5EA;
}

.slick-prev:hover,
.slick-next:hover {
  background: #D8B5EA;
}

.slick-prev path,
.slick-next path {
  transition: all 0.35s ease-in-out;
}

/* !Center Text - - - - - */
ul.center-cols li {
  padding: 30px;
  width: 33.33%;
}

ul.center-cols {
  width: calc(100% + 60px);
  margin: -30px 0 0 -30px;
}

* + .center-text-cols,
* + .center-text-bottom {
  margin-top: 60px;
}

.bottom-flex {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* !Message Block - - - - - */
.message-text {
  padding-left: 100px;
  position: relative;
}

.message-text.single-message {
  padding-left: 0;
}

.message-text:before {
  content: attr(data-number);
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1em;
  position: absolute;
  font-family: "poppins", Arial, Verdana, sans-serif;
  font-weight: bold;
  top: 45px;
  left: 0;
  z-index: 1;
  color: rgba(0, 0, 0, 0.3);
  mix-blend-mode: multiply;
}

.message-text:after {
  content: "";
  width: 40px;
  height: 4px;
  position: absolute;
  top: 53px;
  left: 40px;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
  mix-blend-mode: multiply;
}

.message-text.single-message:before,
.message-text.single-message:after {
  display: none;
}

.message-block.dk-blue-bg .message-text:before {
  color: rgba(255, 255, 255, 0.3);
}

.message-block.dk-blue-bg .message-text:after {
  background: rgba(255, 255, 255, 0.3);
}

.message-arrows {
  position: absolute;
  bottom: 55px;
  right: 30px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  z-index: 101;
}

.message-arrows .slick-prev,
.message-arrows .slick-next {
  background-color: rgba(26, 31, 43, 0.3);
  position: static;
}

.message-block.dk-blue-bg .message-arrows .slick-prev,
.message-block.dk-blue-bg .message-arrows .slick-next {
  background: rgba(255, 255, 255, 0.1);
}

.message-arrows .slick-prev path,
.message-arrows .slick-next path {
  fill: #fff;
}

.message-arrows .slick-prev:hover,
.message-arrows .slick-next:hover {
  background: #141B28;
}

.message-block.dk-blue-bg .message-arrows .slick-prev:hover,
.message-block.dk-blue-bg .message-arrows .slick-next:hover {
  background: #D8B5EA;
}

.message-block.dk-blue-bg .message-arrows .slick-prev:hover path,
.message-block.dk-blue-bg .message-arrows .slick-next:hover path {
  fill: #141B28;
}

.message-count {
  position: absolute;
  bottom: 25px;
  right: 30px;
  color: #fff;
  display: flex;
  gap: 5px;
  align-items: baseline;
}

.current-count {
  font-size: 1.25rem;
  line-height: 1.3em;
}

.total-count {
  font-size: 0.9375rem;
  line-height: 1.3em;
}

/* !Gallery Block - - - - - */
* + .gallery-bottom {
  margin-top: 70px;
}

.lg-counter {
  font-family: "poppins", Arial, Verdana, sans-serif;
  font-weight: 500;
}

.grid-sizer,
.grid-item {
  width: 33.33%;
  padding: 10px;
}

.gallery-wrap {
  width: calc(100% + 20px);
  margin-left: -10px;
}

.gallery-hover {
  position: relative;
  display: block;
}

.gallery-hover:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: url(images/search-white.svg) no-repeat right 15px bottom 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.35s ease-in-out;
}

.gallery-hover:hover:before {
  opacity: 1;
}

/* !Full Image - - - - - */
.full-screen {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
}

.full-screen-bottom {
  display: flex;
  justify-content: flex-end;
}

.full-screen-top {
  max-width: 60%;
}

/* !Half Media - - - - - */
.half-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  grid-auto-rows: 1fr;
}

.half-left {
  padding: 0 60px;
}

/* !Links - - - - - */
.pill-list,
ul.header-cat-list {
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.pill {
  background: #F0F1ED;
  color: #141B28;
  font-size: 0.875rem;
  line-height: 1em;
  padding: 12px 18px 10px 18px;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.pill-list li:nth-child(even) .pill {
  background: #F2665E;
}

.header-cat-list li:nth-child(3n+1) .pill {
  background: #D8B5EA;
}

.header-cat-list li:nth-child(3n+2) .pill {
  background: #D6E031;
}

.header-cat-list li:nth-child(3n+3) .pill {
  background: #F2665E;
}

* + ul.pill-list,
* + ul.header-cat-list {
  margin-top: 30px;
}

* + ul.links-list {
  margin-top: 45px;
}

ul.links-list li + li {
  border-top: 1px solid #141B28;
}

a.list-link {
  display: block;
  position: relative;
  font-size: 1.3125rem;
  color: #141B28;
  padding: 17px 30px 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  font-weight: bold;
}

a.list-link:hover {
  color: #F0F1ED;
}

a.list-link:before {
  content: "";
  width: 16px;
  height: 17px;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
  background: url(images/angle-arrow.svg) no-repeat center;
  transform: translate(0, -50%);
  transition: all 0.35s ease-in-out;
}

.half-max {
  max-width: 500px;
  margin: 0 auto;
  padding: 60px 0;
}

.half-media,
.half-image,
.half-right {
  height: 100%;
}

video {
  display: block;
  width: 100%;
  height: auto;
}

.half-image video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

/* !List Block - - - - - */
.list-outer-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  grid-auto-rows: auto;
}

ul.list-grid {
  gap: 30px;
}

.sub13 p {
  margin: 0;
}

a.big-button.toggle-list {
  display: none;
}

/* !Image + Pills - - - - - */
.pills-block.no-pad:before {
  content: "";
  width: 100%;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #fff;
}

.pills-block.no-pad .alt-content {
  padding-top: 130px;
  padding-bottom: 10px;
}

ul.pill-links {
  width: 250px;
}

.mobile-pill-links {
  display: none;
}

ul.pill-links li + li {
  margin-top: 25px;
}

a.pill-link {
  min-height: 84px;
  border-radius: 100px;
  background: #F2665E;
  color: #141B28;
  display: grid;
  padding: 12px 30px 12px 12px;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  font-size: 0.875rem;
  line-height: 1.3em;
  align-items: center;
}

.pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 120%;
  padding: 15px;
}

ul.pill-links li:nth-child(even) a.pill-link {
  background: #D8B5EA;
}

.page-block.purple-bg ul.pill-links li:nth-child(even) a.pill-link {
  background: #141B28;
  color: #fff;
}

a.pill-link:hover {
  background: #F0F1ED !important;
  color: #141B28 !important;
}

.page-block.white-bg a.pill-link:hover,
.page-block.vlt-grey-bg a.pill-link:hover {
  background: #141B28 !important;
  color: #fff !important;
}

.pills-block ul.pill-links {
  position: absolute;
  bottom: 80px;
  left: -72px;
}

.page-block.pills-block.no-pad {
  padding-bottom: 60px;
}

.page-block.bg + .page-block.pills-block,
.page-block.pills-block:first-child {
  margin-top: 50px;
}

/* !Text + Sidebar - - - - - */
.text-side-grid {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 80px;
}

* + .side-section {
  margin-top: 35px;
}

.side-section .sub18 + .text.small-text {
  margin-top: 10px;
}

/* !Half Gallery - - - - - */
.half-gallery-block {
  overflow: hidden;
}

.half-gallery-wide {
  width: calc(100% + 30px);
  margin-left: -30px;
}

.half-gallery-right {
  padding-right: 40px;
}

.half-gallery-grid {
  display: grid;
  grid-template-columns: 54% minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.half-gallery-block .slick-next {
  position: absolute;
  top: 50px;
  right: -20px;
  background: #fff;
  transform: none;
}

.half-gallery-block .slick-prev {
  position: absolute;
  top: 50px;
  left: auto;
  right: 30px;
  background: #fff;
  transform: none;
}

.half-gallery-block.white-bg .slick-next,
.half-gallery-block.white-bg .slick-prev,
.half-gallery-block.vlt-grey-bg .slick-next,
.half-gallery-block.vlt-grey-bg .slick-prev {
  background: #D8B5EA;
}

.half-gallery-block .slick-next:hover,
.half-gallery-block .slick-prev:hover,
.half-gallery-block.white-bg .slick-next:hover,
.half-gallery-block.white-bg .slick-prev:hover,
.half-gallery-block.vlt-grey-bg .slick-next:hover,
.half-gallery-block.vlt-grey-bg .slick-prev:hover {
  background: #D6E031;
}

/* !People Block - - - - - */
* + .people-bottom {
  margin-top: 80px;
}

.people-table {
  padding: 30px;
  overflow: hidden;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  align-items: center;
  padding: 15px 40px 15px 0;
  position: relative;
}

.table-row.has-image {
  grid-template-columns: 50px 1fr 1fr 1fr;
}

.table-row + .table-row {
  border-top: 1px dashed rgba(26, 31, 43, 0.3);
}

.table-image {
  border-radius: 120%;
  overflow: hidden;
  width: 50px;
}

.table-text {
  font-size: 1rem;
  line-height: 1.3em;
}

a.table-row {
  position: relative;
  color: #141B28;
}

a.table-row div {
  position: relative;
  z-index: 10;
}

a.table-row:before {
  content: "";
  width: 16px;
  height: 17px;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 10;
  background: url(images/angle-arrow.svg) no-repeat center;
  transform: translate(0, -50%);
  transition: all 0.35s ease-in-out;
}

a.table-row:after {
  content: "";
  width: 0;
  height: calc(100% + 2px);
  background: #D6E031;
  transition: 0.5s ease-in-out;
  position: absolute;
  top: -1px;
  right: -30px;
  z-index: 1;
}

a.table-row:hover:after {
  right: auto;
  left: -30px;
  width: calc(100% + 60px);
}

/* !Card Slider - - - - - */
.card-slide {
  padding-right: 35px;
  width: 415px;
}

* + .card-text {
  margin-top: 25px;
}

.cards-slider-bottom {
  padding-left: 90px;
}

.cards-slider-top {
  padding: 0 90px;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 80px;
  max-width: 1400px;
}

.card-right-text + .arrow-button {
  margin-top: 35px;
}

* + .cards-slider-bottom {
  margin-top: 90px;
}

.cards-border {
  border-top: 2px solid #fff;
  padding-top: 90px;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
}

.cards-bottom-left .slick-prev,
.cards-bottom-left .slick-next {
  background: #fff;
  top: 0;
  transform: none;
  left: 0;
  width: 50px;
  height: 50px;
}

.cards-bottom-left .slick-next {
  right: auto;
  left: 70px;
}

.cards-bottom-left .slick-prev:hover,
.cards-bottom-left .slick-next:hover {
  background: #D6E031;
}

.card-slider-wrap {
  width: calc(100% + 1000px);
}

.test-card {
  padding: 30px;
  height: 100%;
}

.test-card-top.has-image {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 30px;
  align-items: center;
}

.test-card-top.has-image .test-image-label {
  text-align: right;
}

.test-image {
  width: 60px;
  border-radius: 120%;
  overflow: hidden;
}

* + .test-card-bottom {
  margin-top: 40px;
}

* + .test-name {
  margin-top: 25px;
}

.card-slider .slick-track {
  display: flex !important;
}

.card-slider .slick-slide {
  height: inherit !important;
}

.card-slider .card-slide {
  height: 100%;
}

.card-slide .slick-prev,
.card-slide .slick-next {
  display: none;
}

/* !Form Block - - - - - */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 60px;
}

* + .form-grid {
  margin-top: 45px;
}

.form-text + .page-form {
  margin-top: 30px;
}

ul.circle-links li + li {
  margin-top: 15px;
}

ul.circle-links a.circle-link:hover {
  color: #141B28;
}

a.side-link:hover {
  color: #fff;
}

ul.social circle,
ul.social path {
  transition: all 0.35s ease-in-out;
}

ul.social.form-social circle {
  fill: #141B28;
}

ul.social.form-social path {
  fill: #fff;
}

ul.social.form-social a:hover {
  opacity: 1;
}

ul.social.form-social a:hover circle {
  fill: #fff;
}

ul.social.form-social a:hover path {
  fill: #141B28;
}

.form-side + .form-side {
  margin-top: 20px;
}

a.side-link {
  font-size: 0.875rem;
  line-height: 1.3em;
}

/* !Form Fields - - - - - */
.gfield {
  margin: 0;
  clear: both;
}

.gfield_error.gfield {
  margin-bottom: 20px;
}

input.medium,
input.large,
input.small,
select,
textarea,
.ginput_complex input,
.ginput_product_price_wrapper input[type=text],
.gfield--type-product input[type=number],
input.datepicker,
.post-password-form input[type=password] {
  background: #fff;
  border-radius: 30px;
  height: 60px;
  font-size: 1rem;
  font-family: "poppins", Arial, Verdana, sans-serif;
  color: #141B28;
  padding: 10px 30px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
}

.post-password-form input[type=password] {
  border: 1px solid #888;
}

select {
  background: url(images/select-arrow.svg) no-repeat right 20px center #fff;
  padding-right: 52px;
}

.mobile-cats select {
  height: 50px;
  padding: 8px 40px 8px 25px;
}

textarea {
  resize: none;
  height: 150px;
  padding: 30px;
}

.gform_validation_container {
  display: none !important;
}

.gfield_label,
.ginput_complex label,
.ginput_container_creditcard legend,
.gfield--type-choice legend {
  color: #141B28;
  font-size: 0.75rem;
  padding-bottom: 10px;
  font-family: "poppins", Arial, Verdana, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3em;
  display: block;
}

.gform_submission_error {
  padding-bottom: 20px;
  font-weight: bold;
  color: rgb(161.5763546798, 50.4926108374, 43.4236453202) !important;
  font-size: 1.25rem;
  line-height: 1.4em;
  font-weight: bold;
  padding-bottom: 30px;
}

.validation_message,
.gfield_validation_message,
.gfield_description,
.gfield--type-html {
  padding-top: 15px;
  color: #141B28;
  font-style: italic;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4em;
  clear: both;
}

.validation_message,
.gfield_validation_message {
  color: rgb(161.5763546798, 50.4926108374, 43.4236453202);
}

.gform_confirmation_message {
  color: #141B28;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.4em;
}

fieldset {
  padding: 0;
  margin: 0;
  border: none;
}

.gfield_radio,
.gfield_checkbox,
.gfield--type-consent {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
  display: inline-block;
  width: 100%;
}

.gfield--type-consent legend {
  display: none;
}

fieldset.gfield--type-choice {
  clear: both;
}

fieldset.gfield--type-choice legend {
  padding-top: 20px;
}

.gfield_radio .gchoice,
.gfield_checkbox .gchoice,
.gfield--type-consent {
  text-align: left;
  width: calc(50% - 4px);
  display: inline-block;
  padding: 0 25px 0 36px;
  margin: 15px 0 0 0;
  position: relative;
  vertical-align: top;
}

.gfield--type-consent {
  width: 100%;
  margin-bottom: 20px;
}

.gfield_radio label,
.gfield_checkbox label,
.gfield--type-consent label {
  font-size: 0.875rem;
  display: block;
  font-family: "poppins", Arial, Verdana, sans-serif;
  color: #141B28;
  font-weight: bold;
}

.gfield_radio input,
.gfield_checkbox input,
.gfield--type-consent input {
  width: 24px;
  height: 24px;
  border: 3px solid #fff;
  background: #fff;
  border-radius: 120%;
  -webkit-appearance: none;
  display: inline-block;
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 1;
}

.woocommerce-terms-and-conditions-wrapper input[type=checkbox] {
  top: 1px;
}

.woocommerce-form-login__rememberme,
.remember_me label {
  position: relative;
  padding-left: 34px;
  top: 0;
}

.remember_me label {
  margin-top: 20px;
}

.gfield_checkbox input,
.offset input[type=checkbox],
.woocommerce input#rememberme,
.woocommerce-terms-and-conditions-wrapper input[type=checkbox],
.remember_me input[type=checkbox],
.gfield--type-consent input {
  border-radius: 5px;
}

.woocommerce input#rememberme {
  padding: 0;
  margin: 0;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme,
#loginform .sensei-login-submit a {
  display: inline-block;
  margin-top: 10px;
  margin-left: 20px;
}

.gfield_radio input:checked {
  background: #141B28;
}

.gfield_checkbox input:checked,
.offset input[type=checkbox],
.woocommerce input#rememberme:checked,
.woocommerce-terms-and-conditions-wrapper input[type=checkbox]:checked,
.remember_me input[type=checkbox]:checked,
.gfield--type-consent input:checked {
  background: url(images/check.svg) no-repeat center #fff;
}

.gfield:first-child .gsection_title {
  margin-top: 0;
}

.gform_fields {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.gfield {
  flex-basis: 100%;
}

.gfield--width-half {
  flex-basis: calc(50% - 10px);
}

.ginput_complex {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.gfield--type-time .ginput_complex {
  gap: 10px;
}

.hour_minute_colon {
  width: 3px;
  position: relative;
  top: 46x;
}

.screen-reader-text {
  display: none;
}

.gfield--type-time .ginput_container {
  flex-basis: calc(33.33% - 11px);
}

.ginput_complex.ginput_container_address span:nth-child(1),
.ginput_complex.ginput_container_address span:nth-child(2) {
  flex-basis: 100%;
}

.ginput_complex.ginput_container_address span:nth-child(3) {
  flex-basis: 40%;
}

.ginput_complex.ginput_container_address span:nth-child(4) {
  flex-basis: calc(30% - 20px);
}

.ginput_complex.ginput_container_address span:nth-child(5) {
  flex-basis: calc(30% - 20px);
}

.ginput_complex.ginput_container_address span:nth-child(6) {
  flex-basis: 100%;
}

.gfield_description:last-child {
  margin-top: 5px;
}

legend + .gfield_description {
  margin-top: 0;
}

.gform_wrapper {
  text-align: left;
}

.gform_ajax_spinner {
  margin: 20px auto 0 auto;
  border: 4px solid rgba(26, 31, 43, 0.2);
  border-left: 4px solid #141B28;
  animation: spinner 1.1s infinite linear;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.gfield_required_text,
.gfield--input-type-consent legend {
  display: none !important;
}

.gfield_required:after {
  content: " *";
  color: rgb(161.5763546798, 50.4926108374, 43.4236453202);
  font-family: "poppins", Arial, Verdana, sans-serif;
  font-weight: bold;
  text-indent: 0;
  position: relative;
  transition: all 0.35s ease-in-out;
}

h3.gsection_title,
.text h3.gsection_title {
  font-family: "poppins", Arial, Verdana, sans-serif;
  font-weight: 600;
  border-bottom: 1px solid rgba(26, 31, 43, 0.2);
  color: #141B28;
  font-size: 1.5rem;
  padding-bottom: 10px;
  line-height: 1.3em;
  margin: 50px 0 30px 0;
}

.gfield:first-child .gsection_title {
  margin-top: 0;
}

.ginput_complex {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.ginput_complex.ginput_container_address span:nth-child(1),
.ginput_complex.ginput_container_address span:nth-child(2) {
  flex-basis: 100%;
}

.ginput_complex.ginput_container_address span:nth-child(3) {
  flex-basis: 40%;
}

.ginput_complex.ginput_container_address span:nth-child(4) {
  flex-basis: calc(30% - 20px);
}

.ginput_complex.ginput_container_address span:nth-child(5) {
  flex-basis: calc(30% - 20px);
}

.ginput_complex.ginput_container_address span:nth-child(6) {
  flex-basis: 100%;
}

.gfield_description:last-child {
  margin-top: 5px;
}

legend + .gfield_description {
  margin-top: 0;
}

.text .gform_wrapper {
  margin-top: 40px;
}

.text .gform_wrapper:first-child {
  margin-top: 0;
}

.gform_drop_area {
  border: 1px dashed rgba(26, 31, 43, 0.2);
  padding: 40px 20px;
  margin: 5px 0;
  text-align: center;
}

.gform_drop_instructions {
  display: block;
  margin-bottom: 15px;
  font-family: "poppins", Arial, Verdana, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

#extensions_message {
  display: block;
  margin-top: 3px;
}

.ginput_preview {
  font-size: 0.9375rem;
  line-height: 16px;
  font-weight: normal;
  margin-bottom: 8px;
}

.ginput_preview button {
  width: 16px;
  height: 16px;
  z-index: 9;
  margin-right: 5px;
  position: relative;
  top: 1px;
  display: inline-block;
  border: none;
  padding: 0;
  text-indent: -9999px;
  background: url(images/cancel.svg) no-repeat;
}

.gform_footer img {
  display: block;
  margin: 30px auto 0 auto;
  width: 24px;
  height: 24px;
  clear: both;
}

.ginput_product_price_wrapper {
  font-size: 1rem;
  line-height: 1.4em;
  margin-bottom: 10px;
  border: none;
  font-family: "poppins", Arial, Verdana, sans-serif;
  margin: 0;
  font-weight: 500;
}

.ginput_product_price_wrapper .gform-field-label {
  margin-bottom: 5px;
}

.ginput_product_price_wrapper input[type=text] {
  font-size: 1rem;
  line-height: 1.4em;
  border: none;
  font-family: "poppins", Arial, Verdana, sans-serif;
  margin: 0;
}

.gfield--type-product input[type=number] {
  margin-left: 10px;
  max-width: 90px;
  display: inline-block;
  vertical-align: middle;
  margin-top: 10px;
}

.gfield--type-product .ginput_quantity_label {
  display: inline-block;
  vertical-align: middle;
  margin: 10px 0 0 0 !important;
}

.gfield--type-total {
  font-family: "poppins", Arial, Verdana, sans-serif;
  color: #141B28;
  margin: 40px 0;
}

.gfield--type-total .gfield_label {
  font-size: 1.875rem;
  line-height: 1.3em;
  font-weight: bold;
  display: inline-block;
  font-family: "poppins", Arial, Verdana, sans-serif;
  vertical-align: top;
  padding: 0 15px 0 0;
  color: #141B28;
  position: relative;
  top: 1px;
  text-transform: capitalize;
}

.ginput_container_total {
  font-weight: bold;
  display: inline-block;
  font-family: "poppins", Arial, Verdana, sans-serif;
  vertical-align: top;
}

input.ginput_total {
  border: none;
  font-family: "poppins", Arial, Verdana, sans-serif;
  font-size: 1.875rem;
  line-height: 1.3em;
  font-weight: bold;
  color: #141B28;
  background: none;
  padding: 0;
}

.ginput_container_creditcard {
  max-width: 475px;
}

.ginput_container_creditcard span {
  display: block;
  width: 100%;
  float: none;
}

.ginput_container_creditcard span + span {
  margin-top: 20px;
}

.ginput_cardinfo_left {
  margin-bottom: 20px;
}

.gform_card_icon_container,
.ginput_container_creditcard span.ginput_card_security_code_icon {
  display: none;
}

.gform_footer {
  padding-top: 20px;
}

/* !Datepicker - - - - - */
.ui-datepicker {
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  position: absolute;
  top: -9999px;
  left: -9999px;
  transform: translate(0, 15px);
  width: 280px;
  font-family: "poppins", Arial, Verdana, sans-serif;
  border-radius: 20px;
}

.ui-datepicker-title {
  padding: 10px 0;
}

table.ui-datepicker-calendar td {
  padding: 4px 5px;
  text-align: center;
  color: #fff;
}

table.ui-datepicker-calendar th {
  color: #141B28;
}

.ui-datepicker-title select {
  width: calc(50% - 8px);
  margin: 0 0 0 8px;
  background-color: #fff;
  color: #141B28;
  font-size: 0.8125rem;
  font-family: "poppins", Arial, Verdana, sans-serif;
  font-weight: 600;
  height: 40px;
  text-transform: uppercase;
  border-radius: 0 !important;
  padding: 0 25px 0 10px;
}

.ui-datepicker-title select:first-child {
  margin: 0 8px 0 0;
}

a.ui-datepicker-prev {
  width: 50%;
  padding: 0 5px 3px 15px;
  line-height: 20px;
  font-weight: bold;
  background: url(images/small-arrow-left.svg) no-repeat left 4px;
  display: inline-block;
  text-transform: uppercase;
  color: #141B28;
}

a.ui-datepicker-next {
  width: 50%;
  padding: 0 15px 3px 5px;
  text-align: right;
  line-height: 20px;
  font-weight: bold;
  background: url(images/small-arrow-right.svg) no-repeat right 4px;
  display: inline-block;
  text-transform: uppercase;
  color: #141B28;
}

a.ui-datepicker-prev:hover,
a.ui-datepicker-next:hover {
  color: #F2665E;
}

a.ui-datepicker-prev span {
  padding-left: 10px;
  background: #fff;
  margin-left: -8px;
}

a.ui-datepicker-next span {
  padding-right: 10px;
  background: #fff;
  margin-right: -8px;
}

.ui-datepicker-calendar {
  width: 100%;
}

table.ui-datepicker-calendar td a {
  color: rgba(26, 31, 43, 0.3);
  font-weight: 600;
  display: block;
}

table.ui-datepicker-calendar td.ui-datepicker-today a,
table.ui-datepicker-calendar td a:hover {
  color: #F2665E;
}

.ginput_container_date span,
.gfield--type-date .screen-reader-text {
  display: none;
}

/* !Hide Captcha Badge - - - - - */
.grecaptcha-logo,
.grecaptcha-badge {
  visibility: hidden !important;
}

/* !Blog Bar - - - - - */
.page-block.blog-bar.no-pad {
  padding: 15px 70px;
}

.page-block.blog-bar.no-pad.events-bar {
  padding-right: 20px;
  padding-right: 20px;
}

.page-block.blog-bar:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(26, 31, 43, 0.1);
  mix-blend-mode: multiply;
}

ul.cat-list {
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

a.cat-link {
  background: #F0F1ED;
  color: #141B28;
  font-size: 0.875rem;
  line-height: 1em;
  padding: 14px 18px 12px 18px;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  display: block;
}

a.cat-link:hover,
a.cat-link.active {
  background: #141B28;
  color: #fff;
}

a.cat-link.kit-link {
  background: #141B28;
  color: #F0F1ED;
  display: inline-grid;
  grid-template-columns: 1fr 12px;
  gap: 10px;
  align-items: center;
}

a.cat-link.kit-link path {
  fill: #F0F1ED;
  transition: all 0.35s ease-in-out;
}

a.cat-link.kit-link:hover {
  background: #F0F1ED;
  color: #141B28;
}

a.cat-link.kit-link:hover path {
  fill: #141B28;
}

a.cat-link.kit-link svg {
  width: 12px;
  height: auto;
  position: relative;
  top: -2px;
}

a.search-toggle {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 101;
}

a.search-toggle:hover {
  opacity: 0.5;
}

.page-block.bg.search-slide {
  padding: 40px 0;
  display: none;
}

.mobile-cats {
  display: none;
}

/* !Blog Landing - - - - - */
.blog-top {
  display: grid;
  grid-template-columns: 59% 1fr;
}

.blog-top-left {
  padding-right: 70px;
  border-right: 1px solid rgba(26, 31, 43, 0.2);
}

.blog-top-right {
  padding-left: 70px;
}

.blog-top-right ul.blog-mid li + li {
  margin-top: 70px;
}

ul.blog-mid.grid {
  gap: 70px;
}

.grid-post-image {
  display: block;
  margin: 0 0 35px 0;
  position: relative;
}

.dark-hover:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(26, 31, 43, 0);
  transition: all 0.35s ease-in-out;
}

.dark-hover:hover:after {
  background: rgba(26, 31, 43, 0.2);
}

a.grid-post-image.dark-hover:before {
  content: "";
  width: 26px;
  height: 26px;
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: url(images/arrow-right.svg) no-repeat center #D8B5EA;
  background-size: 12px auto;
  border-radius: 120%;
  overflow: hidden;
  opacity: 0;
  z-index: 10;
  transition: all 0.35s ease-in-out;
}

a.grid-post-image.dark-hover:hover:before {
  opacity: 1;
}

.grid-post .label14,
.blog-header-block .label14 {
  margin-bottom: 20px;
}

/* !Homepage Header - - - - - */
.home-nav {
  height: 140px;
}

a.home-logo {
  width: 220px;
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translate(0, -50%);
}

.page-block.home-header-block.bg {
  padding: 0 0 100px 0;
}

.home-nav ul.nav {
  height: 140px;
}

.page-template-homepage .nav-toggle {
  top: 52px;
}

.scrolled .page-template-homepage .nav-toggle,
.first-scrolled .page-template-homepage .nav-toggle,
.nav-active .nav-toggle {
  top: 25px;
}

.home-header-image svg a {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.home-header-image svg a:nth-child(1) {
  transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}
.home-header-image svg a:nth-child(2) {
  transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  -webkit-transition-delay: 0.4s;
}
.home-header-image svg a:nth-child(3) {
  transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  -webkit-transition-delay: 0.6s;
}
.home-header-image svg a:nth-child(4) {
  transition-delay: 0.8s;
  -moz-transition-delay: 0.8s;
  -webkit-transition-delay: 0.8s;
}
.home-header-image svg a:nth-child(5) {
  transition-delay: 1s;
  -moz-transition-delay: 1s;
  -webkit-transition-delay: 1s;
}
.home-header-image svg a:nth-child(6) {
  transition-delay: 1.2s;
  -moz-transition-delay: 1.2s;
  -webkit-transition-delay: 1.2s;
}
.home-header-image svg a:nth-child(7) {
  transition-delay: 1.4s;
  -moz-transition-delay: 1.4s;
  -webkit-transition-delay: 1.4s;
}
.home-header-image svg a:nth-child(8) {
  transition-delay: 1.6s;
  -moz-transition-delay: 1.6s;
  -webkit-transition-delay: 1.6s;
}
.home-header-image svg a:nth-child(9) {
  transition-delay: 1.8s;
  -moz-transition-delay: 1.8s;
  -webkit-transition-delay: 1.8s;
}
.home-header-image svg a:nth-child(10) {
  transition-delay: 2s;
  -moz-transition-delay: 2s;
  -webkit-transition-delay: 2s;
}
.home-header-image svg a:nth-child(11) {
  transition-delay: 2.2s;
  -moz-transition-delay: 2.2s;
  -webkit-transition-delay: 2.2s;
}
.home-header-image svg a:nth-child(12) {
  transition-delay: 2.4s;
  -moz-transition-delay: 2.4s;
  -webkit-transition-delay: 2.4s;
}
.home-header-image svg a:nth-child(13) {
  transition-delay: 2.6s;
  -moz-transition-delay: 2.6s;
  -webkit-transition-delay: 2.6s;
}
.home-header-image svg a:nth-child(14) {
  transition-delay: 2.8s;
  -moz-transition-delay: 2.8s;
  -webkit-transition-delay: 2.8s;
}
.home-header-image svg a:nth-child(15) {
  transition-delay: 3s;
  -moz-transition-delay: 3s;
  -webkit-transition-delay: 3s;
}
.home-header-image svg a:nth-child(16) {
  transition-delay: 3.2s;
  -moz-transition-delay: 3.2s;
  -webkit-transition-delay: 3.2s;
}
.home-header-image svg a:nth-child(17) {
  transition-delay: 3.4s;
  -moz-transition-delay: 3.4s;
  -webkit-transition-delay: 3.4s;
}
.home-header-image svg a:nth-child(18) {
  transition-delay: 3.6s;
  -moz-transition-delay: 3.6s;
  -webkit-transition-delay: 3.6s;
}
.home-header-image svg a:nth-child(19) {
  transition-delay: 3.8s;
  -moz-transition-delay: 3.8s;
  -webkit-transition-delay: 3.8s;
}
.home-header-image svg a:nth-child(20) {
  transition-delay: 4s;
  -moz-transition-delay: 4s;
  -webkit-transition-delay: 4s;
}
.home-header-image svg a:nth-child(21) {
  transition-delay: 4.2s;
  -moz-transition-delay: 4.2s;
  -webkit-transition-delay: 4.2s;
}
.home-header-image svg a:nth-child(22) {
  transition-delay: 4.4s;
  -moz-transition-delay: 4.4s;
  -webkit-transition-delay: 4.4s;
}
.home-header-image svg a:nth-child(23) {
  transition-delay: 4.6s;
  -moz-transition-delay: 4.6s;
  -webkit-transition-delay: 4.6s;
}
.home-header-image svg a:nth-child(24) {
  transition-delay: 4.8s;
  -moz-transition-delay: 4.8s;
  -webkit-transition-delay: 4.8s;
}
.home-header-image svg a:nth-child(25) {
  transition-delay: 5s;
  -moz-transition-delay: 5s;
  -webkit-transition-delay: 5s;
}
.home-header-image svg a:nth-child(26) {
  transition-delay: 5.2s;
  -moz-transition-delay: 5.2s;
  -webkit-transition-delay: 5.2s;
}
.home-header-image svg a:nth-child(27) {
  transition-delay: 5.4s;
  -moz-transition-delay: 5.4s;
  -webkit-transition-delay: 5.4s;
}
.home-header-image svg a:nth-child(28) {
  transition-delay: 5.6s;
  -moz-transition-delay: 5.6s;
  -webkit-transition-delay: 5.6s;
}
.home-header-image svg a:nth-child(29) {
  transition-delay: 5.8s;
  -moz-transition-delay: 5.8s;
  -webkit-transition-delay: 5.8s;
}
.home-header-image svg a:nth-child(30) {
  transition-delay: 6s;
  -moz-transition-delay: 6s;
  -webkit-transition-delay: 6s;
}
.home-header-image svg a:nth-child(31) {
  transition-delay: 6.2s;
  -moz-transition-delay: 6.2s;
  -webkit-transition-delay: 6.2s;
}
.home-header-image svg a:nth-child(32) {
  transition-delay: 6.4s;
  -moz-transition-delay: 6.4s;
  -webkit-transition-delay: 6.4s;
}
.home-header-image svg a:nth-child(33) {
  transition-delay: 6.6s;
  -moz-transition-delay: 6.6s;
  -webkit-transition-delay: 6.6s;
}
.home-header-image svg a:nth-child(34) {
  transition-delay: 6.8s;
  -moz-transition-delay: 6.8s;
  -webkit-transition-delay: 6.8s;
}
.home-header-image svg a:nth-child(35) {
  transition-delay: 7s;
  -moz-transition-delay: 7s;
  -webkit-transition-delay: 7s;
}
.home-header-image svg a:nth-child(36) {
  transition-delay: 7.2s;
  -moz-transition-delay: 7.2s;
  -webkit-transition-delay: 7.2s;
}
.home-header-image svg a:nth-child(37) {
  transition-delay: 7.4s;
  -moz-transition-delay: 7.4s;
  -webkit-transition-delay: 7.4s;
}
.home-header-image svg a:nth-child(38) {
  transition-delay: 7.6s;
  -moz-transition-delay: 7.6s;
  -webkit-transition-delay: 7.6s;
}
.home-header-image svg a:nth-child(39) {
  transition-delay: 7.8s;
  -moz-transition-delay: 7.8s;
  -webkit-transition-delay: 7.8s;
}
.home-header-image svg a:nth-child(40) {
  transition-delay: 8s;
  -moz-transition-delay: 8s;
  -webkit-transition-delay: 8s;
}
.home-header-image svg a:nth-child(41) {
  transition-delay: 8.2s;
  -moz-transition-delay: 8.2s;
  -webkit-transition-delay: 8.2s;
}
.home-header-image svg a:nth-child(42) {
  transition-delay: 8.4s;
  -moz-transition-delay: 8.4s;
  -webkit-transition-delay: 8.4s;
}
.home-header-image svg a:nth-child(43) {
  transition-delay: 8.6s;
  -moz-transition-delay: 8.6s;
  -webkit-transition-delay: 8.6s;
}
.home-header-image svg a:nth-child(44) {
  transition-delay: 8.8s;
  -moz-transition-delay: 8.8s;
  -webkit-transition-delay: 8.8s;
}
.home-header-image svg a:nth-child(45) {
  transition-delay: 9s;
  -moz-transition-delay: 9s;
  -webkit-transition-delay: 9s;
}
.home-header-image svg a:nth-child(46) {
  transition-delay: 9.2s;
  -moz-transition-delay: 9.2s;
  -webkit-transition-delay: 9.2s;
}
.home-header-image svg a:nth-child(47) {
  transition-delay: 9.4s;
  -moz-transition-delay: 9.4s;
  -webkit-transition-delay: 9.4s;
}
.home-header-image svg a:nth-child(48) {
  transition-delay: 9.6s;
  -moz-transition-delay: 9.6s;
  -webkit-transition-delay: 9.6s;
}
.home-header-image svg a:nth-child(49) {
  transition-delay: 9.8s;
  -moz-transition-delay: 9.8s;
  -webkit-transition-delay: 9.8s;
}
.home-header-image svg a:nth-child(50) {
  transition-delay: 10s;
  -moz-transition-delay: 10s;
  -webkit-transition-delay: 10s;
}

.loaded .home-header-image svg a {
  opacity: 1;
  transition: all 0.35s ease-in-out;
}

.loaded .home-header-image svg a:hover {
  opacity: 0.6;
}

.home-header-image svg {
  width: 100%;
  height: auto;
}

* + .home-header-bottom {
  margin-top: 40px;
}

/* !Accessibility Focus - - - - - */
* :focus-visible,
a:focus-visible,
a.nav-toggle:focus-visible,
input.gform_button:focus-visible {
  outline: 2px solid #FFCB05;
  outline-offset: 5px;
}

input.medium:focus-visible,
input.large:focus-visible,
input.small:focus-visible,
input.search-box:focus-visible,
select:focus-visible,
textarea:focus-visible,
.ginput_complex input:focus-visible,
.ginput_product_price_wrapper input[type=text]:focus-visible,
.gfield--type-product input[type=number]:focus-visible,
input.datepicker:focus-visible,
input[type=text]:focus-visible,
input[type=email]:focus-visible {
  outline: 2px solid #141B28;
  outline-offset: -2px;
}

#blogSearch input[type=text]:focus-visible,
.nav-wrap input.search-box:focus-visible,
.blog-header-block input.search-box:focus-visible {
  outline-color: #D6E031;
}

.page-block.yellow-bg * :focus-visible,
.page-block.yellow-bg a:focus-visible {
  outline-color: #141B28;
}

/* !Events Fix - - - - - */
body #tribe-events-pg-template {
  max-width: none;
  margin: 0;
  padding: 0;
}

/* !Logos - - - - - */
.logo-wrap {
  max-width: 350px;
  max-height: 233px;
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-wrap img {
  object-fit: contain;
  max-width: 350px;
  max-height: 233px;
  width: auto;
  height: auto;
}

.small-logo-list .logo-wrap {
  max-width: 200px;
  max-height: 133px;
}

.small-logo-list .logo-wrap img {
  max-width: 200px;
  max-height: 133px;
}

a.logo-wrap img {
  transition: all 0.35s ease-in-out;
}

a.logo-wrap:hover img {
  opacity: 0.6;
}

ul.logo-list {
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

* + ul.logo-list {
  margin-top: 50px;
}

.grid-event-image {
  aspect-ratio: 2/1;
}

/* !Search Results - - - - - */
ol.search-list {
  margin: 50px 0;
  padding-left: 20px;
}

ol.search-list li + li {
  margin-top: 40px;
}

ol.search-list .post-title + .text {
  margin-top: 10px;
}

ol.search-list .post-title {
  position: relative;
  top: 2px;
}

ol.search-list .post-title a {
  color: #141B28;
}

ol.search-list .post-title a:hover {
  color: #D8B5EA;
}

ol.search-list li::marker {
  font-weight: bold;
  color: #141B28;
  left: -5px;
}

.searchwp-highlight {
  background: none;
  color: inherit;
}

.load-status + .button {
  margin-top: 0;
}

.blog-header-block #searchform {
  max-width: none;
  margin-top: 40px;
}

/* !Embed Form - - - - - */
.form-slide {
  padding-top: 50px;
  display: none;
}

html .form-slide iframe {
  max-width: none !important;
  width: 100% !important;
}

/* !Password Pages - - - - - */
.post-password-form {
  margin-top: 20px;
  max-width: 650px;
}

.post-password-form input[type=password] {
  margin: 20px 0;
}

/* - - - Media Queries - - - */
@media only screen and (max-width: 1350px) {
  a.logo,
  a.home-logo {
    left: 35px;
  }
  a.nav-toggle {
    right: 35px;
  }
  ul.nav {
    gap: 35px;
    padding-right: 95px;
  }
  a.home-logo {
    width: 180px;
  }
  .inner {
    padding: 0 35px;
    max-width: 870px;
  }
  .inner.skinny {
    max-width: 620px;
  }
  .inner.mid {
    max-width: 1010px;
  }
  .inner.wide {
    max-width: 1150px;
  }
  .inner.vwide {
    max-width: 1210px;
  }
  .nav-wrap {
    padding-left: 50px;
    padding-right: 50px;
  }
  .nav-cols {
    gap: 50px;
  }
  ul.big-nav a {
    font-size: 4.375rem;
  }
  .nav-right {
    padding-top: 10px;
  }
  .sub24 {
    font-size: 1.375rem;
    line-height: 1.5em;
  }
  .sub30 {
    font-size: 1.75rem;
    line-height: 1.5em;
  }
  .sub32 {
    font-size: 1.875rem;
    line-height: 1.5em;
  }
  .sub42 {
    font-size: 2.5rem;
    line-height: 1.4em;
  }
  .sub50 {
    font-size: 2.75rem;
    line-height: 1.4em;
  }
  .sub52 {
    font-size: 3rem;
    line-height: 1.3em;
  }
  .sub74 {
    font-size: 3.75rem;
    line-height: 1.2em;
  }
  .sub92 {
    font-size: 5rem;
    line-height: 1.15em;
  }
  .head44 {
    font-size: 2.5rem;
    line-height: 1.4em;
  }
  .head48 {
    font-size: 2.625rem;
    line-height: 1.4em;
  }
  .head58 {
    font-size: 3.125rem;
    line-height: 1.3em;
  }
  .head72 {
    font-size: 3.75rem;
    line-height: 1.2em;
  }
  .head84 {
    font-size: 4.375rem;
    line-height: 1.1em;
  }
  .head88 {
    font-size: 4.75rem;
    line-height: 1.1em;
  }
  .head108 {
    font-size: 5rem;
    line-height: 1.15em;
  }
  .logo-wrap,
  .logo-wrap img {
    max-width: 300px;
    max-height: 200px;
  }
  .small-logo-list .logo-wrap,
  .small-logo-list .logo-wrap img {
    max-width: 180px;
    max-height: 120px;
  }
  ul.post-grid {
    gap: 60px 40px;
  }
  .alt-rowm,
  .text-side-grid,
  .text-top,
  .cards-slider-top,
  ul.blog-mid.grid {
    gap: 60px;
  }
  * + .text-bottom,
  * + .people-bottom,
  * + .center-text-cols,
  * + .center-text-bottom,
  * + .gallery-bottom,
  * + .cards-slider-bottom {
    margin-top: 60px;
  }
  .half-gallery-grid {
    grid-template-columns: 50% minmax(0, 1fr);
    gap: 60px;
  }
  .pills-block ul.pill-links {
    left: -30px;
  }
  .alt-image.pill-image {
    padding: 0 0 0 20px;
  }
  a.pill-link {
    grid-template-columns: 50px 1fr;
    min-height: 66px;
    gap: 15px;
    padding: 8px 25px 8px 8px;
  }
  .pill-icon {
    width: 50px;
    height: 50px;
    padding: 12px;
  }
  .half-left {
    padding: 0 40px;
  }
  .half-max {
    padding: 40px 0;
  }
  ul.list-grid.grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cards-slider-top {
    padding: 0 40px;
  }
  .cards-slider-bottom {
    padding-left: 40px;
  }
  .cards-border {
    padding-top: 60px;
  }
  .blog-top-left {
    padding-right: 50px;
  }
  .blog-top-right {
    padding-left: 50px;
  }
  .blog-top-right ul.blog-mid li + li {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 1023px) {
  /* Style adjustments for viewports that meet the condition */
  ul.nav,
  .footer-top-right,
  .message-text:after,
  ul.cat-list {
    display: none;
  }
  a.logo,
  a.home-logo {
    left: 30px;
  }
  a.nav-toggle {
    right: 30px;
  }
  a.home-logo {
    width: 180px;
  }
  .nav-cols,
  .footer-top,
  .footer-bottom,
  .text-side-grid,
  .text-top,
  .table-row,
  .table-row.has-image,
  .form-grid,
  .half-grid,
  .cards-slider-top,
  .blog-top,
  ul.blog-mid.grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 35px;
  }
  .table-row {
    gap: 10px;
    grid-auto-rows: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 0;
  }
  a.table-row:before {
    top: 40px;
  }
  .half-gallery-grid {
    display: block;
  }
  .half-gallery-right {
    padding: 40px 35px;
  }
  .half-gallery-wide {
    width: 100%;
    margin-left: 0;
  }
  .half-gallery-image.big-rounded,
  .half-gallery-image.rounded {
    border-radius: 0;
  }
  .page-block.half-gallery-block.bg {
    padding: 0;
  }
  .inner {
    padding: 0 30px;
    max-width: 860px;
  }
  .inner.skinny {
    max-width: 610px;
  }
  .inner.mid {
    max-width: 1000px;
  }
  ul.big-nav a {
    font-size: 3.125rem;
  }
  ul.big-nav li + li {
    margin-top: 15px;
  }
  ul.small-nav a {
    font-size: 1.375rem;
  }
  ul.small-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  ul.small-nav li,
  ul.small-nav li + li {
    margin-top: 0;
  }
  #searchform {
    width: 100%;
  }
  .nav-wrap {
    padding-top: 100px;
    padding-left: 30px;
    padding-right: 30px;
  }
  * + .nav-search {
    margin-top: 40px;
  }
  .nav-wrap a.logo {
    display: block;
  }
  .footer-top {
    padding: 50px 0 30px 0;
  }
  .footer-bottom {
    padding: 0;
    display: block;
  }
  ul.social.footer-social {
    justify-content: center;
  }
  .footer-bottom-left {
    width: calc(100% + 60px);
    background: #fff;
    padding: 15px 30px;
    margin-left: -30px;
    text-align: center;
  }
  .footer-bottom-right {
    padding: 0 0 30px 0;
  }
  .footer-bottom.reverse {
    direction: ltr;
  }
  .footer-sep {
    padding: 0 5px;
  }
  .page-block + .page-block {
    margin-top: 60px;
  }
  .center-text-block.white-bg.block-down-arrow:after {
    bottom: -60px;
  }
  .page-block.bg,
  .block-pad,
  .block-pad-top {
    padding: 60px 0;
  }
  .page-block.bg.small-block-pad,
  .small-block-pad {
    padding: 45px 0;
  }
  .big-block-pad,
  .page-block.bg.big-block-pad {
    padding: 90px 0;
  }
  .page-block:last-child {
    padding-bottom: 60px;
  }
  .page-block:first-child {
    padding-top: 60px;
  }
  .block-pad-top {
    padding-top: 60px;
  }
  .block-pad-bottom {
    padding-bottom: 60px;
  }
  .big-block-pad:first-child,
  .page-block.bg.big-block-pad:first-child {
    padding-top: 90px;
  }
  .big-block-pad:last-child,
  .page-block.bg.big-block-pad:last-child {
    padding-bottom: 90px;
  }
  ul.post-grid {
    gap: 50px 30px;
  }
  .text + .arrow-link {
    margin-top: 30px;
  }
  .text-bottom .sub32 + .text,
  .text + .arrow-button,
  .text + .big-button,
  .head84 + .big-button,
  .head58 + .big-button,
  .head72 + .large-text {
    margin-top: 35px;
  }
  .label14 + .head72,
  .alt-row + .alt-row,
  * + .text-bottom,
  * + .people-bottom,
  * + .center-text-cols,
  * + .center-text-bottom,
  * + .gallery-bottom,
  * + .form-grid,
  * + ul.links-list,
  * + .cards-slider-bottom,
  * + .acc-bottom {
    margin-top: 40px;
  }
  .alt-row,
  ul.blog-mid.grid {
    gap: 40px;
  }
  .alt-content {
    padding-top: 30px;
  }
  .half-gallery-block .slick-prev,
  .half-gallery-block .slick-next {
    top: auto;
    bottom: 0;
    transform: translate(0, 50%);
  }
  .half-gallery-block .slick-next {
    right: 20px;
  }
  .half-gallery-block .slick-prev {
    right: 70px;
    left: auto;
  }
  .text-top-left {
    text-align: left;
  }
  .page-block.message-block.big-block-pad {
    padding-top: 60px;
    padding-bottom: 130px;
  }
  .message-text:before {
    position: static;
    padding-bottom: 5px;
    display: block;
  }
  .message-text {
    padding-left: 0;
  }
  .grid-sizer,
  .grid-item {
    padding: 5px;
  }
  .half-grid {
    gap: 0;
    grid-auto-rows: auto;
  }
  .half-left {
    padding: 0 30px;
  }
  .half-max {
    padding: 40px 0;
    max-width: none;
    text-align: center;
  }
  .links-block .half-max {
    text-align: left;
  }
  .cta-flex {
    gap: 15px 25px;
  }
  .page-block.cta-strip-block.bg {
    padding: 30px 0;
  }
  a.list-link {
    font-size: 1.0625rem;
  }
  .acc-toggle {
    padding-right: 30px;
  }
  .acc-item {
    border-radius: 10px;
  }
  .acc-toggle:before {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
  }
  .acc-content {
    padding-top: 5px;
  }
  .cards-slider-top {
    padding: 0 30px;
  }
  .cards-slider-bottom {
    padding-left: 30px;
  }
  .cards-border {
    padding-top: 40px;
  }
  .blog-top-left {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(26, 31, 43, 0.2);
    padding-bottom: 40px;
  }
  .blog-top-right {
    padding-left: 0;
    padding-top: 5px;
  }
  .blog-top-right ul.blog-mid li + li {
    margin-top: 40px;
  }
  ul.blog-mid.grid {
    gap: 40px;
  }
  .blog-top-border {
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(26, 31, 43, 0.2);
  }
  .mobile-cats {
    display: block;
  }
  .page-block.blog-bar.no-pad {
    display: grid;
    grid-template-columns: 1fr 40px;
    gap: 15px;
    align-items: center;
    padding: 15px;
  }
  .blog-bar a.search-toggle {
    width: 40px;
    height: 50px;
    position: static;
  }
  .page-block.blog-bar.events-bar.no-pad {
    display: block;
  }
}
@media only screen and (max-width: 900px) {
  .pill-image ul.pill-links {
    display: none;
  }
  ul.big-nav a {
    font-size: 2.625rem;
  }
  ul.small-nav a {
    font-size: 1.125rem;
  }
  .sub24 {
    font-size: 1.375rem;
    line-height: 1.5em;
  }
  .sub30 {
    font-size: 1.625rem;
    line-height: 1.5em;
  }
  .sub32 {
    font-size: 1.75rem;
    line-height: 1.5em;
  }
  .sub42 {
    font-size: 2.375rem;
    line-height: 1.4em;
  }
  .sub50 {
    font-size: 2.625rem;
    line-height: 1.4em;
  }
  .sub52 {
    font-size: 2.875rem;
    line-height: 1.3em;
  }
  .sub74 {
    font-size: 3.375rem;
    line-height: 1.2em;
  }
  .sub92 {
    font-size: 4.375rem;
    line-height: 1.15em;
  }
  .head44 {
    font-size: 2.375rem;
    line-height: 1.4em;
  }
  .head48 {
    font-size: 2.5rem;
    line-height: 1.4em;
  }
  .head58 {
    font-size: 3rem;
    line-height: 1.3em;
  }
  .head72 {
    font-size: 3.375rem;
    line-height: 1.2em;
  }
  .head84 {
    font-size: 3.75rem;
    line-height: 1.15em;
  }
  .head88 {
    font-size: 4.25rem;
    line-height: 1.15em;
  }
  .head108 {
    font-size: 4.375rem;
    line-height: 1.15em;
  }
  .logo-wrap,
  .logo-wrap img {
    max-width: 230px;
    max-height: 153px;
  }
  .small-logo-list .logo-wrap,
  .small-logo-list .logo-wrap img {
    max-width: 150px;
    max-height: 100px;
  }
  .text {
    line-height: 1.8em;
    font-size: 1.0625rem;
  }
  .text.large-text {
    font-size: 1.0625rem;
    line-height: 1.7em;
  }
  .big-button {
    padding: 13px 25px 10px 25px;
    font-size: 1.125rem;
  }
  .text h1 {
    font-size: 2rem;
  }
  .text h2 {
    font-size: 1.625rem;
  }
  .text h3 {
    font-size: 1.375rem;
  }
  .text h4 {
    font-size: 1.25rem;
  }
  .text h5 {
    font-size: 1.125rem;
  }
  .text blockquote {
    margin: 40px 0;
    padding-left: 20px;
    font-size: 1.25rem;
    line-height: 1.5em;
  }
  .arrow-button,
  input.gform_button {
    gap: 20px;
    align-items: center;
    padding: 12px 18px 10px 23px;
    font-size: 1.0625rem;
  }
  input.gform_button {
    padding-right: 68px;
  }
  .arrow-link {
    font-size: 1.0625rem;
    line-height: 1.3em;
  }
  a.arrow-button:hover,
  .arrow-button.yellow-bg:hover,
  .arrow-button.vlt-grey-bg:hover,
  .arrow-button.white-bg:hover {
    background: #141B28;
    color: #fff;
    gap: 30px;
  }
  * + ul.post-grid {
    margin-top: 50px;
  }
  .grid-post-image {
    margin-bottom: 30px;
  }
  .text-bottom .sub32 + .text,
  .text + .arrow-button,
  .text + .big-button,
  .head84 + .big-button,
  .head58 + .big-button,
  .head72 + .large-text {
    margin-top: 30px;
  }
  .label14 + .head72 {
    margin-top: 35px;
  }
  .acc-top .sub32 {
    width: 100%;
    gap: 20px;
  }
  .acc-toggle {
    font-size: 1.125rem;
  }
  .acc-toggle.has-date {
    grid-template-columns: 80px 1fr;
    gap: 15px;
  }
  .acc-grid {
    grid-template-columns: 200px 1fr;
    gap: 25px;
  }
  .alt-row {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 35px;
  }
  .alt-content {
    padding-top: 0;
  }
  .alt-row + .alt-row {
    margin-top: 40px;
  }
  a.play-video:before {
    width: 70px;
    height: 70px;
    background-size: 100% auto;
  }
  .grid-sizer,
  .grid-item {
    width: 50%;
  }
  .alt-image.pill-image {
    padding: 0;
  }
  .pills-block.no-pad .alt-content {
    padding: 0;
  }
  .wide-gallery-image img {
    height: 450px;
  }
  .full-screen.screen {
    padding: 35px 30px;
    position: static;
    height: auto;
    background: #141B28;
    gap: 30px;
  }
  .full-screen-bottom {
    justify-content: flex-start;
  }
  .full-screen .arrow-button.wide.white-bg {
    background: #F2665E;
    width: 100%;
  }
  .full-screen .arrow-button.wide.white-bg:hover {
    background: #D6E031;
    color: #141B28;
  }
  .full-screen .arrow-button.wide.white-bg:hover path {
    fill: #141B28;
  }
  .full-screen-top {
    max-width: none;
  }
  ul.center-cols {
    display: block;
    width: 100%;
    margin: 0;
  }
  ul.center-cols li {
    width: 100%;
    padding: 0;
  }
  ul.center-cols li + li {
    margin-top: 30px;
  }
  .mobile-pill-links {
    display: block;
    padding: 30px 0 10px 0;
  }
  .mobile-pill-links ul.pill-links {
    position: static;
  }
}
@media only screen and (max-width: 800px) {
  .list-block.has-toggle .list-wrap {
    display: none;
  }
  ul.post-grid,
  .list-outer-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 35px;
  }
  ul.post-grid {
    gap: 40px;
  }
  * + .text,
  .sub20 + .arrow-button,
  .text + .arrow-link,
  .text-bottom .sub32 + .text,
  .text + .arrow-button,
  .text + .big-button,
  .head84 + .big-button,
  .head58 + .big-button,
  .head72 + .large-text,
  .label14 + .head72 {
    margin-top: 25px;
  }
  .acc-grid {
    grid-template-columns: 180px 1fr;
  }
  .text.two-col {
    columns: 1;
    column-gap: 0;
  }
  .wide-gallery-image img {
    height: 400px;
  }
  .page-block + .page-block {
    margin-top: 50px;
  }
  .center-text-block.white-bg.block-down-arrow:after {
    bottom: -50px;
  }
  .page-block.bg,
  .block-pad,
  .block-pad-top {
    padding: 50px 0;
  }
  .big-block-pad,
  .page-block.bg.big-block-pad {
    padding: 70px 0;
  }
  .page-block:last-child {
    padding-bottom: 50px;
  }
  .page-block:first-child {
    padding-top: 50px;
  }
  .block-pad-top {
    padding-top: 50px;
  }
  .block-pad-bottom {
    padding-bottom: 50px;
  }
  .big-block-pad:first-child,
  .page-block.bg.big-block-pad:first-child {
    padding-top: 70px;
  }
  .big-block-pad:last-child,
  .page-block.bg.big-block-pad:last-child {
    padding-bottom: 70px;
  }
  a.cat-link {
    font-size: 0.6875rem;
    padding: 8px 12px 6px 12px;
  }
  .page-block.blog-bar.no-pad {
    padding-left: 20px;
    padding-right: 50px;
  }
  ul.cat-list {
    justify-content: flex-start;
  }
  a.search-toggle {
    width: 50px;
    height: 50px;
  }
  .page-block.bg.search-slide {
    padding: 30px 0;
  }
  a.big-button.toggle-list {
    display: inline-block;
  }
  .list-wrap {
    padding-top: 30px;
  }
  .list-block.has-toggle .list-outer-grid {
    gap: 30px;
  }
}
@media only screen and (max-width: 768px) {
  /* Style adjustments for viewports that meet the condition */
  .text img.alignleft,
  .text img.alignright {
    margin: 10px auto;
    float: none;
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
  }
  .gfield--width-half {
    flex-basis: 100%;
  }
  .ginput_complex.ginput_container_address span:nth-child(3) {
    flex-basis: 100%;
  }
  .ginput_complex.ginput_container_address span:nth-child(4) {
    flex-basis: calc(50% - 10px);
  }
  .ginput_complex.ginput_container_address span:nth-child(5) {
    flex-basis: calc(50% - 10px);
  }
}
@media only screen and (max-width: 767px) {
  .cards-bottom-left {
    display: none;
  }
  .sub30 {
    font-size: 1.5rem;
    line-height: 1.5em;
  }
  .sub32 {
    font-size: 1.625rem;
    line-height: 1.5em;
  }
  .sub42 {
    font-size: 1.75rem;
    line-height: 1.4em;
  }
  .sub50 {
    font-size: 2rem;
    line-height: 1.4em;
  }
  .sub52 {
    font-size: 2.125rem;
    line-height: 1.4em;
  }
  .sub74 {
    font-size: 2.25rem;
    line-height: 1.4em;
  }
  .sub92 {
    font-size: 2.5rem;
    line-height: 1.3em;
  }
  .head44 {
    font-size: 1.75rem;
    line-height: 1.4em;
  }
  .head48 {
    font-size: 1.875rem;
    line-height: 1.4em;
  }
  .head58 {
    font-size: 2.125rem;
    line-height: 1.4em;
  }
  .head72 {
    font-size: 2.25rem;
    line-height: 1.4em;
  }
  .head84 {
    font-size: 2.5rem;
    line-height: 1.3em;
  }
  .head88 {
    font-size: 2.625rem;
    line-height: 1.3em;
  }
  .head108 {
    font-size: 2.75rem;
    line-height: 1.3em;
  }
  .label14 + .sub24,
  .sub18 + .text {
    margin-top: 15px;
  }
  .arrow-button,
  input.gform_button,
  .arrow-link {
    font-size: 1rem;
  }
  .acc-toggle {
    font-size: 1.0625rem;
    padding-left: 20px;
  }
  .acc-toggle.has-date {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 10px;
  }
  * + .text,
  .sub20 + .arrow-button,
  .text + .arrow-link,
  .text-bottom .sub32 + .text,
  .text + .arrow-button,
  .text + .big-button,
  .head84 + .big-button,
  .head58 + .big-button,
  .head72 + .large-text,
  .label14 + .head72 {
    margin-top: 20px;
  }
  ul.logo-list {
    gap: 20px;
  }
  * + ul.logo-list {
    margin-top: 35px;
  }
  .grid-post .label14,
  .blog-header-block .label14 {
    margin-bottom: 15px;
  }
  .wide-gallery-wrap {
    width: 100%;
    padding: 5px 0;
    margin-left: 0;
  }
  .wide-gallery-image {
    padding: 5px;
  }
  .wide-gallery-image .caption {
    text-align: center;
  }
  .wide-gallery-block .slick-next {
    right: 15px;
  }
  .wide-gallery-block .slick-prev {
    left: 15px;
  }
  .card-slider .card-slide {
    height: auto;
  }
  .cards-slider-top {
    padding: 0 30px;
  }
  .card-slide {
    padding: 0 30px;
    width: 100%;
  }
  .test-card {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 50px;
  }
  .cards-border {
    position: relative;
    display: block;
    border: none;
    padding: 0;
  }
  .card-slider-wrap {
    width: 100%;
    margin-left: 0;
  }
  .cards-slider-bottom {
    padding: 0;
  }
  .card-slide {
    position: relative;
  }
  .cards-slider-bottom button.slick-prev {
    left: 10px;
    top: 160px;
  }
  .cards-slider-bottom button.slick-next {
    right: 10px;
    top: 160px;
  }
  .card-slider .slick-track {
    display: block !important;
  }
  .card-slider .slick-slide {
    height: auto !important;
  }
  * + .test-card-bottom {
    margin-top: 25px;
  }
  * + .test-name {
    margin-top: 20px;
  }
  .test-card-top.has-image {
    gap: 20px;
  }
  .bottom-flex {
    gap: 25px;
  }
  .bottom-flex .sub20 {
    width: 100%;
  }
  .page-block.home-header-block.bg {
    padding-bottom: 70px;
  }
  .table-name .head30 {
    font-size: 1.5rem;
  }
  .caption {
    font-size: 0.8125rem;
  }
}
@media only screen and (max-width: 600px) {
  /* Style adjustments for viewports that meet the condition */
  .logo-wrap,
  .logo-wrap img {
    max-width: 140px;
    max-height: 93px;
  }
  .small-logo-list .logo-wrap,
  .small-logo-list .logo-wrap img {
    max-width: 100px;
    max-height: 66px;
  }
  .acc-grid,
  ul.list-grid.grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 25px;
  }
  .wide-gallery-image img {
    height: 350px;
  }
}
@media only screen and (max-width: 480px) {
  /* Style adjustments for viewports that meet the condition */
  .wide-gallery-image img {
    height: 300px;
  }
}
@media only screen and (max-width: 400px) {
  /* Style adjustments for viewports that meet the condition */
  .wide-gallery-image img {
    height: 275px;
  }
}
@media only screen and (max-width: 320px) {
  /* Style adjustments for viewports that meet the condition */
}
/* - - - Non-Semantic Helper Classes - - - */
.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  *line-height: 0;
}

.ir br {
  display: none;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

/* - - - Print Styles - - - */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  } /* Black prints faster: h5bp.com/s */
  a, a:visited {
    text-decoration: underline;
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  } /* h5bp.com/t */
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
}
