*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

section {
  padding: 4em;
  width: 100%;
}
@media (max-width: 1200px) {
  section {
    padding-right: 3em;
    padding-left: 3em;
  }
}
@media (max-width: 1150px) {
  section {
    padding-right: 2em;
    padding-left: 2em;
  }
}
@media (max-width: 1080px) {
  section {
    padding-right: 1.5em;
    padding-left: 1.5em;
  }
}
@media (max-width: 600px) {
  section {
    padding-right: 1em;
    padding-left: 1em;
  }
}

img.photo-perf-blog {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.d-none {
  display: none;
}

.d-inline {
  display: inline;
}

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

.d-block {
  display: block;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}
@media (max-width: 768px) {
  .container,
  .container-sm,
  .container-md {
    max-width: 720px;
  }
}
@media (max-width: 992px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg {
    max-width: 960px;
  }
}
@media (max-width: 1200px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1140px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-2 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-3 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.col-4 {
  flex: 0 0 25%;
  max-width: 25%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: var(--bg-white);
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  flex-shrink: 0;
  width: 100%;
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}
.border {
  border: 1px solid #dee2e6;
}

.border-top {
  border-top: 1px solid #dee2e6;
}

.border-right {
  border-right: 1px solid #dee2e6;
}

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

.border-left {
  border-left: 1px solid #dee2e6;
}

.border-0 {
  border: 0;
}

.border-top-0 {
  border-top: 0;
}

.border-right-0 {
  border-right: 0;
}

.border-bottom-0 {
  border-bottom: 0;
}

.border-left-0 {
  border-left: 0;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-top {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.rounded-right {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.rounded-left {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.rounded-circle {
  border-radius: 50%;
}

.rounded-pill {
  border-radius: 50rem;
}

.rounded-0 {
  border-radius: 0;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.flex-row {
  flex-direction: row;
}

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

.flex-row-reverse {
  flex-direction: row-reverse;
}

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

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

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

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.float-none {
  float: none;
}

.position-static {
  position: static;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

.position-sticky {
  position: sticky;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

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

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

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

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

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

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

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

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

:root {
  --bg-white: #fefefa;
  --accent: #ffcd29 ;
  --highlight: #fcf6d6;
}

@font-face {
  font-family: Roboto;
  src: url("/wp-content/themes/MO-Client/fonts/Roboto/Roboto.Regular.ttf");
  font-weight: normal;
  font-style: normal;
}
h1,
h2,
h3,
h4,
h5 {
  letter-spacing: 1px;
  color: var(--ast-global-color-2);
}

h1,
.h1 {
  font-size: 3.5rem;
}
@media (max-width: 921px) {
  h1,
  .h1 {
    font-size: 2.7rem;
  }
}
@media (max-width: 450px) {
  h1,
  .h1 {
    font-size: 2.2rem;
  }
}

h2,
.h2 {
  font-size: 3rem;
}
@media (max-width: 921px) {
  h2,
  .h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 450px) {
  h2,
  .h2 {
    font-size: 2rem;
  }
}

h3,
.h3 {
  font-size: 2.75rem;
}
@media (max-width: 921px) {
  h3,
  .h3 {
    font-size: 2.15rem;
  }
}
@media (max-width: 450px) {
  h3,
  .h3 {
    font-size: 1.75rem;
  }
}

h4,
.h4 {
  font-size: 2.5rem;
}
@media (max-width: 921px) {
  h4,
  .h4 {
    font-size: 2rem;
  }
}
@media (max-width: 450px) {
  h4,
  .h4 {
    font-size: 1.6rem;
  }
}

h5,
.h5 {
  font-size: 2.25rem;
}
@media (max-width: 921px) {
  h5,
  .h5 {
    font-size: 1.75rem;
  }
}
@media (max-width: 450px) {
  h5,
  .h5 {
    font-size: 1.45rem;
  }
}

h6,
.h6 {
  font-size: 2rem;
}
@media (max-width: 921px) {
  h6,
  .h6 {
    font-size: 1.5rem;
  }
}
@media (max-width: 450px) {
  h6,
  .h6 {
    font-size: 1.2rem;
  }
}

p {
  color: var(--ast-global-color-2);
}

p,
a {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  letter-spacing: 1.5px;
  font-size: 16px;
  background-color: transparent;
}

a:link,
a:visited {
  color: #ffffff;
  font-weight: bold;
}

.post-type-archive a {
  color: #000000;
}

a:hover,
a:active {
  color: #cba72c;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

li.current-menu-item a,
.current-menu-parent a {
  color: #cba72c;
}

.nav-links .nav-previous a:hover,
.nav-links .nav-next a:hover {
  color: #cba72c;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

mark,
.mark {
  padding: 0.2em;
  background-color: var(--highlight);
}

.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

/* 1st */
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.mo-btn-ping .mo-btn:link,
.mo-btn-ping .mo-btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 40px;
  display: inline-block;
  border-radius: 100px;
  transition: all 0.2s;
  position: relative;
}
.mo-btn-ping .mo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.mo-btn-ping .mo-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.mo-btn-ping .mo-btn-white {
  background-color: var(--ast-global-color-0);
  color: var(--ast-global-color-5);
}
.mo-btn-ping .mo-btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}
.mo-btn-ping .mo-btn-white::after {
  background-color: var(--ast-global-color-0);
}
.mo-btn-ping .mo-btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
.mo-btn-ping .mo-btn-animated {
  animation: moveInBottom 0.5s ease-out 0.75s;
  animation-fill-mode: backwards;
}

.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
  transform: scale(1.1);
}

.announcement-box {
  background-color: var(--bg-white);
  width: 100%;
  max-width: 1300px;
  margin: auto;
}
.announcement-box .mo-block-media-text__content-5 h5,
.announcement-box .mo-block-media-text__content-5a h5 {
  color: var(--ast-global-color-3);
  font-size: 2rem;
}
@media (max-width: 1244px) {
  .announcement-box .mo-block-media-text__content-5 h5,
  .announcement-box .mo-block-media-text__content-5a h5 {
    font-size: 1.8rem;
  }
}
@media (max-width: 1060px) {
  .announcement-box .mo-block-media-text__content-5 h5,
  .announcement-box .mo-block-media-text__content-5a h5 {
    font-size: 1.5rem;
  }
}
@media (max-width: 400px) {
  .announcement-box .mo-block-media-text__content-5 h5,
  .announcement-box .mo-block-media-text__content-5a h5 {
    font-size: 1.3rem;
  }
}
.announcement-box .mo-block-media-text__content-5 h2,
.announcement-box .mo-block-media-text__content-5 p,
.announcement-box .mo-block-media-text__content-5a h2,
.announcement-box .mo-block-media-text__content-5a p {
  color: var(--ast-global-color-2);
}
.announcement-box .mo-block-media-text__content-5 h2,
.announcement-box .mo-block-media-text__content-5a h2 {
  margin: 15px 0;
}
@media (max-width: 1244px) {
  .announcement-box .mo-block-media-text__content-5 h2,
  .announcement-box .mo-block-media-text__content-5a h2 {
    font-size: 2.7rem;
  }
}
@media (max-width: 1060px) {
  .announcement-box .mo-block-media-text__content-5 h2,
  .announcement-box .mo-block-media-text__content-5a h2 {
    font-size: 2.2rem;
  }
}
@media (max-width: 980px) {
  .announcement-box .mo-block-media-text__content-5 h2,
  .announcement-box .mo-block-media-text__content-5a h2 {
    font-size: 2rem;
    margin: 10px 0;
  }
}
@media (max-width: 850px) {
  .announcement-box .mo-block-media-text__content-5 h2,
  .announcement-box .mo-block-media-text__content-5a h2 {
    font-size: 2rem;
    margin: 12px 0;
  }
}
@media (max-width: 400px) {
  .announcement-box .mo-block-media-text__content-5 h2,
  .announcement-box .mo-block-media-text__content-5a h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 1200px) {
  .announcement-box .mo-block-media-text__content-5 h2 {
    font-size: 2.4rem;
  }
}
@media (max-width: 901px) {
  .announcement-box .mo-block-media-text__content-5 h2 {
    font-size: 1.7rem;
    margin: 8px 0;
  }
}
@media (max-width: 980px) {
  .announcement-box .mo-block-media-text__content-5 p {
    font-size: 15px;
    padding-right: 10px;
  }
}
@media (max-width: 850px) {
  .announcement-box .mo-block-media-text__content-5 p {
    font-size: 16px;
  }
}

.associations {
  padding-top: 2em;
  text-align: center;
}
.associations p {
  font-size: 20px;
}
@media (max-width: 1315px) {
  .associations .assoc__container {
    width: 80%;
  }
}
@media (max-width: 686px) {
  .associations .assoc__container {
    width: 90%;
  }
}
.associations .assoc {
  width: 225px;
  margin: 2%;
  text-align: center;
  align-self: center;
}
.associations .assoc__img {
  width: 175px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 10px;
}
@media (max-width: 921px) {
  .associations .assoc__img {
    width: 150px;
  }
}
@media (max-width: 600px) {
  .associations .assoc__img {
    width: 125px;
  }
}

/* button:focus:not(:focus-visible) {
  outline: 0;
} */
button,
.button {
  border-radius: 5px;
  box-shadow: 4px 4px 5px rgba(255, 255, 255, 0.5);
  transition: 0.3s;
}
button a,
.button a {
  color: #ffffff;
}

.hero-btn-title {
  display: flex;
  padding: 2em 0;
  justify-content: center;
  gap: 5%;
}
@media (max-width: 375px) {
  .hero-btn-title {
    flex-wrap: wrap;
  }
}

@media (max-width: 375px) {
  .hero-btn {
    margin-bottom: 20px;
  }
}
.hero-btn:hover {
  background-color: #000000;
  border: 1px solid #000000;
}

.hero-btn a {
  color: #ffffff;
}

.hero-btn2 {
  background-color: #000000;
  border: 1px solid #000000;
}
.hero-btn2:hover {
  background-color: #cba72c;
  border: 1px solid #cba72c;
}

.nav-btn {
  width: 200px;
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translate(-50%);
}
@media (max-width: 1300px) {
  .nav-btn {
    bottom: 4px;
  }
}
@media (max-width: 1100px) {
  .nav-btn {
    bottom: 2px;
  }
}
@media (max-width: 921px) {
  .nav-btn {
    bottom: -5px;
  }
}
@media (max-width: 749px) {
  .nav-btn {
    bottom: -8px;
  }
}
@media (max-width: 600px) {
  .nav-btn {
    bottom: -10px;
  }
}
@media (max-width: 450px) {
  .nav-btn {
    bottom: -13px;
  }
}
@media (max-width: 350px) {
  .nav-btn {
    bottom: -15px;
  }
}

.nav-btn a {
  color: var(--ast-global-color-5);
}

.nav-btn-red {
  width: 200px;
  border-radius: 5px;
  padding-top: 10px;
  padding-right: 25px;
  padding-bottom: 10px;
  padding-left: 25px;
  background-color: #000000;
  border: 1px solid #000000;
}
.nav-btn-red:hover {
  background-color: #cba72c;
  border: 1px solid #cba72c;
  color: #000000 !important;
}

a.nav-btn-red {
  text-align: center;
}

.nav-btn-gold {
  width: 200px;
  border-radius: 5px;
  padding-top: 10px;
  padding-right: 25px;
  padding-bottom: 10px;
  padding-left: 25px;
  background-color: #cba72c;
  border: 1px solid #cba72c;
}
.nav-btn-gold:hover {
  background-color: #000;
  border: 1px solid #000000;
  color: #ffffff !important;
}

a.nav-btn-gold {
  text-align: center;
}

.nav-btn-white {
  background-color: var(--ast-global-color-5);
  border: 2px solid #cba72c;
}
.nav-btn-white a {
  color: #000000;
}
.nav-btn-white:hover {
  background-color: #ffffff;
  border: 2px solid #000000;
}

.home .wp-block-cover,
.page-id-482 .wp-block-cover,
.page-id-634 .wp-block-cover {
  min-height: 600px;
}
@media (max-width: 921px) {
  .home .wp-block-cover,
  .page-id-482 .wp-block-cover,
  .page-id-634 .wp-block-cover {
    min-height: 500px;
  }
}
@media (max-width: 500px) {
  .home .wp-block-cover,
  .page-id-482 .wp-block-cover,
  .page-id-634 .wp-block-cover {
    min-height: 350px;
  }
}
.home .wp-block-cover__gradient-background,
.page-id-482 .wp-block-cover__gradient-background,
.page-id-634 .wp-block-cover__gradient-background {
  opacity: 0.3;
}
.home .wp-block-cover.relocating-cover,
.page-id-482 .wp-block-cover.relocating-cover,
.page-id-634 .wp-block-cover.relocating-cover {
  min-height: 600px;
  margin-top: -15px;
  padding-top: 0;
}
@media (max-width: 921px) {
  .home .wp-block-cover.relocating-cover,
  .page-id-482 .wp-block-cover.relocating-cover,
  .page-id-634 .wp-block-cover.relocating-cover {
    min-height: 500px;
  }
}
.home .wp-block-cover.relocating-cover__gradient-background,
.page-id-482 .wp-block-cover.relocating-cover__gradient-background,
.page-id-634 .wp-block-cover.relocating-cover__gradient-background {
  opacity: 0.2;
}
.home .hero-text,
.page-id-482 .hero-text,
.page-id-634 .hero-text {
  margin-top: 10%;
}
.home .hero-text h1,
.page-id-482 .hero-text h1,
.page-id-634 .hero-text h1 {
  text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.5);
}
.home .title-center,
.page-id-482 .title-center,
.page-id-634 .title-center {
  font-style: italic;
  display: block;
  animation-name: moveInRight;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  font-size: 3rem;
}
@media screen and (max-width: 593px) {
  .home .title-center,
  .page-id-482 .title-center,
  .page-id-634 .title-center {
    font-size: 2.7rem;
  }
}
@media (max-width: 405px) {
  .home .title-center,
  .page-id-482 .title-center,
  .page-id-634 .title-center {
    font-size: 2rem;
  }
}
@media (max-width: 370px) {
  .home .title-center,
  .page-id-482 .title-center,
  .page-id-634 .title-center {
    font-size: 1.7rem;
  }
}

/* 1st cover */
.overlay-clippy .header {
  height: 95vh;
  background-size: cover;
  background-position: top;
  position: relative;
  clip-path: polygon(0% 0%, 100% 0%, 100% 75vh, 0% 100%);
}
.overlay-clippy .header .logo-box {
  position: absolute;
  top: 40px;
  left: 40px;
}
.overlay-clippy .header .logo-box .logo {
  height: 35px;
}
.overlay-clippy .header .text-box {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.overlay-clippy .header .text-box .heading-primary {
  color: var(--bg-white);
  text-transform: uppercase;
  backface-visibility: hidden; /* removes animation shakiness  */
}
.overlay-clippy .header .text-box .heading-primary-main {
  display: block;
  font-size: 60px;
  font-weight: 400;
  letter-spacing: 35px;
  animation-name: moveInLeft;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  /*
    animation-delay: 3s;
    animation-iteration-count: 3;
    animation-timing-function: ease-in;
  */
}
.overlay-clippy .header .text-box .heading-primary-sub {
  display: block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 16.4px;
  margin-bottom: 60px;
  animation: moveInRight 1s ease-out;
}
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-200px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.overlay-clippy .header .mo-btn:link,
.overlay-clippy .header .mo-btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 40px;
  display: inline-block;
  border-radius: 100px;
  transition: all 0.2s;
  position: relative;
}
.overlay-clippy .header .mo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.overlay-clippy .header .mo-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.overlay-clippy .header .mo-btn-white {
  background-color: var(--bg-white);
  color: var(--ast-global-color-3);
}
.overlay-clippy .header .mo-btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}
.overlay-clippy .header .mo-btn-white::after {
  background-color: var(--bg-white);
}
.overlay-clippy .header .mo-btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
.overlay-clippy .header .mo-btn-animated {
  animation: moveInBottom 0.5s ease-out 0.75s;
  animation-fill-mode: backwards;
}

/* 2nd cover */
.cover-parallax-mt h2,
.cover-parallax-mt h3 {
  color: var(--ast-global-color-2);
}
.cover-parallax-mt .wp-block-group {
  padding: 8em 8em;
  width: 100%;
  max-width: 1300px;
  margin: auto;
}
@media (max-width: 1100px) {
  .cover-parallax-mt .wp-block-group {
    padding: 8em 6em;
  }
}
@media (max-width: 1000px) {
  .cover-parallax-mt .wp-block-group {
    padding: 6em 4em;
  }
}
@media (max-width: 921px) {
  .cover-parallax-mt .wp-block-group {
    padding: 4em 2em;
  }
}
.cover-parallax-mt .mo-block-media-text {
  flex-direction: row-reverse;
  position: relative;
}
.cover-parallax-mt .title-tab {
  display: none;
}
@media (max-width: 850px) {
  .cover-parallax-mt .title-tab {
    display: inherit;
    text-align: center;
  }
}
@media (max-width: 850px) {
  .cover-parallax-mt .title-wide {
    display: none;
  }
}
.cover-parallax-mt .mo-block-media-text__media {
  width: 39%;
  text-align: right;
}
@media (max-width: 850px) {
  .cover-parallax-mt .mo-block-media-text__media {
    width: 100%;
    text-align: center;
  }
}
.cover-parallax-mt .mo-block-media-text__content {
  width: 60%;
  text-align: right;
  padding: 0 6% 0 0;
}
@media (max-width: 850px) {
  .cover-parallax-mt .mo-block-media-text__content {
    width: 100%;
    text-align: left;
    padding: 0;
  }
}
.cover-parallax-mt img {
  height: 60vh;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: sticky;
  top: 80px;
}
@media (max-width: 850px) {
  .cover-parallax-mt img {
    height: 450px;
    width: auto;
  }
}
@media (max-width: 450px) {
  .cover-parallax-mt img {
    height: 400px;
    width: auto;
  }
}
@media (max-width: 850px) {
  .cover-parallax-mt .content-para {
    margin-top: 1.5em;
  }
}

#cp_appbooking_pform_1 .fapp {
  display: flex;
  flex-wrap: wrap;
}
#cp_appbooking_pform_1 .fieldCalendarService {
  width: 100%;
  padding-bottom: 20px;
}
#cp_appbooking_pform_1 #dp1651006422908 {
  width: 50%;
}
#cp_appbooking_pform_1 .slotsCalendar {
  width: 40%;
  padding-left: 5%;
}
#cp_appbooking_pform_1 #fbuilder .slots {
  border: none;
  box-shadow: none;
}
#cp_appbooking_pform_1 #fbuilder .ui-datepicker-inline {
  max-width: 450px;
}
#cp_appbooking_pform_1 .ui-datepicker {
  font: 13pt Arial, sans-serif;
}
#cp_appbooking_pform_1 .ui-datepicker td span,
#cp_appbooking_pform_1 .ui-datepicker td a {
  height: 40px;
}
#cp_appbooking_pform_1 #field h1 {
  font-family: "Rainydays", sans-serif;
}
#cp_appbooking_pform_1 #field_1-1,
#cp_appbooking_pform_1 #field_1-2 {
  display: inline-block;
  width: 47%;
}
#cp_appbooking_pform_1 #fbuilder .medium {
  width: 90% !important;
}
#cp_appbooking_pform_1 #fbuilder .large {
  width: 89.5% !important;
}
#cp_appbooking_pform_1 button.pbSubmit {
  padding: 17px 30px;
  border-style: solid;
  background-color: #000000;
  color: #ffffff;
  font-weight: 600;
  line-height: 1;
  font-size: 0.9375rem;
  border-radius: 4px;
}

.wp-block-search__inside-wrapper {
  max-width: 95%;
  margin: auto;
}
.wp-block-search__inside-wrapper input {
  padding: 0;
}

span.required {
  color: red;
}

/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-998 {
    /* 144px - 280px */
    padding: clamp(9rem, 25.95vw, 17.5rem) 1rem;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    position: relative;
  }
  #hero-998 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
  }
  #hero-998 .cs-container.newsletter {
    width: 100%;
    max-width: 500px;
    margin: auto;
    background-color: #ffffff;
    padding: 1em;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
  #hero-998 .cs-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #hero-998 .cs-title {
    color: var(--bg-white);
    text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.5);
    text-align: center;
  }
  #hero-998 .cs-title.black {
    color: var(--bodyTextColorBlack);
  }
  #hero-998 .cs-text {
    width: -moz-fit-content;
    width: fit-content;
  }
  #hero-998 .cs-text p {
    /* 16px - 20px */
    font-size: clamp(1rem, 1vw, 1.25rem);
    line-height: 1.5em;
    text-align: center;
    max-width: 32.375rem;
    /* 24px - 48px */
    margin: 0 0 clamp(1.5rem, 3vw, 3rem) 0;
    color: var(--bodyTextColorWhite);
  }
  #hero-998 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #hero-998 .cs-background:before {
    /* background color overlay */
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.4;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #hero-998 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes img tag act as a background image */
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (min-width: 992px) {
  #hero-998 .cs-container.newsletter {
    margin: 0 10% 0 auto;
  }
}
/* Desktop Parallax - 1400px */
/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-1426 {
    /* Centers button */
    text-align: center;
    /* 200px - 300px - leaving extra space for the navigation */
    padding: clamp(12.5rem, 25.95vw, 18.75em) 1rem;
    /* prevents the topper line from causing an overflow */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #hero-1426 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  #hero-1426 .cs-background:before {
    /* Overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.3;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
    /* prevents the cursor from interacting with it */
    pointer-events: none;
  }
  #hero-1426 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #hero-1426 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
  #hero-1426 .cs-content {
    width: 100%;
    max-width: 39.375rem;
  }
  #hero-1426 .cs-title {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
    max-width: 51.8125rem;
    color: #fff;
    position: relative;
    text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.5);
  }
  #hero-1426 .cs-text {
    /* 16px - 20px */
    font-size: clamp(1rem, 1.95vw, 1.25rem);
    line-height: 1.5em;
    text-align: center;
    width: 100%;
    /* 464px - 622px */
    max-width: clamp(29rem, 60vw, 38.785rem);
    margin: 0 auto 0;
    margin-bottom: 2rem;
    color: #fff;
  }
  #hero-1426 .cs-button-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5.5rem;
  }
  #hero-1426 .cs-button1 {
    background-color: var(--secondary);
  }
}
/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-1427 {
    /* Centers button */
    text-align: center;
    /* 200px - 300px - leaving extra space for the navigation */
    /* prevents the topper line from causing an overflow */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #hero-1427 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    filter: blur(2px);
  }
  #hero-1427 .cs-background:before {
    /* Overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.05;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
    /* prevents the cursor from interacting with it */
    pointer-events: none;
  }
  #hero-1427 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #hero-1427 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
  }
  #hero-1427 .cs-content {
    text-align: left;
    width: 100%;
    max-width: 39.375rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
  #hero-1427 .cs-content.wide-top {
    max-width: none;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  #hero-1427 .cs-content.wide-form {
    max-width: none;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 50px;
  }
  #hero-1427 .cs-title {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 51.8125rem;
    color: #000000;
    position: relative;
  }
  #hero-1427 .cs-text {
    /* 16px - 20px */
    font-size: clamp(1rem, 1.95vw, 1.25rem);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    /* 464px - 622px */
    max-width: clamp(29rem, 60vw, 38.785rem);
    margin: 0;
    margin-bottom: 2rem;
    color: #000000;
  }
  #hero-1427 a.icons-a {
    color: #000000;
    font-size: 18px;
    padding-top: 5px;
  }
  #hero-1427 a.icons-a:hover {
    color: #cba72c;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
  }
  #hero-1427 .contact-form {
    max-width: 500px;
  }
  #hero-1427 .contact-details {
    align-self: center;
    text-align: left;
    padding-left: 10%;
    margin-top: -4%;
  }
}
@media only screen and (min-width: 0rem) and (max-width: 650px) {
  #hero-1427 .contact-details {
    padding-left: 7%;
  }
}
@media only screen and (min-width: 0rem) and (max-width: 500px) {
  #hero-1427 .contact-details {
    padding-left: 5%;
  }
}
@media only screen and (min-width: 0rem) and (max-width: 921px) {
  #hero-1427 .contact-details .realtor-group {
    padding: 2% 0 2% 16%;
  }
}
@media only screen and (min-width: 0rem) and (max-width: 850px) {
  #hero-1427 .contact-details .realtor-group {
    padding: 2% 0 2% 12%;
  }
}
@media only screen and (min-width: 0rem) and (max-width: 750px) {
  #hero-1427 .contact-details .realtor-group {
    padding: 2% 0 2% 5%;
  }
}
@media only screen and (min-width: 0rem) and (max-width: 650px) {
  #hero-1427 .contact-details .realtor-group {
    padding: 2% 2% 4%;
  }
}
@media only screen and (min-width: 0rem) and (max-width: 500px) {
  #hero-1427 .contact-details .realtor-group {
    padding: 2% 2% 7%;
  }
}
@media only screen and (min-width: 0rem) {
  #hero-1427 .realtor {
    margin-top: 5%;
  }
  #hero-1427 .realtor-name {
    display: flex;
    justify-content: left;
    flex-direction: column;
  }
  #hero-1427 .realtor-name p {
    margin-bottom: 0.5px;
    font-size: 20px;
    font-weight: bold;
  }
  #hero-1427 .realtor-name .realtor-title {
    font-size: 18px;
    font-weight: normal;
  }
  #hero-1427 .realtor-contact {
    justify-content: left;
  }
  #hero-1427 form.wpcf7-form {
    display: flex;
    flex-wrap: wrap;
    padding: 2%;
    background-color: white;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  }
  #hero-1427 form.wpcf7-form label {
    visibility: hidden;
  }
  #hero-1427 form.wpcf7-form p {
    width: 98%;
    padding: 0 1%;
    margin-bottom: 0;
  }
  #hero-1427 form.wpcf7-form p:nth-child(2),
  #hero-1427 form.wpcf7-form p:nth-child(3),
  #hero-1427 form.wpcf7-form p:nth-child(4) {
    width: 49%;
    padding: 0 1%;
  }
}
@media only screen and (min-width: 0rem) and (max-width: 1100px) {
  #hero-1427 form.wpcf7-form p:nth-child(2),
  #hero-1427 form.wpcf7-form p:nth-child(3),
  #hero-1427 form.wpcf7-form p:nth-child(4) {
    width: 98%;
  }
}
@media only screen and (min-width: 0rem) and (max-width: 921px) {
  #hero-1427 form.wpcf7-form p:nth-child(2),
  #hero-1427 form.wpcf7-form p:nth-child(3),
  #hero-1427 form.wpcf7-form p:nth-child(4) {
    width: 49%;
  }
}
@media only screen and (min-width: 0rem) and (max-width: 600px) {
  #hero-1427 form.wpcf7-form p:nth-child(2),
  #hero-1427 form.wpcf7-form p:nth-child(3),
  #hero-1427 form.wpcf7-form p:nth-child(4) {
    width: 98%;
  }
}
@media only screen and (min-width: 0rem) {
  #hero-1427 form.wpcf7-form p:nth-child(8) {
    margin-top: 1.2em;
  }
  #hero-1427 form.wpcf7-form input:not([type=submit]),
  #hero-1427 form.wpcf7-form textarea {
    border-radius: 5px;
  }
  #hero-1427 form.wpcf7-form input:not([type=submit]):hover,
  #hero-1427 form.wpcf7-form textarea:hover {
    border-color: #cba72c;
  }
}
@media only screen and (min-width: 1024px) {
  #hero-1427 .cs-content.wide-form {
    flex-direction: row;
  }
}
svg {
  overflow: hidden;
  vertical-align: middle;
}

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

.img-thumbnail {
  padding: 0.25rem;
  background-color: var(--bg-white);
  border: 1px solid var(--bg-white);
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

/* 1st */
.mt-block-iLeft .wp-block-group {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
.mt-block-iLeft img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.mt-block-iLeft .mo-block-media-text__content {
  padding: 0 0 0 8%;
}
@media (max-width: 921px) {
  .mt-block-iLeft .mo-block-media-text__content {
    padding: 0 0 0 4%;
  }
}
@media (max-width: 850px) {
  .mt-block-iLeft .mo-block-media-text__content {
    padding: 0;
  }
}

/* 2nd */
.mt-block-iRight .mo-block-media-text {
  flex-direction: row-reverse;
}
.mt-block-iRight .wp-block-group {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
.mt-block-iRight img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.mt-block-iRight .mo-block-media-text__content {
  text-align: right;
  padding: 0 8% 0 0;
}
@media (max-width: 921px) {
  .mt-block-iRight .mo-block-media-text__content {
    padding: 0 4% 0 0;
  }
}
@media (max-width: 850px) {
  .mt-block-iRight .mo-block-media-text__content {
    padding: 0;
    text-align: left;
  }
}

/* 3rd */
.mt-left-sticky h2, .mt-left-sticky h3 {
  color: var(--ast-global-color-2);
}
.mt-left-sticky .wp-block-group {
  padding: 8em 8em;
  width: 100%;
  max-width: 1300px;
  margin: auto;
}
@media (max-width: 1100px) {
  .mt-left-sticky .wp-block-group {
    padding: 8em 6em;
  }
}
@media (max-width: 1000px) {
  .mt-left-sticky .wp-block-group {
    padding: 6em 4em;
  }
}
@media (max-width: 921px) {
  .mt-left-sticky .wp-block-group {
    padding: 4em 2em;
  }
}
.mt-left-sticky .mo-block-media-text {
  position: relative;
}
.mt-left-sticky .mo-block-media-text__content {
  width: 60%;
  padding: 0 0 0 6%;
}
@media (max-width: 850px) {
  .mt-left-sticky .mo-block-media-text__content {
    width: 100%;
    padding: 0;
    margin-top: 1.5em;
  }
}
.mt-left-sticky .mo-block-media-text__media {
  width: 39%;
}
@media (max-width: 850px) {
  .mt-left-sticky .mo-block-media-text__media {
    width: 100%;
    text-align: center;
  }
}
.mt-left-sticky .mo-block-media-text__media img {
  width: 100%;
  height: 55vh;
  -o-object-fit: cover;
  object-fit: cover;
  position: sticky;
  top: 250px;
}
@media (max-width: 850px) {
  .mt-left-sticky .mo-block-media-text__media img {
    height: 400px;
    width: auto;
  }
}
.mt-left-sticky .breakout {
  font-size: 20px;
  margin-bottom: 1.2em;
  text-align: center;
}
@media (max-width: 850px) {
  .mt-left-sticky .breakout {
    text-align: center;
    margin-top: 1.2em;
  }
}
@media (max-width: 850px) {
  .mt-left-sticky .breakoutHR {
    width: 65%;
    margin: auto;
  }
}
@media (max-width: 700px) {
  .mt-left-sticky .breakoutHR {
    width: 80%;
  }
}
@media (max-width: 600px) {
  .mt-left-sticky .breakoutHR {
    width: 90%;
  }
}
@media (max-width: 500px) {
  .mt-left-sticky .breakoutHR {
    width: 100%;
  }
}
.mt-left-sticky .breakoutHR-2 {
  margin-bottom: 1.75em;
}

.signup {
  z-index: 1;
  width: 45%;
  max-width: 600px;
  background-color: rgba(254, 254, 250, 0.7882352941);
  padding: 2em 2em 0 2em;
  margin: auto 10% auto auto;
}
@media (max-width: 1100px) {
  .signup {
    width: 55%;
  }
}
@media (max-width: 921px) {
  .signup {
    margin: 6% 10% 6% auto;
  }
}
@media (max-width: 850px) {
  .signup {
    width: 60%;
  }
}
@media (max-width: 650px) {
  .signup {
    width: 70%;
    margin: 9% auto;
  }
}
@media (max-width: 550px) {
  .signup {
    width: 90%;
  }
}
@media (max-width: 450px) {
  .signup {
    width: 95%;
    margin: 11% auto;
  }
}
@media (max-width: 400px) {
  .signup {
    padding: 2em 1em 0 1em;
  }
}
.signup h3 {
  padding-bottom: 20px;
  text-align: center;
}
.signup .subtext {
  margin-bottom: 0;
  text-align: center;
}
.signup .wpcf7-form {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  width: 80%;
  max-width: 567px;
  justify-content: center;
}
.signup .wpcf7-form input:not([type=submit]) {
  border: 2px solid #000000;
  border-radius: 5px;
  transition: 0.3s;
}
.signup .wpcf7-form input:not([type=submit]):hover {
  border: 2px solid #cba72c;
}
.signup .wpcf7-form input[type=submit] {
  width: 100%;
}
.signup .wpcf7-form label {
  visibility: hidden;
}
.signup .wpcf7-form p:nth-child(3) {
  margin-top: -6%;
}
@media (max-width: 1200px) {
  .signup .wpcf7-form p:nth-child(3) {
    margin-top: -8%;
  }
}
@media (max-width: 975px) {
  .signup .wpcf7-form p:nth-child(3) {
    margin-top: -10%;
  }
}
.signup .wpcf7-form p:nth-child(4) {
  width: 100%;
  max-width: 452px;
}

.events {
  text-align: center;
}
@media (max-width: 1240px) {
  .events {
    padding: 2em;
  }
}
@media (max-width: 400px) {
  .events {
    padding: 2em 0.5em;
  }
}
.events .events-subtext {
  font-size: 20px;
}

.events__col {
  background-color: #fefefa;
}

.events__img {
  position: relative;
  background-color: #333333;
  border-radius: 5px;
  margin: 2%;
  height: 400px;
  width: 100%;
  max-width: 640px;
  min-width: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.3s;
}
@media (max-width: 1450px) {
  .events__img {
    width: 500px;
  }
}
@media (max-width: 1240px) {
  .events__img {
    width: 450px;
  }
}
@media (max-width: 1050px) {
  .events__img {
    width: 400px;
  }
}
@media (max-width: 941px) {
  .events__img {
    width: 500px;
  }
}
@media (max-width: 650px) {
  .events__img {
    width: 450px;
  }
}
@media (max-width: 600px) {
  .events__img {
    width: 400px;
    min-width: 300px;
    margin: 3% 2%;
  }
}
@media (max-width: 500px) {
  .events__img {
    margin: 4% 2%;
  }
}
@media (max-width: 340px) {
  .events__img {
    height: 450px;
  }
}
.events__img:hover .event-detail {
  opacity: 1 !important;
}
.events__img .event-name {
  text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 25px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 600px) {
  .events__img .event-name {
    font-size: 23px;
  }
}
.events__img img {
  border-radius: 5px;
  opacity: 0.9;
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.3s;
}
@media (max-width: 340px) {
  .events__img img {
    height: 450px;
  }
}
.events__img img:hover {
  opacity: 0.5;
}
.events__img .event-detail {
  position: absolute;
  color: white;
  width: 90%;
  margin: 0 auto;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.5);
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}
@media (max-width: 1240px) {
  .events__img .event-detail {
    top: 60%;
  }
}

:root {
  /* Add these styles to your global stylesheet, which is used across all site pages. You only need to do this once. All elements in the library derive their variables and base styles from this central sheet, simplifying site-wide edits. For instance, if you want to modify how your h2's appear across the site, you just update it once in the global styles, and the changes apply everywhere. */
  --primary: #ff6a3e;
  --primaryLight: #ffba43;
  --secondary: #ffba43;
  --secondaryLight: #ffba43;
  --headerColor: #1a1a1a;
  --bodyTextColor: #4e4b66;
  --bodyTextColorWhite: #fafbfc;
  /* 13px - 16px */
  --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
  /* 31px - 49px */
  --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
  --bodyFontSize: 1rem;
  /* 60px - 100px top and bottom */
  --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  /* prevents padding from affecting height and width */
  box-sizing: border-box;
}

.cs-title {
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
}

.cs-text {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}

/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-246 {
    padding: 0 1em;
    position: relative;
    z-index: 1;
  }
  #sbs-246 .cs-container {
    width: 100%;
    /* changes to 1280px on tablet */
    max-width: 34.375rem;
    padding: var(--sectionPadding);
    padding-left: 0;
    padding-right: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 108px */
    gap: clamp(3rem, 8vw, 6.75rem);
    position: relative;
  }
  #sbs-246 .cs-container:before {
    /* Left Line */
    content: "";
    width: 1px;
    height: 100%;
    background: linear-gradient(top, rgba(250, 251, 252, 0.5) 0%, rgba(250, 251, 252, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(250, 251, 252, 0.5) 0%, rgba(250, 251, 252, 0) 100%); /* Chrome10-25,Safari5.1-6 */
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
  }
  #sbs-246 .cs-container:after {
    /* Right Line */
    content: "";
    width: 1px;
    height: 100%; /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(250, 251, 252, 0.5) 0%, rgba(250, 251, 252, 0) 100%); /* Chrome10-25,Safari5.1-6 */
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    /* flips vertically */
    transform: scaleY(-1);
  }
  #sbs-246 .cs-lines {
    display: none;
  }
  #sbs-246 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    /* changes at tablet */
    max-width: 27.125rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #sbs-246 .cs-title {
    max-width: 20ch;
    color: var(--bodyTextColorWhite);
  }
  #sbs-246 .cs-text {
    margin-bottom: 1rem;
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }
  #sbs-246 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #sbs-246 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #sbs-246 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #sbs-246 .cs-button-solid:hover:before {
    width: 100%;
  }
  #sbs-246 .cs-picture {
    width: 100%;
    max-width: 27.125rem;
    margin: 0;
    border: 1px solid #f1f1f4;
    position: relative;
    display: block;
    /* width divided by height */
    aspect-ratio: 1/1;
    /* prevents border from adding to height and width */
    box-sizing: border-box;
  }
  #sbs-246 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #sbs-246 .cs-background {
    /* Background Image */
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  #sbs-246 .cs-background:before {
    /* Black Color Overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
    /* prevents the cursor from interacting with it */
    pointer-events: none;
  }
  #sbs-246 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes image act like a background-image */
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #sbs-246 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  #sbs-246 .cs-lines {
    height: 100%;
    width: 35%;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
  }
  #sbs-246 .cs-lines:before {
    /* Right Line */
    content: "";
    width: 1px;
    height: 100%; /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(250, 251, 252, 0.5) 0%, rgba(250, 251, 252, 0) 100%); /* Chrome10-25,Safari5.1-6 */
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    /* flips vertically */
    transform: scaleY(-1);
  }
  #sbs-246 .cs-lines:after {
    /* Right Line */
    content: "";
    width: 1px;
    height: 100%; /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(250, 251, 252, 0.5) 0%, rgba(250, 251, 252, 0) 100%); /* Chrome10-25,Safari5.1-6 */
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    /* flips vertically */
    transform: scaleY(-1);
  }
  #sbs-246 .cs-picture {
    /* 344px - 434px */
    width: clamp(21.5rem, 37.5vw, 27.125rem);
    flex: none;
  }
  #sbs-246 .cs-content {
    max-width: 33.875rem;
    margin: 0;
    width: 45%;
  }
}
/* Desktop - 1300px (Parallax Effect) */
.mo-block-media-text {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1300px;
  margin: auto;
  justify-content: space-between;
}
@media (max-width: 850px) {
  .mo-block-media-text {
    flex-direction: column;
  }
}

.mo-block-media-text__media {
  width: 49%;
}
@media (max-width: 850px) {
  .mo-block-media-text__media {
    width: 100%;
    text-align: center;
  }
}

.mo-block-media-text__content {
  width: 50%;
  padding: 0 8%;
  align-self: center;
}
@media (max-width: 850px) {
  .mo-block-media-text__content {
    width: 100%;
    padding: 0;
  }
}

/* used on vendor cards */
.mo-block-media-text__media-3 {
  width: 35%;
  height: 50%;
  text-align: center;
}
@media (max-width: 780px) {
  .mo-block-media-text__media-3 {
    width: 100%;
    text-align: center;
  }
}

.mo-block-media-text__content-3 {
  width: 65%;
  padding: 0 0 0 5%;
  height: 50%;
}
@media (max-width: 810px) {
  .mo-block-media-text__content-3 {
    padding: 0 0 0 3%;
  }
}
@media (max-width: 780px) {
  .mo-block-media-text__content-3 {
    width: 100%;
    margin-top: 1em;
    padding: 0;
    text-align: center;
  }
}

/* /used on blog cards */
/* BLOG */
.mo-columns-blog {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1300px;
  margin: auto;
}
@media (max-width: 1070px) {
  .mo-columns-blog {
    flex-direction: column;
  }
}
@media (max-width: 350px) {
  .mo-columns-blog {
    flex-wrap: nowrap;
  }
}

/* used on signup-2 */
.mo-block-media-text__media-4 {
  width: 28%;
  height: 100%;
  align-self: center;
  order: 2;
}
@media (max-width: 780px) {
  .mo-block-media-text__media-4 {
    width: 100%;
    text-align: center;
  }
}
.mo-block-media-text__media-4 img {
  height: auto;
  width: 100%;
  vertical-align: middle;
}
@media (max-width: 780px) {
  .mo-block-media-text__media-4 img {
    height: 400px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.mo-block-media-text__content-4 {
  width: 70%;
  padding: 2% 6% 2% 2%;
  align-self: center;
  order: 1;
}
@media (max-width: 810px) {
  .mo-block-media-text__content-4 {
    padding: 0 0 0 3%;
  }
}
@media (max-width: 780px) {
  .mo-block-media-text__content-4 {
    width: 100%;
    margin-top: 1em;
    padding: 0;
    text-align: center;
  }
}

/* /used on signup-2 */
/* used on announcement */
.mo-block-media-text__media-5 {
  width: 40%;
}
@media (max-width: 850px) {
  .mo-block-media-text__media-5 {
    width: 100%;
    text-align: center;
  }
}
.mo-block-media-text__media-5 img.media-5 {
  width: 100%;
  max-width: 500px;
}
@media (max-width: 850px) {
  .mo-block-media-text__media-5 img.media-5 {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.mo-block-media-text__content-5 {
  width: 58%;
  padding: 0 8%;
  align-self: center;
}
@media (max-width: 1200px) {
  .mo-block-media-text__content-5 {
    padding: 0 6%;
  }
}
@media (max-width: 1100px) {
  .mo-block-media-text__content-5 {
    padding: 0 4%;
  }
}
@media (max-width: 1000px) {
  .mo-block-media-text__content-5 {
    padding: 0 2%;
  }
}
@media (max-width: 980px) {
  .mo-block-media-text__content-5 {
    padding: 0;
  }
}
@media (max-width: 850px) {
  .mo-block-media-text__content-5 {
    width: 100%;
    padding: 4%;
  }
}

.mo-block-media-text__content-5a {
  width: 100%;
  padding: 4%;
  align-self: center;
}

/* /used on announcement */
footer .site-footer-primary-section-2 p {
  font-size: 14px;
}
footer {
  /* variable  */
}
@media (max-width: 708px) {
  footer .footer-sep {
    display: none;
  }
}

#mo-footer {
  padding: 2em;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}
#mo-footer a {
  color: #000000;
}
#mo-footer a:hover {
  color: #cba72c;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
@media (max-width: 1300px) {
  #mo-footer {
    padding-left: 0;
  }
}
@media (max-width: 921px) {
  #mo-footer {
    padding-left: 2em;
  }
}
#mo-footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
#mo-footer .footer-left,
#mo-footer .footer-middle,
#mo-footer .footer-right {
  text-align: center;
  width: 31%;
}
@media (max-width: 921px) {
  #mo-footer .footer-left {
    border-bottom: 1px solid gray;
  }
}
@media (max-width: 921px) {
  #mo-footer .footer-left ul {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 0 0 1.5em 0;
  }
}
#mo-footer .footer-left ul li {
  list-style-type: none;
}
@media (max-width: 750px) {
  #mo-footer .footer-left ul li {
    padding: 0 1%;
  }
}
@media (max-width: 700px) {
  #mo-footer .footer-left ul li {
    padding: 8px 2%;
  }
}
@media (max-width: 1300px) {
  #mo-footer .footer-left {
    width: 25%;
  }
}
@media (max-width: 1050px) {
  #mo-footer .footer-left {
    text-align: left;
  }
}
@media (max-width: 921px) {
  #mo-footer .footer-left {
    width: 100%;
  }
}
#mo-footer .footer-middle {
  padding-right: 2%;
}
@media (max-width: 1400px) {
  #mo-footer .footer-middle {
    padding-right: 5%;
  }
}
@media (max-width: 921px) {
  #mo-footer .footer-middle {
    width: 49%;
    margin-top: 4%;
  }
}
@media (max-width: 780px) {
  #mo-footer .footer-middle {
    width: 39%;
    padding-right: 0;
  }
}
@media (max-width: 650px) {
  #mo-footer .footer-middle {
    width: 100%;
  }
}
@media (max-width: 400px) {
  #mo-footer .footer-middle {
    margin-top: 8%;
    margin-bottom: 4%;
  }
}
#mo-footer .footer-middle img {
  width: 400px;
}
#mo-footer .footer-right .contact-right {
  text-align: left;
  padding-left: 6%;
}
@media (max-width: 921px) {
  #mo-footer .footer-right .contact-right {
    padding-left: 0;
  }
}
@media (max-width: 650px) {
  #mo-footer .footer-right .contact-right {
    text-align: center;
  }
}
#mo-footer .footer-right h4 {
  font-size: 30px;
}
#mo-footer .footer-right a {
  word-break: break-all;
  margin-bottom: 1rem;
}
#mo-footer .footer-right .icons-a {
  display: block;
}
#mo-footer .footer-right .social.row {
  justify-content: left;
}
@media (max-width: 650px) {
  #mo-footer .footer-right .social.row {
    justify-content: space-around;
  }
}
#mo-footer .footer-right .social.row a {
  margin-right: 1rem;
}
#mo-footer .footer-right .social-right {
  margin-right: 1%;
}
@media (max-width: 921px) {
  #mo-footer .footer-right {
    width: 49%;
    margin-top: 4%;
  }
}
@media (max-width: 650px) {
  #mo-footer .footer-right {
    width: 100%;
    margin-top: 6%;
  }
}

.ast-footer-copyright p,
.ast-footer-copyright a {
  font-size: 14px;
}
@media (max-width: 500px) {
  .ast-footer-copyright p,
  .ast-footer-copyright a {
    font-size: 13px;
  }
}
@media (max-width: 500px) {
  .ast-footer-copyright p {
    margin-top: 1%;
  }
}
.ast-footer-copyright a {
  color: #000000;
}
.ast-footer-copyright a:hover {
  color: #cba72c;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.site-below-footer-wrap {
  padding: 0 2%;
}

.top-contact {
  background-color: #f6f7fb;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}
@media (max-width: 921px) {
  .top-contact {
    padding: 0 20px;
  }
}
.top-contact .background-top {
  background-color: #dddde1;
  padding: 5px;
  border-radius: 50%;
}
.top-contact .background-top.icons-right {
  height: 30px;
  width: 30px;
  margin-right: 15px;
}
@media (max-width: 700px) {
  .top-contact .background-top.icons-right {
    height: 22px;
    width: 22px;
  }
}
.top-contact .background-top:hover {
  background-color: #c5c5c9;
}
.top-contact .contact-top a {
  font-size: 14px;
  color: #202437;
  margin-right: 30px;
}
@media (max-width: 921px) {
  .top-contact .contact-top a {
    font-size: 12px;
  }
}
@media (max-width: 700px) {
  .top-contact .contact-top a {
    margin-right: 10px;
  }
}
.top-contact .contact-top a:hover {
  transition: 0.3s;
  text-decoration: underline;
  text-shadow: none;
}
.top-contact .contact-top a:hover .icons-left {
  background-color: #c5c5c9;
}
@media (max-width: 700px) {
  .top-contact .contact-top a span {
    display: none;
  }
}
.top-contact .contact-top .icons-left {
  background-color: #dddde1;
  padding: 5px;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  margin-right: 15px;
}
@media (max-width: 921px) {
  .top-contact .contact-top .icons-left {
    margin-right: 5px;
  }
}
.top-contact img.social-icon {
  filter: invert(32%) sepia(13%) saturate(599%) hue-rotate(188deg) brightness(97%) contrast(88%);
  width: 20px;
  height: 17px;
  margin-bottom: 5px;
}
@media (max-width: 700px) {
  .top-contact img.social-icon {
    width: 15px;
    height: 12px;
    margin-bottom: 13px;
  }
}

.ast-above-header-bar {
  background-color: var(--bg-white);
  border-bottom-color: transparent;
}

.ast-desktop-header {
  background-color: var(--bg-white);
}

.main-header-bar {
  background: transparent;
  z-index: 0;
  border-bottom-color: transparent;
}

.mo-adminbar {
  background-color: #523f6d;
  padding-left: 20px;
}
.mo-adminbar a {
  color: var(--bg-white);
}
.mo-adminbar a:hover {
  color: #27817f;
}

.ast-desktop .ast-primary-header-bar.main-header-bar,
.ast-header-break-point #masthead .ast-primary-header-bar.main-header-bar {
  padding-left: 4%;
  padding-right: 4%;
  background-color: var(--bg-white);
}

.main-header-bar-navigation .menu-item a {
  color: #000000;
}
.main-header-bar-navigation .menu-item a:hover {
  color: #cba72c;
}
.main-header-bar-navigation .current-menu-item a {
  color: #cba72c;
}

.ast-builder-html-element > h1:nth-child(1) > span:nth-child(1) {
  font-size: 17px;
}

.ast-builder-html-element > h1:nth-child(1) > span:nth-child(1) > strong:nth-child(1) > a:nth-child(1) {
  font-size: 33px;
}

.main-header-bar.ast-header-breadcrumb {
  background-color: var(--bg-accent-lite);
}
@media (max-width: 1400px) {
  .main-header-bar.ast-header-breadcrumb {
    padding-left: 4em;
  }
}
@media (max-width: 1200px) {
  .main-header-bar.ast-header-breadcrumb {
    padding-left: 2.9em;
  }
}
@media (max-width: 1150px) {
  .main-header-bar.ast-header-breadcrumb {
    padding-left: 1.9em;
  }
}
@media (max-width: 1070px) {
  .main-header-bar.ast-header-breadcrumb {
    padding-left: 5.6em;
  }
}
@media (max-width: 1020px) {
  .main-header-bar.ast-header-breadcrumb {
    padding-left: 3.9em;
  }
}
@media (max-width: 970px) {
  .main-header-bar.ast-header-breadcrumb {
    padding-left: 2.2em;
  }
}
@media (max-width: 950px) {
  .main-header-bar.ast-header-breadcrumb {
    padding-left: 1.5em;
  }
}
@media (max-width: 600px) {
  .main-header-bar.ast-header-breadcrumb {
    padding-left: 0.9em;
  }
}
.main-header-bar.ast-header-breadcrumb .ast-container {
  max-width: 1300px;
  padding-left: 5px;
  margin: auto;
}

header .custom-logo-link img {
  width: clamp(6.25rem, 6.1728vw + 5.0926rem, 12.5rem);
}

.mo-sidebar {
  width: 25%;
  min-width: 250px;
  max-width: 390px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1200px) {
  .mo-sidebar {
    width: 27%;
  }
}
.mo-sidebar #secondary {
  min-width: 300px;
  position: sticky;
  top: 40px;
  padding-top: 2em;
  padding-bottom: 3em;
  margin-right: 0;
  text-align: center;
  border-radius: 5px;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.5);
}

.mo-sidebar.vendor-categories {
  order: 1;
  width: 70%;
  min-width: 70%;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
  padding: 2em 0;
}
@media (max-width: 921px) {
  .mo-sidebar.vendor-categories {
    width: 90%;
    min-width: 90%;
    max-width: 90%;
  }
}
@media (max-width: 400px) {
  .mo-sidebar.vendor-categories {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}
.mo-sidebar.vendor-categories #sidebar-vendor {
  background-color: white;
  text-align: center;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  margin-right: auto;
  margin-bottom: 30px;
  display: flex;
  border-radius: 5px;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.5);
  border-top: 2px solid #000000;
  border-left: 2px solid #000000;
  border-right: 2px solid #cba72c;
  border-bottom: 2px solid #cba72c;
}
.mo-sidebar.vendor-categories #sidebar-vendor .sidebar-logo {
  display: none;
  width: 150px;
  margin-bottom: 30px;
  margin: 0 20px;
}
@media (max-width: 749px) {
  .mo-sidebar.vendor-categories #sidebar-vendor .sidebar-logo {
    display: none;
  }
}
.mo-sidebar.vendor-categories #sidebar-vendor h3.cat-title-small {
  display: block;
  font-size: 1rem;
  width: 100%;
  font-weight: bold;
  padding: 0 0 5px 0;
}
.mo-sidebar.vendor-categories #sidebar-vendor .sidebar-cats {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.mo-sidebar.vendor-categories #sidebar-vendor .sidebar-cats a {
  color: #000000;
  text-decoration: underline;
  margin-left: 10px;
  margin-right: 2px;
}
.mo-sidebar.vendor-categories #sidebar-vendor .sidebar-cats a:hover {
  color: #cba72c;
}

.about-page .about-group {
  background-image: linear-gradient(rgba(254, 254, 250, 0.5254901961), rgba(254, 254, 250, 0.5254901961)), url("../assets/pexels-karolina-grabowska-marble.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.about-page .about-group img.aboutus__image,
.about-page .team-lead img.aboutus__image {
  border-radius: 5px;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.5);
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1400px) {
  .about-page .about-group img.aboutus__image,
  .about-page .team-lead img.aboutus__image {
    position: sticky;
    top: 100px;
  }
}
@media (max-width: 921px) {
  .about-page .about-group img.aboutus__image,
  .about-page .team-lead img.aboutus__image {
    position: -webkit-relative;
    position: relative;
    top: 0;
    max-height: 400px;
  }
}
@media (max-width: 650px) {
  .about-page .about-group img.aboutus__image,
  .about-page .team-lead img.aboutus__image {
    margin: auto;
  }
}
@media (max-width: 450px) {
  .about-page .about-group img.aboutus__image,
  .about-page .team-lead img.aboutus__image {
    max-width: 100%;
  }
}
.about-page .title--small {
  display: none;
}
@media (max-width: 921px) {
  .about-page .title--small {
    display: flex;
    flex-direction: column;
  }
  .about-page .title--small.title--small-left {
    padding-left: 5%;
  }
  .about-page .title--small.title--small-left a {
    margin-right: 3%;
  }
  .about-page .title--small.title--small-right {
    padding-right: 5%;
  }
}
@media (max-width: 921px) and (max-width: 650px) {
  .about-page .title--small.title--small-right {
    padding-right: 0;
  }
}
@media (max-width: 921px) {
  .about-page .title--small.title--small-right a {
    margin-right: 3%;
  }
}
@media (max-width: 921px) and (max-width: 650px) {
  .about-page .title--small.title--small-right a {
    margin-right: 0;
  }
}
@media (max-width: 650px) {
  .about-page .title--small {
    text-align: center;
  }
  .about-page .title--small.title--small-left {
    padding-left: 0;
    padding-bottom: 30px;
    padding-top: 2em;
  }
  .about-page .title--small.title--small-right {
    padding-top: 2em;
  }
}
.about-page .group-team .media__left,
.about-page .team-1 .media__left {
  align-self: center;
}
@media (max-width: 1400px) {
  .about-page .group-team .media__left,
  .about-page .team-1 .media__left {
    align-self: inherit;
  }
}
@media (max-width: 921px) {
  .about-page .group-team .media__left,
  .about-page .team-1 .media__left {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    margin-top: 5%;
  }
}
@media (max-width: 650px) {
  .about-page .group-team .media__left,
  .about-page .team-1 .media__left {
    flex-direction: column;
  }
  .about-page .group-team .media__left img,
  .about-page .team-1 .media__left img {
    order: 2;
  }
}
.about-page .group-team {
  clip-path: polygon(0% 0%, 100% 0%, 100% 87%, 0% 100%);
}
.about-page .group-team .media__left {
  width: 44%;
  max-width: 450px;
}
@media (max-width: 921px) {
  .about-page .group-team .media__left {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}
.about-page .group-team .text__right {
  width: 46%;
  max-width: 500px;
}
@media (max-width: 921px) {
  .about-page .group-team .text__right {
    width: 100%;
    max-width: 100%;
  }
}
.about-page .group-team .text__right h3 {
  text-align: center;
  font-size: 1.9em;
}
@media (max-width: 921px) {
  .about-page .group-team .text__right h3 {
    font-size: 2.25rem;
  }
}
.about-page .group-team .about__inner {
  padding: 2em 0 2em 0;
}
@media (max-width: 921px) {
  .about-page .group-team {
    clip-path: polygon(0% 0%, 100% 0%, 100% 93%, 0% 100%);
  }
  .about-page .group-team .about__inner {
    padding: 0;
  }
  .about-page .group-team .media__left {
    text-align: center;
    flex-direction: column;
    margin-top: 0;
  }
  .about-page .group-team .aboutus__image {
    margin: auto;
    order: 2;
  }
  .about-page .group-team .aboutus__phil {
    padding: 5% 0 4%;
    text-align: center;
  }
  .about-page .group-team .title--small.title--small-left {
    padding-left: 0;
    padding-bottom: 25px;
  }
  .about-page .group-team .title--small.title--small-left .about-title {
    font-style: italic;
  }
  .about-page .group-team .text__right {
    margin-left: 0;
    align-self: inherit;
  }
}
@media (max-width: 680px) {
  .about-page .group-team span.about-title {
    display: block;
  }
}
@media (max-width: 650px) {
  .about-page .group-team {
    padding: 0 0 1em 0;
  }
  .about-page .group-team .about__inner {
    padding: 2em 1em 4em 1em;
  }
}
@media (max-width: 600px) {
  .about-page .group-team {
    clip-path: polygon(0% 0%, 100% 0%, 100% 96%, 0% 100%);
  }
  .about-page .group-team .aboutus__phil {
    padding: 8% 0 4%;
  }
}
@media (max-width: 500px) {
  .about-page .group-team .text__right {
    text-align: center;
  }
}
@media (max-width: 370px) {
  .about-page .group-team span.about-title {
    font-size: 1.8rem;
  }
}
.about-page .team-1 {
  clip-path: polygon(0% 13%, 100% 0%, 100% 87%, 0% 100%);
}
.about-page .team-1 .media__left {
  max-width: 343px;
}
.about-page .team-1 .about__inner {
  padding: 4em 0 2em 0;
}
@media (max-width: 1400px) {
  .about-page .team-1 {
    padding-top: 8em;
  }
}
@media (max-width: 921px) {
  .about-page .team-1 {
    clip-path: polygon(0% 5%, 100% 0%, 100% 95%, 0% 100%);
    padding-top: 5em;
  }
  .about-page .team-1 .media__left {
    max-width: 100%;
  }
  .about-page .team-1 .about__inner {
    padding: 0;
  }
}
@media (max-width: 650px) {
  .about-page .team-1 {
    padding: 3em;
  }
}
@media (max-width: 600px) {
  .about-page .team-1 {
    clip-path: polygon(0% 3%, 100% 0%, 100% 97%, 0% 100%);
  }
}
.about-page .row.container.media-text,
.about-page .row.container.text-media {
  max-width: 1300px;
}
@media (max-width: 921px) {
  .about-page .row.container.media-text,
  .about-page .row.container.text-media {
    flex-direction: column;
  }
}
.about-page .row.container.media-text h3,
.about-page .row.container.text-media h3 {
  color: #242424;
  font-size: 1.9rem;
}
@media (max-width: 1300px) {
  .about-page .row.container.media-text h3,
  .about-page .row.container.text-media h3 {
    font-size: 2rem;
  }
}
@media (max-width: 921px) {
  .about-page .row.container.media-text h3,
  .about-page .row.container.text-media h3 {
    font-size: 2.25rem;
  }
}
@media (max-width: 450px) {
  .about-page .row.container.media-text h3,
  .about-page .row.container.text-media h3 {
    font-size: 2rem;
  }
}
.about-page .row.container.media-text p,
.about-page .row.container.text-media p {
  color: #2f2f2f;
  font-size: 18px;
}
@media (max-width: 921px) {
  .about-page .team-lead {
    padding-bottom: 0;
  }
}
@media (max-width: 650px) {
  .about-page .team-lead {
    padding-top: 2em;
  }
}
.about-page .team-lead .media__right {
  max-width: 343px;
  align-self: center;
}
@media (max-width: 1400px) {
  .about-page .team-lead .media__right {
    align-self: inherit;
  }
}
@media (max-width: 921px) {
  .about-page .team-lead .media__right {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }
}
@media (max-width: 650px) {
  .about-page .team-lead .media__right {
    flex-direction: column;
  }
}
.about-page .text__left,
.about-page .text__right {
  align-self: center;
  width: 46%;
}
@media (max-width: 921px) {
  .about-page .text__left,
  .about-page .text__right {
    margin-top: 5%;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .about-page .text__left,
  .about-page .text__right {
    text-align: center !important;
    margin: 10% 0 0;
  }
}
.about-page .text__left .title--large,
.about-page .text__right .title--large {
  display: inherit;
  margin-bottom: 20px;
}
@media (max-width: 921px) {
  .about-page .text__left .title--large,
  .about-page .text__right .title--large {
    display: none;
  }
}
.about-page .text__left .title--large .about-title,
.about-page .text__right .title--large .about-title {
  font-style: italic;
}
.about-page .text__left {
  text-align: right;
  margin: 0 6% 0 2%;
}
@media (max-width: 921px) {
  .about-page .text__left {
    order: 2;
    text-align: left;
    margin-right: auto;
  }
}
.about-page .text__right {
  margin: 0 2% 0 6%;
}
@media (max-width: 921px) {
  .about-page .text__right {
    margin: 0 2% 0 2%;
  }
}
@media (max-width: 650px) {
  .about-page .text__right {
    margin-left: 0;
  }
}

.page-id-634 .wp-block-cover.newsletter__cover {
  padding: 4em;
}
@media (max-width: 921px) {
  .page-id-634 .wp-block-cover.newsletter__cover {
    padding: 1em;
  }
}

@media (max-width: 921px) {
  .aboutus__bio {
    padding: 5% 2%;
  }
}
@media (max-width: 650px) {
  .aboutus__bio {
    padding: 6% 2% 5%;
  }
}
@media (max-width: 450px) {
  .aboutus__bio {
    padding: 7% 2% 3%;
  }
}

.aboutus__social-big {
  display: inherit;
}
@media (max-width: 921px) {
  .aboutus__social-big {
    display: none;
  }
}

.aboutus__social-small {
  display: none;
}
@media (max-width: 921px) {
  .aboutus__social-small {
    display: inherit;
  }
}
@media (max-width: 650px) {
  .aboutus__social-small {
    justify-content: space-evenly;
    width: 75%;
    margin: auto;
    padding-bottom: 30px;
  }
}

@media (max-width: 1197px) {
  .group-team .text__right {
    margin: 0 2% 0 7%;
  }
}

.social-icon {
  width: 45px;
  margin: 0 1%;
}
@media (max-width: 650px) {
  .social-icon {
    width: 40px;
  }
}
.social-icon.social-internet {
  width: 37px;
}
@media (max-width: 921px) {
  .social-icon.social-internet {
    margin-top: 4px;
  }
}
@media (max-width: 650px) {
  .social-icon.social-internet {
    width: 34px;
  }
}

@media (max-width: 650px) {
  #lisa .aboutus__social-small {
    padding-bottom: 0;
  }
}

.archive .ast-container,
.search .ast-container {
  display: block;
}
.archive .ast-archive-description,
.search .ast-archive-description {
  display: none;
}
.archive .archive-title,
.search .archive-title {
  background-color: var(--bg-accent-lite);
  width: 100%;
}
@media (max-width: 1400px) {
  .archive .archive-title,
  .search .archive-title {
    padding-left: 4em;
  }
}
@media (max-width: 1200px) {
  .archive .archive-title,
  .search .archive-title {
    padding-left: 2.9em;
  }
}
@media (max-width: 1150px) {
  .archive .archive-title,
  .search .archive-title {
    padding-left: 1.9em;
  }
}
@media (max-width: 1070px) {
  .archive .archive-title,
  .search .archive-title {
    padding-left: 5.6em;
  }
}
@media (max-width: 1020px) {
  .archive .archive-title,
  .search .archive-title {
    padding-left: 3.9em;
  }
}
@media (max-width: 970px) {
  .archive .archive-title,
  .search .archive-title {
    padding-left: 2.2em;
  }
}
@media (max-width: 950px) {
  .archive .archive-title,
  .search .archive-title {
    padding-left: 1.5em;
  }
}
@media (max-width: 600px) {
  .archive .archive-title,
  .search .archive-title {
    padding-left: 0.9em;
  }
}
.archive .archive-title h1,
.search .archive-title h1 {
  max-width: 1300px;
  margin: auto;
}
@media (max-width: 1400px) {
  .archive .archive-title h1,
  .search .archive-title h1 {
    margin-left: 0;
  }
}

@media (max-width: 1300px) {
  .post-type-archive-vendor .mo-blog,
  .tax-vendor_category .mo-blog {
    padding: 4em 2em;
  }
}
@media (max-width: 1200px) {
  .post-type-archive-vendor .mo-blog,
  .tax-vendor_category .mo-blog {
    padding: 4em 1.5em 4em 1em;
  }
}
.post-type-archive-vendor .navigation.pagination,
.tax-vendor_category .navigation.pagination {
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 450px) {
  .post-type-archive-vendor .navigation.pagination,
  .tax-vendor_category .navigation.pagination {
    width: 100%;
  }
}
.post-type-archive-vendor .vendor-opening,
.tax-vendor_category .vendor-opening {
  max-width: 1300px;
  margin: 0 auto 2em auto;
  text-align: center;
}
@media (max-width: 1200px) {
  .post-type-archive-vendor .vendor-opening,
  .tax-vendor_category .vendor-opening {
    padding: 0 1em;
  }
}
.post-type-archive-vendor .vendor-opening h3,
.tax-vendor_category .vendor-opening h3 {
  margin-bottom: 1rem;
}
.post-type-archive-vendor .vendor-opening p,
.tax-vendor_category .vendor-opening p {
  width: 100%;
  margin: 1% auto 0 auto;
  max-width: 800px;
}
.post-type-archive-vendor .blog-left.vendor-directory,
.tax-vendor_category .blog-left.vendor-directory {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  order: 2;
  width: 100%;
  max-width: 1300px;
}
.post-type-archive-vendor .vendor-card,
.tax-vendor_category .vendor-card {
  background-color: white;
  margin-bottom: 2em;
  margin-right: 10px;
  margin-left: 10px;
  padding: 1em;
  border-radius: 5px;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 31%;
  min-width: 341px;
  border-top: 2px solid #000000;
  border-left: 2px solid #000000;
  border-right: 2px solid #cba72c;
  border-bottom: 2px solid #cba72c;
}
@media (max-width: 1300px) {
  .post-type-archive-vendor .vendor-card,
  .tax-vendor_category .vendor-card {
    padding: 1em 0.5em;
  }
}
@media (max-width: 1127px) {
  .post-type-archive-vendor .vendor-card,
  .tax-vendor_category .vendor-card {
    min-width: 350px;
  }
}
@media (max-width: 800px) {
  .post-type-archive-vendor .vendor-card,
  .tax-vendor_category .vendor-card {
    min-width: 334px;
  }
}
@media (max-width: 749px) {
  .post-type-archive-vendor .vendor-card,
  .tax-vendor_category .vendor-card {
    min-width: 370px;
  }
}
@media (max-width: 450px) {
  .post-type-archive-vendor .vendor-card,
  .tax-vendor_category .vendor-card {
    min-width: 325px;
  }
}
.post-type-archive-vendor .vendor-top,
.tax-vendor_category .vendor-top {
  display: flex;
  width: 100%;
  max-height: 160px;
}
@media (max-width: 450px) {
  .post-type-archive-vendor .vendor-top,
  .tax-vendor_category .vendor-top {
    flex-direction: column;
    max-height: 100%;
  }
}
.post-type-archive-vendor .vendor-top .img-left,
.tax-vendor_category .vendor-top .img-left {
  width: 35%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  text-align: center;
}
@media (max-width: 450px) {
  .post-type-archive-vendor .vendor-top .img-left,
  .tax-vendor_category .vendor-top .img-left {
    order: 2;
    width: 100%;
    height: auto;
  }
}
.post-type-archive-vendor .vendor-top .content-right,
.tax-vendor_category .vendor-top .content-right {
  width: 65%;
  padding: 0 0 0 5%;
}
@media (max-width: 450px) {
  .post-type-archive-vendor .vendor-top .content-right,
  .tax-vendor_category .vendor-top .content-right {
    width: 100%;
    text-align: center;
    padding-bottom: 10px;
  }
}
.post-type-archive-vendor .vendor-top h2.vendor-title,
.tax-vendor_category .vendor-top h2.vendor-title {
  font-size: 1.2rem;
  padding-bottom: 2%;
}
.post-type-archive-vendor .vendor-top h3.vendor-business,
.tax-vendor_category .vendor-top h3.vendor-business {
  font-size: 1rem;
}
.post-type-archive-vendor .vendor-details,
.tax-vendor_category .vendor-details {
  padding-top: 10px;
}
.post-type-archive-vendor .vendor-details a,
.tax-vendor_category .vendor-details a {
  color: #000000;
  text-decoration: underline;
}
.post-type-archive-vendor .vendor-details a:hover,
.tax-vendor_category .vendor-details a:hover {
  color: #cba72c;
}
.post-type-archive-vendor .vendor-details a.vendor-website,
.tax-vendor_category .vendor-details a.vendor-website {
  word-break: break-all;
}
@media (max-width: 1200px) {
  .post-type-archive-vendor .vendor-details a.vendor-website,
  .tax-vendor_category .vendor-details a.vendor-website {
    font-size: 15px;
  }
}
.post-type-archive-vendor .vendor-details p.add-title,
.tax-vendor_category .vendor-details p.add-title {
  margin-bottom: 0;
  font-weight: bold;
}
.post-type-archive-vendor .vendor-details img.contact-icons-v,
.tax-vendor_category .vendor-details img.contact-icons-v {
  width: 20px;
  height: auto;
  margin-right: 10px;
}
.post-type-archive-vendor .vendor-details .singleevent__address,
.tax-vendor_category .vendor-details .singleevent__address {
  margin-top: -10px;
}
.post-type-archive-vendor .vendor-details a,
.tax-vendor_category .vendor-details a {
  display: block;
  margin-bottom: 10px;
}
.post-type-archive-vendor .vendor-profile,
.tax-vendor_category .vendor-profile {
  width: 100%;
}
.post-type-archive-vendor .vendor-profile h4,
.tax-vendor_category .vendor-profile h4 {
  font-size: 1rem;
}
.post-type-archive-vendor .vendor-profile p,
.tax-vendor_category .vendor-profile p {
  margin-bottom: 1em;
}
.post-type-archive-vendor .vendor-profile a,
.tax-vendor_category .vendor-profile a {
  color: #000000;
  text-decoration: underline;
}
.post-type-archive-vendor .vendor-profile a:hover,
.tax-vendor_category .vendor-profile a:hover {
  color: #cba72c;
}

.blog #primary,
.single #primary,
.archive #primary,
.search #primary {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
.blog #primary .mo-blog,
.single #primary .mo-blog,
.archive #primary .mo-blog,
.search #primary .mo-blog {
  background-color: var(--bg-accent);
}
@media (max-width: 900px) {
  .blog #primary .mo-blog,
  .single #primary .mo-blog,
  .archive #primary .mo-blog,
  .search #primary .mo-blog {
    min-width: 300px;
  }
}
.blog .blog-left,
.blog #main,
.single .blog-left,
.single #main,
.archive .blog-left,
.archive #main,
.search .blog-left,
.search #main {
  width: 73%;
  max-width: 1100px;
  margin-bottom: 3em;
}
@media (max-width: 1070px) {
  .blog .blog-left,
  .blog #main,
  .single .blog-left,
  .single #main,
  .archive .blog-left,
  .archive #main,
  .search .blog-left,
  .search #main {
    width: 100%;
    margin: auto;
  }
}
.blog .blog-left article,
.blog #main article,
.single .blog-left article,
.single #main article,
.archive .blog-left article,
.archive #main article,
.search .blog-left article,
.search #main article {
  margin-top: -59px;
}
.blog .blog-left article.ast-related-post,
.blog #main article.ast-related-post,
.single .blog-left article.ast-related-post,
.single #main article.ast-related-post,
.archive .blog-left article.ast-related-post,
.archive #main article.ast-related-post,
.search .blog-left article.ast-related-post,
.search #main article.ast-related-post {
  margin-top: 0;
  text-align: center;
}
.blog .blog-card,
.single .blog-card,
.archive .blog-card,
.search .blog-card {
  margin-bottom: 2em;
  padding: 1em;
  border-radius: 5px;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 780px) {
  .blog .blog-card,
  .single .blog-card,
  .archive .blog-card,
  .search .blog-card {
    flex-direction: column;
  }
}
.blog .mo-block-media-text img,
.single .mo-block-media-text img,
.archive .mo-block-media-text img,
.search .mo-block-media-text img {
  height: 350px;
  -o-object-fit: cover;
  object-fit: cover;
}
.blog .mo-block-media-text h2,
.single .mo-block-media-text h2,
.archive .mo-block-media-text h2,
.search .mo-block-media-text h2 {
  letter-spacing: 0;
  line-height: 1;
  font-size: 2.5rem;
}
.blog .mo-block-media-text .mo-block-media-text__content,
.single .mo-block-media-text .mo-block-media-text__content,
.archive .mo-block-media-text .mo-block-media-text__content,
.search .mo-block-media-text .mo-block-media-text__content {
  padding: 0 3%;
}
@media (max-width: 1002px) {
  .blog .mo-block-media-text .mo-block-media-text__content,
  .single .mo-block-media-text .mo-block-media-text__content,
  .archive .mo-block-media-text .mo-block-media-text__content,
  .search .mo-block-media-text .mo-block-media-text__content {
    padding: 2% 0 0 0;
  }
}

.page-id-482 .contact-heading {
  text-align: center;
}
.page-id-482 .contact-heading h2 {
  padding-bottom: 20px;
}
.page-id-482 .contact-heading p {
  padding-bottom: 1em;
}
@media (max-width: 921px) {
  .page-id-482 .contact-heading p {
    padding-bottom: 0;
  }
}
.page-id-482 .contact-page {
  background-image: linear-gradient(to bottom right, transparent, #fefefa 60%), url("/wp-content/themes/MO-TXHome/MO-TXHome/assets/pexels-henry-&-co-193948-lg.jpg");
}
.page-id-482 .contact-page .container {
  max-width: 1300px;
}
@media (max-width: 921px) {
  .page-id-482 .contact-page .container {
    flex-direction: column;
  }
}
.page-id-482 .contact-page .col {
  width: 50%;
}
@media (max-width: 921px) {
  .page-id-482 .contact-page .col {
    width: 100%;
  }
}
.page-id-482 .contact-page .contact-form {
  padding-top: 32px;
  padding-left: 8%;
}
@media (max-width: 1250px) {
  .page-id-482 .contact-page .contact-form {
    padding-left: 6%;
  }
}
@media (max-width: 1200px) {
  .page-id-482 .contact-page .contact-form {
    padding-left: 0;
  }
}
@media (max-width: 921px) {
  .page-id-482 .contact-page .contact-form {
    order: 2;
    margin-top: 5%;
  }
}
.page-id-482 .contact-page .contact-details {
  align-self: center;
  text-align: left;
  padding-left: 10%;
  margin-top: -4%;
}
@media (max-width: 650px) {
  .page-id-482 .contact-page .contact-details {
    padding-left: 7%;
  }
}
@media (max-width: 500px) {
  .page-id-482 .contact-page .contact-details {
    padding-left: 5%;
  }
}
@media (max-width: 921px) {
  .page-id-482 .contact-page .contact-details .realtor-group {
    padding: 2% 0 2% 16%;
  }
}
@media (max-width: 850px) {
  .page-id-482 .contact-page .contact-details .realtor-group {
    padding: 2% 0 2% 12%;
  }
}
@media (max-width: 750px) {
  .page-id-482 .contact-page .contact-details .realtor-group {
    padding: 2% 0 2% 5%;
  }
}
@media (max-width: 650px) {
  .page-id-482 .contact-page .contact-details .realtor-group {
    padding: 2% 2% 4%;
  }
}
@media (max-width: 500px) {
  .page-id-482 .contact-page .contact-details .realtor-group {
    padding: 2% 2% 7%;
  }
}
.page-id-482 .contact-page .realtor {
  margin-top: 5%;
}
.page-id-482 .contact-page .realtor-name {
  display: flex;
  justify-content: left;
}
.page-id-482 .contact-page .realtor-name p {
  margin-bottom: 0.5px;
  font-size: 20px;
  font-weight: bold;
}
.page-id-482 .contact-page .realtor-name .realtor-title {
  font-size: 18px;
  font-weight: normal;
}
.page-id-482 .contact-page .realtor-contact {
  justify-content: left;
}
.page-id-482 .contact-page form.wpcf7-form {
  display: flex;
  flex-wrap: wrap;
  padding: 2%;
  background-color: white;
  border-radius: 5px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}
.page-id-482 .contact-page form.wpcf7-form label {
  visibility: hidden;
}
.page-id-482 .contact-page form.wpcf7-form p {
  width: 98%;
  padding: 0 1%;
  margin-bottom: 0;
}
.page-id-482 .contact-page form.wpcf7-form p:nth-child(2),
.page-id-482 .contact-page form.wpcf7-form p:nth-child(3),
.page-id-482 .contact-page form.wpcf7-form p:nth-child(4) {
  width: 49%;
  padding: 0 1%;
}
@media (max-width: 1100px) {
  .page-id-482 .contact-page form.wpcf7-form p:nth-child(2),
  .page-id-482 .contact-page form.wpcf7-form p:nth-child(3),
  .page-id-482 .contact-page form.wpcf7-form p:nth-child(4) {
    width: 98%;
  }
}
@media (max-width: 921px) {
  .page-id-482 .contact-page form.wpcf7-form p:nth-child(2),
  .page-id-482 .contact-page form.wpcf7-form p:nth-child(3),
  .page-id-482 .contact-page form.wpcf7-form p:nth-child(4) {
    width: 49%;
  }
}
@media (max-width: 600px) {
  .page-id-482 .contact-page form.wpcf7-form p:nth-child(2),
  .page-id-482 .contact-page form.wpcf7-form p:nth-child(3),
  .page-id-482 .contact-page form.wpcf7-form p:nth-child(4) {
    width: 98%;
  }
}
.page-id-482 .contact-page form.wpcf7-form p:nth-child(8) {
  margin-top: 1.2em;
}
.page-id-482 .contact-page form.wpcf7-form input:not([type=submit]),
.page-id-482 .contact-page form.wpcf7-form textarea {
  border-radius: 5px;
}
.page-id-482 .contact-page form.wpcf7-form input:not([type=submit]):hover,
.page-id-482 .contact-page form.wpcf7-form textarea:hover {
  border-color: #cba72c;
}
.page-id-482 .contact-page .contact-landscape img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
}

.contact-icons {
  width: 20px;
  margin-right: 10px;
}

a.icons-a {
  display: inline-block;
  margin-bottom: 10px;
}

.home .title404,
.error404 .title404 {
  text-align: center;
  padding: 5% 2% 0;
}
.home .title404 h4,
.error404 .title404 h4 {
  margin-bottom: 1.75rem;
}
@media (max-width: 500px) {
  .home .title404 h4,
  .error404 .title404 h4 {
    font-size: 1.75rem;
  }
}
.home .title404 p,
.error404 .title404 p {
  margin-bottom: 0;
  font-size: 25px;
}
@media (max-width: 500px) {
  .home .title404 p,
  .error404 .title404 p {
    font-size: 20px;
  }
}
.home .page-navigation,
.error404 .page-navigation {
  padding: 5em;
}
@media (max-width: 1240px) {
  .home .page-navigation,
  .error404 .page-navigation {
    padding: 4em 2em;
  }
}
@media (max-width: 921px) {
  .home .page-navigation,
  .error404 .page-navigation {
    padding: 4em 2em 2em;
  }
}
.home .page-navigation .container,
.error404 .page-navigation .container {
  max-width: 1300px;
}
.home .page-navigation .row,
.error404 .page-navigation .row {
  flex-wrap: nowrap;
}
@media (max-width: 921px) {
  .home .page-navigation .row,
  .error404 .page-navigation .row {
    flex-wrap: wrap;
  }
}
.home .page-navigation .nav-card,
.error404 .page-navigation .nav-card {
  position: relative;
  padding: 2%;
  max-width: 433px;
  min-width: 381px;
  text-align: center;
}
@media (max-width: 1180px) {
  .home .page-navigation .nav-card,
  .error404 .page-navigation .nav-card {
    min-width: 340px;
  }
}
@media (max-width: 1000px) {
  .home .page-navigation .nav-card,
  .error404 .page-navigation .nav-card {
    min-width: 310px;
  }
}
@media (max-width: 921px) {
  .home .page-navigation .nav-card,
  .error404 .page-navigation .nav-card {
    max-width: 400px;
    margin-bottom: 40px;
  }
}
@media (max-width: 849px) {
  .home .page-navigation .nav-card,
  .error404 .page-navigation .nav-card {
    max-width: 350px;
  }
}
@media (max-width: 749px) {
  .home .page-navigation .nav-card,
  .error404 .page-navigation .nav-card {
    max-width: 450px;
  }
}
@media (max-width: 600px) {
  .home .page-navigation .nav-card,
  .error404 .page-navigation .nav-card {
    max-width: 350px;
    margin-bottom: 50px;
  }
}
@media (max-width: 500px) {
  .home .page-navigation .nav-card,
  .error404 .page-navigation .nav-card {
    margin-bottom: 60px;
  }
}
.home .page-navigation .nav-img,
.error404 .page-navigation .nav-img {
  border-radius: 5px;
  width: 381px;
  height: 223px;
}
.home .page-navigation #social-plug,
.error404 .page-navigation #social-plug {
  padding: 15% 10% 5%;
}
@media screen and (min-width: 650px) {
  .home .page-navigation #social-plug,
  .error404 .page-navigation #social-plug {
    padding: 10% 10% 5%;
  }
}
@media screen and (min-width: 1200px) {
  .home .page-navigation #social-plug,
  .error404 .page-navigation #social-plug {
    padding: 8% 10% 5%;
  }
}
.home .page-navigation #social-plug h2,
.error404 .page-navigation #social-plug h2 {
  padding-bottom: 35px;
}

.error404 .page-navigation {
  padding-top: 2em;
}

.home .about-us__cover {
  clip-path: polygon(0% 13%, 100% 0%, 100% 87%, 0% 100%);
  transform: translateY(-1px);
}
@media (max-width: 921px) {
  .home .about-us__cover {
    clip-path: polygon(0% 7%, 100% 0%, 100% 93%, 0% 100%);
  }
}
@media (max-width: 600px) {
  .home .about-us__cover {
    clip-path: polygon(0% 4%, 100% 0%, 100% 96%, 0% 100%);
  }
}
.home .about-us__cover .wp-block-cover__gradient-background {
  opacity: 0.45;
}
.home .about-us-bckimg,
.home .relocating-bckimg {
  position: fixed;
}
.home .about-us__inner,
.home .relocating__inner {
  margin: 3% auto auto;
  padding: 13% 7% 9%;
}
@media (max-width: 975px) {
  .home .about-us__inner,
  .home .relocating__inner {
    padding: 13% 5% 9%;
  }
}
@media (max-width: 705px) {
  .home .about-us__inner,
  .home .relocating__inner {
    padding: 13% 5% 12%;
  }
}
@media (max-width: 500px) {
  .home .about-us__inner,
  .home .relocating__inner {
    padding: 13% 3% 12%;
  }
}
@media (max-width: 400px) {
  .home .about-us__inner,
  .home .relocating__inner {
    padding: 15% 3% 14%;
  }
}
.home .about-us__inner h3,
.home .relocating__inner h3 {
  color: var(--bg-white);
  text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.5);
  text-align: center;
}
@media (max-width: 921px) {
  .home .about-us__inner h3,
  .home .relocating__inner h3 {
    margin-bottom: 2%;
  }
}
.home .about-us__inner h3 .about-title,
.home .relocating__inner h3 .about-title {
  font-style: italic;
}
@media (max-width: 1010px) {
  .home .about-us__inner h3 .about-title,
  .home .relocating__inner h3 .about-title {
    display: block;
  }
}
@media (max-width: 921px) {
  .home .about-us__inner h3 .about-title,
  .home .relocating__inner h3 .about-title {
    display: inline-block;
  }
}
@media (max-width: 705px) {
  .home .about-us__inner h3 .about-title,
  .home .relocating__inner h3 .about-title {
    display: block;
  }
}
@media (max-width: 360px) {
  .home .about-us__inner h3 .about-title,
  .home .relocating__inner h3 .about-title {
    font-size: 1.5rem;
  }
}
.home .about-us__inner .about-info,
.home .relocating__inner .about-info {
  padding: 2% 5% 3%;
}
@media (max-width: 1300px) {
  .home .about-us__inner .about-info,
  .home .relocating__inner .about-info {
    padding: 2% 0 3%;
  }
}
@media (max-width: 921px) {
  .home .about-us__inner .about-info .col-2,
  .home .relocating__inner .about-info .col-2 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.home .about-us__inner .about-text,
.home .about-us__inner .relocating-text,
.home .relocating__inner .about-text,
.home .relocating__inner .relocating-text {
  padding: 2% 5%;
  text-align: center;
}
@media (max-width: 1200px) {
  .home .about-us__inner .about-text,
  .home .about-us__inner .relocating-text,
  .home .relocating__inner .about-text,
  .home .relocating__inner .relocating-text {
    padding: 2% 5% 2% 1%;
  }
}
@media (max-width: 921px) {
  .home .about-us__inner .about-text,
  .home .about-us__inner .relocating-text,
  .home .relocating__inner .about-text,
  .home .relocating__inner .relocating-text {
    order: 2;
    padding: 2% 1% 2% 1%;
  }
}
@media (max-width: 720px) {
  .home .about-us__inner .about-text,
  .home .about-us__inner .relocating-text,
  .home .relocating__inner .about-text,
  .home .relocating__inner .relocating-text {
    padding: 6% 1% 2% 1%;
  }
}
.home .about-us__inner .about-text p,
.home .about-us__inner .relocating-text p,
.home .relocating__inner .about-text p,
.home .relocating__inner .relocating-text p {
  color: white;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.5);
  font-size: 22px;
}
@media (max-width: 1100px) {
  .home .about-us__inner .about-text p,
  .home .about-us__inner .relocating-text p,
  .home .relocating__inner .about-text p,
  .home .relocating__inner .relocating-text p {
    font-size: 20px;
  }
}
.home .about-us__inner .about-image,
.home .relocating__inner .about-image {
  padding: 0 2%;
  align-self: center;
}
@media (max-width: 921px) {
  .home .about-us__inner .about-image,
  .home .relocating__inner .about-image {
    order: 1;
    text-align: center;
  }
}
.home .about-us__inner .about-image img,
.home .relocating__inner .about-image img {
  border-radius: 5px;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.5);
  width: 400px;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1100px) {
  .home .about-us__inner .about-image img,
  .home .relocating__inner .about-image img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 921px) {
  .home .about-us__inner .about-image img,
  .home .relocating__inner .about-image img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 600px) {
  .home .about-us__inner .about-image img,
  .home .relocating__inner .about-image img {
    height: 300px;
  }
}
.home button.nav-btn-red {
  width: 200px;
}
.home button.nav-btn-red a {
  color: white;
}
.home #listings .container {
  width: 85%;
  border-top: 7px solid #000000;
  border-left: 7px solid #000000;
  border-bottom: 7px solid #cba72c;
  border-right: 7px solid #cba72c;
}
@media (max-width: 921px) {
  .home #listings .container {
    width: 95%;
  }
}
@media (max-width: 819px) {
  .home #listings .container {
    width: 85%;
  }
}
@media (max-width: 600px) {
  .home #listings .container {
    width: 95%;
  }
}
@media (max-width: 400px) {
  .home #listings .container {
    width: 98%;
  }
}
@media (max-width: 819px) {
  .home #listings .container .row {
    flex-direction: column;
  }
}
.home #listings .container .col {
  width: 50%;
}
@media (max-width: 819px) {
  .home #listings .container .col {
    width: 100%;
  }
}
@media (max-width: 819px) {
  .home #listings .image__left {
    order: 2;
  }
}
.home #listings .nav-img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 819px) {
  .home #listings .nav-img {
    height: 350px;
  }
}
.home #listings .category__1 .text__right {
  background-color: #f5ebd4;
}
.home #listings .category__2 .text__left {
  background-color: #fefefa;
}
.home #listings .category__3 .text__right {
  background-color: #f5ebd4;
}
.home #listings .categories__text {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  padding: 2%;
}
@media (max-width: 819px) {
  .home #listings .categories__text {
    padding: 10%;
  }
}
.home #listings h3 {
  font-size: 2.25rem;
  color: #1a1919;
  margin-bottom: 1rem;
}
@media (max-width: 1200px) {
  .home #listings h3 {
    font-size: 2rem;
  }
}
@media (max-width: 550px) {
  .home #listings h3 {
    font-size: 1.9rem;
  }
}
.home #listings p {
  color: #1a1a1a;
}
.home #listings button {
  width: 250px;
  margin: 0 auto;
}
@media (max-width: 450px) {
  .home #listings button {
    width: 210px;
  }
}
.home #listings button a {
  color: white;
}
.home #listings button.nav-btn-white a {
  color: #000000;
}
.home .relocating__cover {
  clip-path: polygon(0% 18%, 100% 0%, 100% 82%, 0% 100%);
  transform: translateY(-1px);
}
@media (max-width: 921px) {
  .home .relocating__cover {
    clip-path: polygon(0% 10%, 100% 0%, 100% 90%, 0% 100%);
  }
}
@media (max-width: 600px) {
  .home .relocating__cover {
    clip-path: polygon(0% 7%, 100% 0%, 100% 93%, 0% 100%);
  }
}
.home .relocating__cover .wp-block-cover__gradient-background {
  opacity: 0.45;
}
.home .relocating-text {
  width: 70%;
  margin: auto auto 3% auto;
  color: white;
}
@media (max-width: 500px) {
  .home .relocating-text {
    width: 90%;
  }
}
.home .relocating-button {
  text-align: center;
}
.home .announcement {
  background-color: var(--bg-accent);
}

.page-id-487 {
  background-color: var(--bg-accent);
}
.page-id-487 #main {
  width: 100%;
  max-width: 1300px;
  background-color: var(--bg-accent-lite);
  padding: 1em;
  margin: 2em auto;
}
.page-id-487 .wp-block-group {
  background-color: var(--bg-white);
}
@media (max-width: 544px) {
  .page-id-487 .wp-block-group {
    padding-right: 2%;
    padding-left: 2%;
  }
}

.page-id-3 .site-content {
  max-width: 910px;
  margin: 0 auto;
  padding: 5%;
}
.page-id-3 .ast-container {
  max-width: 910px;
  margin: auto;
}
.page-id-3 .entry-header {
  padding-left: 0;
}
.page-id-3 h1.entry-title {
  max-width: 910px;
  margin: auto;
}
.page-id-3 ul {
  padding-left: 7%;
}

.relocation-page .relocation {
  background-image: linear-gradient(rgba(254, 254, 250, 0.5254901961), rgba(254, 254, 250, 0.5254901961)), url("../assets/pexels-steve-johnson-1484759.jpg");
}
.relocation-page .relocation a {
  color: #000000;
}
.relocation-page .relocation a:hover {
  color: #cba72c;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
.relocation-page .relocation-opening {
  max-width: 1100px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
.relocation-page .relocation-form {
  width: 80%;
  margin: 0 auto;
  background-color: rgba(254, 254, 250, 0.7882352941);
  padding: 3%;
  max-width: 900px;
}
@media (max-width: 921px) {
  .relocation-page .relocation-form {
    width: 85%;
  }
}
@media (max-width: 850px) {
  .relocation-page .relocation-form {
    width: 90%;
  }
}
.relocation-page .relocation-form .wpcf7-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .relocation-page .relocation-form .wpcf7-form {
    flex-direction: column;
  }
}
.relocation-page .relocation-form p {
  width: 100%;
}

.single.ast-page-builder-template .entry-header {
  padding-right: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
}
.single .post-thumb-img-content {
  order: 2;
}
.single .post-thumb-img-content img {
  max-height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
}
.single .ast-single-post-order {
  order: 1;
}
.single.ast-page-builder-template .post-navigation {
  height: auto;
}
.single.ast-page-builder-template .ast-single-related-posts-container {
  height: auto;
}
@media (max-width: 1070px) {
  .single form#ast-commentform {
    padding-bottom: 2em;
  }
}

.single .entry-header .post-thumb + .ast-single-post-order {
  margin-top: 0;
  margin-bottom: 2em;
  text-align: center;
}

.vendor-single figure {
  width: 100%;
  max-width: 200px;
  margin-bottom: 30px;
}
.vendor-single h1 {
  font-size: 2.5rem;
}
.vendor-single .no-bottom {
  margin-bottom: 0;
}
.vendor-single .vendor-address .add-title {
  margin-bottom: 0;
}
.vendor-single a {
  display: block;
  margin-bottom: 20px;
}
.vendor-single .contact-icons-v {
  width: 100%;
  max-width: 25px;
  margin-right: 20px;
}

.page-id-323 .ast-container {
  display: block;
}
.page-id-323 #primary {
  padding: 4em !important;
}
.page-id-323 .unsubscribe-heading {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.page-id-323 form.wpcf7-form {
  width: 900px;
  margin: auto;
}
@media (max-width: 1464px) {
  .page-id-323 form.wpcf7-form {
    width: 90%;
  }
}
@media (max-width: 1314px) {
  .page-id-323 form.wpcf7-form {
    width: 100%;
  }
}
@media (max-width: 788px) {
  .page-id-323 form.wpcf7-form {
    flex-direction: column;
  }
}
.page-id-323 form.wpcf7-form label {
  visibility: hidden;
}
.page-id-323 form.wpcf7-form p:nth-child(2) {
  width: 80%;
}
@media (max-width: 1196px) {
  .page-id-323 form.wpcf7-form p:nth-child(2) {
    width: 70%;
  }
}
@media (max-width: 788px) {
  .page-id-323 form.wpcf7-form p:nth-child(2) {
    width: 100%;
  }
}
.page-id-323 form.wpcf7-form p:nth-child(2) .your-email {
  width: 90%;
}
@media (max-width: 500px) {
  .page-id-323 form.wpcf7-form p:nth-child(2) .your-email {
    width: 100%;
  }
}
.page-id-323 form.wpcf7-form p:nth-child(3) {
  align-self: end;
  width: 20%;
}
@media (max-width: 1196px) {
  .page-id-323 form.wpcf7-form p:nth-child(3) {
    width: 30%;
  }
}
@media (max-width: 788px) {
  .page-id-323 form.wpcf7-form p:nth-child(3) {
    width: 100%;
  }
}/*# sourceMappingURL=main.css.map */