body {
  font-family: "cy", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.6;
  color: #1A1A1A;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "cy", sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 0.5em;
  color: #1A1A1A;
}

h1, .h1 {
  font-family: "cy", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(2.15rem, 2vw + 1.5rem, 3rem);
  line-height: 1.2;
  font-size: clamp(2.25rem, 0.075rem + 7.25vw, 5.875rem);
}

h2, .h2 {
  font-family: "cy", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(1.75rem, 1vw + 1.5rem, 2rem);
  line-height: 1.2;
  line-height: 1.3;
}

h3, .h3 {
  font-family: "cy", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(1.125rem, 0.75vw + 1rem, 1.375rem);
  line-height: 1.2;
  line-height: 1.4;
}

h4, .h4 {
  font-family: "cy", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.125rem);
  line-height: 1.2;
}

h5, .h5,
h6, .h6 {
  font-family: "cy", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.2;
}

p {
  margin-top: 0;
  margin-bottom: 1em;
}
p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: clamp(1.125rem, 0.75vw + 1rem, 1.375rem);
  font-weight: 300;
  line-height: 1.75;
}

strong, b {
  font-weight: 700;
}

small {
  font-size: 0.875rem;
}

a {
  color: #007ACC;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.1em;
  transition: color 250ms ease;
}
a:hover {
  color: #005A9E;
}
a:focus {
  outline: 2px solid #007ACC;
  outline-offset: 2px;
}
a:focus:not(:focus-visible) {
  outline: none;
}
a:focus-visible {
  outline: 2px solid #007ACC;
  outline-offset: 2px;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 1em;
  padding-left: 1.5em;
}

li {
  margin-bottom: 0.25em;
}

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

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

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

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

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

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

html {
  scroll-behavior: smooth;
}

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

figure {
  margin: 0;
}

input,
button,
textarea,
select {
  font: inherit;
}

.wp-block-button__link,
.wp-element-button,
button,
.button {
  font-family: "cy", sans-serif;
  font-weight: 500;
  font-style: normal;
  display: inline-block;
  padding: 0.75em 1.5em;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  color: #FFFFFF;
  background-color: #007ACC;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color, transform 250ms ease;
}
.wp-block-button__link:hover,
.wp-element-button:hover,
button:hover,
.button:hover {
  background-color: #005A9E;
  color: #FFFFFF;
}
.wp-block-button__link:focus,
.wp-element-button:focus,
button:focus,
.button:focus {
  outline: 2px solid #007ACC;
  outline-offset: 2px;
}
.wp-block-button__link:focus:not(:focus-visible),
.wp-element-button:focus:not(:focus-visible),
button:focus:not(:focus-visible),
.button:focus:not(:focus-visible) {
  outline: none;
}
.wp-block-button__link:focus-visible,
.wp-element-button:focus-visible,
button:focus-visible,
.button:focus-visible {
  outline: 2px solid #007ACC;
  outline-offset: 2px;
}
.wp-block-button__link:active,
.wp-element-button:active,
button:active,
.button:active {
  transform: translateY(1px);
}

.wp-block-button.is-style-outline .wp-block-button__link,
.button--outline {
  background-color: transparent;
  color: #007ACC;
  border: 2px solid #007ACC;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover,
.button--outline:hover {
  background-color: #007ACC;
  color: #FFFFFF;
}

.button--secondary {
  background-color: #F5F5F5;
  color: #1A1A1A;
}
.button--secondary:hover {
  background-color: #E0E0E0;
  color: #1A1A1A;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
textarea,
select {
  font-family: "cy", sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  padding: 0.75em 1em;
  font-size: 1rem;
  line-height: 1.5;
  color: #1A1A1A;
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  transition: border-color, box-shadow 250ms ease;
}
input[type=text]:hover,
input[type=email]:hover,
input[type=tel]:hover,
input[type=url]:hover,
input[type=password]:hover,
input[type=search]:hover,
input[type=number]:hover,
textarea:hover,
select:hover {
  border-color: #333333;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #007ACC;
  box-shadow: 0 0 0 3px rgba(0, 122, 204, 0.15);
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=url]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=number]::placeholder,
textarea::placeholder,
select::placeholder {
  color: #333333;
  opacity: 0.6;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

label {
  display: block;
  margin-bottom: 0.5em;
  font-weight: 500;
  color: #1A1A1A;
}

.form-group {
  margin-bottom: 20px;
}

.section {
  padding-top: clamp(30px, 7vw, 70px);
  padding-bottom: clamp(30px, 7vw, 70px);
}

.section--large {
  padding-top: clamp(50px, 7vw, 90px);
  padding-bottom: clamp(50px, 7vw, 90px);
}

.section--hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding-top: clamp(50px, 7vw, 90px);
  padding-bottom: clamp(50px, 7vw, 90px);
}

.section--light {
  background-color: #F5F5F5;
}

.section--dark {
  background-color: #1A1A1A;
  color: #FFFFFF;
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4, .section--dark h5, .section--dark h6 {
  color: #FFFFFF;
}
.section--dark a {
  color: #FFFFFF;
}
.section--dark a:hover {
  opacity: 0.8;
}

.section--primary {
  background-color: #007ACC;
  color: #FFFFFF;
}
.section--primary h1, .section--primary h2, .section--primary h3, .section--primary h4, .section--primary h5, .section--primary h6 {
  color: #FFFFFF;
}

.page-template-blank .wp-site-blocks {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page-template-blank main {
  flex: 1;
}

.landing__hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: clamp(30px, 7vw, 70px);
}
.landing__title {
  font-family: "cy", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(2.15rem, 2vw + 1.5rem, 3rem);
  line-height: 1.2;
  margin-bottom: 30px;
}
.landing__subtitle {
  font-size: clamp(1.125rem, 0.75vw + 1rem, 1.375rem);
  font-weight: 300;
  color: #333333;
  margin-bottom: clamp(30px, 5vw, 50px);
}
.landing__cta {
  margin-top: 30px;
}

.features {
  display: grid;
  gap: clamp(30px, 5vw, 50px);
}
@media (min-width: 768px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  padding: 30px;
  text-align: center;
}
.feature__icon {
  margin-bottom: 20px;
  font-size: 3rem;
  color: #007ACC;
}
.feature__title {
  font-family: "cy", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.125rem);
  line-height: 1.2;
  margin-bottom: 0.5em;
}
.feature__text {
  color: #333333;
}

.m-card figure {
  overflow: hidden;
}
.m-card figure img {
  transition: 0.2s all ease-out;
  transform: scale(1);
}
.m-card:hover img {
  object-fit: cover;
  transition: 0.2s all ease-out;
  transform: scale(1.05);
}

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

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

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

.hidden {
  display: none;
}

.block {
  display: block;
}

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

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.mt-sm {
  margin-top: 30px;
}

.mb-sm {
  margin-bottom: 30px;
}

.mt-md {
  margin-top: clamp(30px, 5vw, 50px);
}

.mb-md {
  margin-bottom: clamp(30px, 5vw, 50px);
}

.mt-lg {
  margin-top: clamp(30px, 7vw, 70px);
}

.mb-lg {
  margin-bottom: clamp(30px, 7vw, 70px);
}

.w-full {
  width: 100%;
}

.max-w-content {
  max-width: 800px;
}

.max-w-wide {
  max-width: 1200px;
}

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

.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;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 1em;
  margin: 0;
  clip: auto;
  white-space: normal;
  background-color: #FFFFFF;
  color: #1A1A1A;
}

/*# sourceMappingURL=style.css.map */
