.post, .page {
  margin-bottom: 10px;
  height: 100vh;
  overflow-x: hidden;
}

* {
  font-family: 'Open Sans', sans-serif !important;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}


html {
  margin-top: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2rem;
}

b, strong {
  font-weight: 600;
}

section {
  padding: 2rem 1rem;
  color: #333;
}

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

ul, li {
  margin: 0;
  padding: 0;
}

em {
  color: #;
}

a {
  text-decoration: none;
}

p a:link, p a:visited {
  color: #;
}

p a:hover, p a:active, p a:focus {
    text-decoration: underline;
    color: #;
}



.platter {
  max-width: 1920px;
}

.medium-platter {
  max-width: 1400px;
}

.small-platter {
  max-width: 1240px;
}

.x-small-platter {
  max-width: 980px;
}

.small-flex {
  display: flex;
}

.grid {
  display: grid;
}

.flex {
  display: block;
}

.medium-flex {
  display: block;
}

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

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

.cta-button {
  width: fit-content;
  padding: 1rem 2rem;
  border-radius: 10rem;
  color: inherit;
  font-weight: 600;
}

.grey-bg {
    background-color: #f2f2f2;
}

.white-bg {
  background-color: rgba(255, 255, 255, .75);
}

.circle-bg {
  background-image: url('/wp-content/uploads/2025/04/circle-bg.png');
  background-size: cover;
}


.will-animate, .animated-slide-in {
  -webkit-transition: all 1.0s ease-out;
  -moz-transition: all 1.0s ease-out;
  -ms-transition: all 1.0s ease-out;
  -o-transition: all 1.0s ease-out;
  transition: all 1.0s ease-out;
  -moz-transform: translateY(100px);
  -webkit-transform: translateY(100px);
  -o-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
}


.will-animate-horizontal {
  -webkit-transition: all 1.0s ease-out;
  -moz-transition: all 1.0s ease-out;
  -ms-transition: all 1.0s ease-out;
  -o-transition: all 1.0s ease-out;
  transition: all 1.0s ease-out;
  -moz-transform: translateX(100px);
  -webkit-transform: translateX(100px);
  -o-transform: translateX(100px);
  -ms-transform: translateX(100px);
  transform: translateX(100px);
  opacity: 0;
}




.will-animate.animated {
  -moz-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}


.will-animate-horizontal.animated {
  -moz-transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -o-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
}


@keyframes slideAndFade {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


@keyframes slideAndFadeRight {
    0% {
        transform: translateX(50%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


.animated-text {
  opacity: 0;
  animation: slideAndFade 1.5s ease forwards;
  animation-delay: 0.75s;
}

.animated-block {
  opacity: 0;
  animation: slideAndFadeRight 1.5s ease forwards;
  animation-delay: 1s;
}


.animated-slide-in.animated {
  opacity: 0;
  animation: slideAndFade 1.5s ease forwards;
}


.page-title {
  width: fit-content;
  padding-bottom: 0.25rem;
}

.page-title.color-yellow {
  border-bottom: 2px solid #faaf40;
}

.page-title.color-green {
  border-bottom: 2px solid #006838;
}

.page-title.color-blue {
  border-bottom: 2px solid #1b75bb;
}

.page-title.color-gold {
  border-bottom: 2px solid #c1986a;
}

.page-title.color-pink {
  border-bottom: 2px solid #ec297b;
}

.page-title.color-purple {
  border-bottom: 2px solid #90278e;
}




@media only screen and (min-width:735px) {

  .section {
    padding: 4rem;
  }

  .flex {
    display: flex;
  }


}

@media only screen and (min-width:1069px) {
  .medium-flex {
    display: flex;
  } 
}




@media only screen and (min-width:1678px) {


}