.anchor {
  position: relative;
  top: -6rem;
}

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

html {
  scroll-behavior: smooth;
  overflow-anchor: none;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.625;
  color: #000;
  background-color: #FBFBFB;
  font-weight: 400;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  padding-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 400;
  text-transform: none;
}
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
  font-weight: 700;
}

.giantText {
  font-size: clamp(30px, 10vw + 12px, 128px);
}

p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  p {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }
}
@media (min-width: 1100px) {
  p {
    font-size: 18px;
  }
}

h1 {
  font-size: clamp(24px, 4vw, 47px);
}

h2 {
  margin-bottom: 2rem;
  margin-top: 1rem;
  font-size: clamp(28px, 4.3vw, 72px);
}
@media (min-width: 1100px) {
  h2 {
    transition: 0.3s ease;
  }
}
@media (min-width: 1200px) {
  h2 {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1400px) {
  h2 {
    margin-bottom: 3rem;
  }
}

h3 {
  margin-bottom: 2rem;
  font-size: clamp(20px, 3vw, 52px);
}
@media (min-width: 1100px) {
  h3 {
    transition: 0.3s ease;
  }
}
@media (min-width: 1200px) {
  h3 {
    margin-bottom: 2.25rem;
  }
}

h4 {
  font-size: 15px;
  margin-bottom: 0.5rem;
  font-size: clamp(15px, 2.25vw, 39px);
}
@media (min-width: 1100px) {
  h4 {
    transition: 0.3s ease;
  }
}
@media (min-width: 1200px) {
  h4 {
    margin-bottom: 0.75rem;
  }
}

a {
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

a.arrow {
  transition: color 0.3s ease;
}
a.arrow:after {
  transition: background-image 0.3s ease;
}
@media (min-width: 1100px) {
  a.arrow:hover {
    color: #F2526D;
  }
  a.arrow:hover:after {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.84173 4.74622L0.414147 0.030853C0.224165 -0.0644317 -0.000360492 0.0723873 -0.000360501 0.284945L-0.000360914 9.71812C-0.000360923 9.93068 0.224165 10.0675 0.414147 9.97222L9.84173 5.25196C10.0515 5.1469 10.0515 4.85128 9.84173 4.74622Z' fill='%23F2526D'/%3E%3C/svg%3E%0A");
  }
}

.arrow {
  display: inline-flex;
  align-items: center;
  padding-right: 1.5rem;
  position: relative;
  font-size: clamp(17px, 2vw + 10px, 22px);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  width: fit-content;
}
@media (max-width: 767px) {
  .arrow.downOnPhone:after {
    transform: rotate(90deg);
  }
}
@media (min-width: 768px) {
  .arrow.backwards {
    padding-right: 0;
    padding-left: 1.5rem;
  }
}
@media (min-width: 768px) {
  .arrow.backwards:after {
    right: auto;
    left: 0;
    transform: rotate(180deg);
  }
}
.arrow:after {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.84173 4.74622L0.414147 0.030853C0.224165 -0.0644317 -0.000360492 0.0723873 -0.000360501 0.284945L-0.000360914 9.71812C-0.000360923 9.93068 0.224165 10.0675 0.414147 9.97222L9.84173 5.25196C10.0515 5.1469 10.0515 4.85128 9.84173 4.74622Z' fill='%23393C35'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 12px;
  height: 10px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
}

.scrollTo {
  position: relative;
  top: 4rem;
}

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

.btn, .button {
  padding: 0.75rem;
  word-spacing: normal;
  border-radius: 6px;
  font-weight: 500;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  max-width: fit-content;
}
@media (min-width: 1100px) {
  .btn, .button {
    font-size: 1.125rem;
    padding: 0.75rem 1rem;
  }
}
.btn .arrowRight, .button .arrowRight {
  margin-left: 1rem;
}
.btn .arrowLeft, .button .arrowLeft {
  margin-right: 1rem;
}
.btn.yellow, .button.yellow {
  background-color: #E4FF00;
  color: #000;
}
@media (min-width: 1100px) {
  .btn.yellow, .button.yellow {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  }
  .btn.yellow svg, .button.yellow svg {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }
  .btn.yellow svg path, .button.yellow svg path {
    transition: fill 0.3s ease;
  }
  .btn.yellow:hover, .button.yellow:hover {
    background-color: #1328E8;
    color: #fff !important;
    border-color: #1328E8;
  }
  .btn.yellow:hover svg, .button.yellow:hover svg {
    transform: rotate(45deg);
  }
  .btn.yellow:hover svg path, .button.yellow:hover svg path {
    fill: #fff;
  }
}
@media (min-width: 1200px) {
  .btn.yellow, .button.yellow {
    padding: 0.75rem 1rem;
  }
}
.btn.white, .button.white {
  background-color: transparent;
  color: #000;
}
.btn.outline, .button.outline {
  border: 1px solid #CFCFCF;
}
.btn.upper, .button.upper {
  text-transform: uppercase;
  font-weight: 400;
  align-items: flex-start;
}
.btn.upper svg, .button.upper svg {
  margin-top: 0.5rem;
}

.scrollTo {
  position: relative;
  top: -4rem;
}

.thirds .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .thirds .container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.thirds .container .third {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 16/6;
  border: 1px solid;
  position: relative;
}
@media (min-width: 640px) {
  .thirds .container .third {
    aspect-ratio: 464/298;
  }
}
@media (min-width: 1100px) {
  .thirds .container .third {
    transition: 0.3s ease;
  }
  .thirds .container .third:hover:after {
    opacity: 0;
  }
  .thirds .container .third:hover span, .thirds .container .third:hover h3 {
    color: #F7F0DF;
  }
}
.thirds .container .third:after {
  position: absolute;
  inset: 0;
  margin: auto;
  height: 100%;
  width: 100%;
  background-color: #F7F0DF;
  opacity: 1;
  z-index: 2;
  content: "";
}
@media (min-width: 1100px) {
  .thirds .container .third:after {
    transition: opacity 0.3s ease;
  }
}
.thirds .container .third img {
  display: none;
}
@media (min-width: 640px) {
  .thirds .container .third img {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    display: block;
  }
}
.thirds .container .third span, .thirds .container .third h3 {
  position: relative;
  z-index: 3;
  margin: 0;
  font-size: clamp(24px, 4vw, 47px);
}

.hero {
  background-image: url("../images/heroCorner.jpg");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 50%;
}
.container {
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1200px) {
  .container {
    padding: 0 2rem;
  }
}

.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 6px;
  z-index: 999999;
  padding: 8px 16px;
  color: #fff;
  text-decoration: none;
}
.skip-link:focus {
  left: 6px;
}

.contactForm {
  margin: 1rem 0;
}
.contactForm .container .inner {
  background-color: #E8EBEF;
  position: relative;
  padding: 2rem 1rem;
  border-radius: 15px;
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .contactForm .container .inner {
    grid-template-columns: 4fr 6fr;
    padding: 4rem 2rem 3rem;
  }
}
@media (min-width: 1100px) {
  .contactForm .container .inner {
    grid-template-columns: 35fr 65fr;
    padding: 6rem 5rem 5rem;
    gap: 5rem;
  }
}
@media (min-width: 1400px) {
  .contactForm .container .inner {
    grid-template-columns: 35fr 65fr;
    padding: 6rem 4rem 5rem;
  }
}
.contactForm .container .inner .stars {
  display: none;
}
@media (min-width: 768px) {
  .contactForm .container .inner .stars {
    display: block;
    position: absolute;
    z-index: 1;
    opacity: 1;
    bottom: 1.5rem;
    left: 1.5rem;
  }
}
.contactForm .container .inner .text {
  z-index: 2;
  position: relative;
}
@media (min-width: 768px) {
  .contactForm .container .inner .text {
    margin-top: -0.5rem;
  }
}
.contactForm .container .inner .text h2 {
  font-weight: 500;
  font-size: clamp(22px, 3vw + 12px, 36px);
  margin: 0;
  line-height: 138%;
}
@media (min-width: 1100px) {
  .contactForm .container .inner .text h2 {
    max-width: 350px;
  }
}
.contactForm .container .inner .formWrapper {
  display: grid;
  z-index: 2;
  position: relative;
  gap: 3rem;
}
@media (min-width: 640px) {
  .contactForm .container .inner .formWrapper .top form {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1100px) {
  .contactForm .container .inner .formWrapper .top form {
    gap: 2rem;
  }
}
.contactForm .container .inner .formWrapper .top form ::placeholder {
  color: #BABABA;
  font-size: 1rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.contactForm .container .inner .formWrapper .top form > div:nth-of-type(1), .contactForm .container .inner .formWrapper .top form > div:nth-of-type(2), .contactForm .container .inner .formWrapper .top form > div:nth-of-type(3), .contactForm .container .inner .formWrapper .top form > div:nth-of-type(4), .contactForm .container .inner .formWrapper .top form > div:nth-of-type(5) {
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .contactForm .container .inner .formWrapper .top form > div:nth-of-type(1), .contactForm .container .inner .formWrapper .top form > div:nth-of-type(2), .contactForm .container .inner .formWrapper .top form > div:nth-of-type(3), .contactForm .container .inner .formWrapper .top form > div:nth-of-type(4), .contactForm .container .inner .formWrapper .top form > div:nth-of-type(5) {
    margin-bottom: 0;
  }
}
.contactForm .container .inner .formWrapper .top form > div:nth-of-type(5), .contactForm .container .inner .formWrapper .top form > div:nth-of-type(6) {
  grid-column: 1/3;
}
.contactForm .container .inner .formWrapper .top form .submitWrapper {
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 1100px) {
  .contactForm .container .inner .formWrapper .top form .submitWrapper {
    margin-top: 1rem;
  }
}
.contactForm .container .inner .formWrapper .top form .submitWrapper p {
  margin: 0;
  width: fit-content;
  margin-left: auto;
  display: flex;
  gap: 0;
  position: relative;
  background-color: #E4FF00;
  border-radius: 8px;
  width: 150px;
  height: 56px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.35s ease;
}
@media (min-width: 1100px) {
  .contactForm .container .inner .formWrapper .top form .submitWrapper p:hover {
    background-color: #1328E8;
  }
  .contactForm .container .inner .formWrapper .top form .submitWrapper p:hover input {
    color: #fff;
  }
  .contactForm .container .inner .formWrapper .top form .submitWrapper p:hover svg path {
    fill: #fff;
  }
}
.contactForm .container .inner .formWrapper .top form .submitWrapper p .wpcf7-spinner {
  position: absolute;
  left: -2rem;
}
.contactForm .container .inner .formWrapper .top form .submitWrapper p input {
  width: 150px;
  height: 56px;
  cursor: pointer;
  border-bottom: none;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: color 0.35s ease;
  font-size: 1rem;
  color: #000;
  font-weight: 500;
  font-family: "Space Grotesk", sans-serif;
  padding-right: 1.5rem;
}
.contactForm .container .inner .formWrapper .top form .submitWrapper p svg {
  left: 1.75rem;
  position: relative;
}
.contactForm .container .inner .formWrapper .top form .submitWrapper p svg path {
  fill: #000;
  transition: fill 0.35s ease;
}
.contactForm .container .inner .formWrapper .top form p {
  width: 100%;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.contactForm .container .inner .formWrapper .top form p input, .contactForm .container .inner .formWrapper .top form p textarea {
  width: 100%;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #A1A1A1;
  background-color: transparent;
}
.contactForm .container .inner .formWrapper .top form p input[type=text], .contactForm .container .inner .formWrapper .top form p input[type=email] {
  height: 38px;
}
.contactForm .container .inner .formWrapper .top form p textarea {
  height: 100px;
  resize: none;
}
.contactForm .container .inner .formWrapper .top form p span {
  display: flex;
}
.contactForm .container .inner .formWrapper .bottom p {
  margin: 0;
  color: #575757;
}
.contactForm .container .inner .formWrapper .bottom p a {
  color: #000;
  text-decoration: underline;
}
@media (min-width: 1100px) {
  .contactForm .container .inner .formWrapper .bottom p a:hover {
    color: #1328E8;
  }
}

.site-footer {
  background-color: #E8EBEF;
  color: #575757;
}
@media (min-width: 768px) {
  .site-footer {
    margin-top: 2rem;
  }
}
@media (min-width: 1100px) {
  .site-footer {
    margin-top: 4rem;
  }
}
.site-footer .container {
  padding-top: 3rem;
  padding-bottom: 6rem;
}
@media (min-width: 768px) {
  .site-footer .container {
    padding-bottom: 3rem;
  }
}
@media (min-width: 1100px) {
  .site-footer .container {
    padding-top: 5rem;
    padding-bottom: 1rem;
  }
}
.site-footer .container .inner {
  max-width: 1330px;
  margin-left: auto;
  margin-right: auto;
}
.site-footer .container .inner .desc {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .site-footer .container .inner .desc {
    margin-top: -0.25rem;
  }
}
.site-footer .container .inner .desc p {
  margin-bottom: 0;
  max-width: 360px;
}
@media (min-width: 768px) {
  .site-footer .container .inner .desc p {
    max-width: 100%;
  }
}
@media (min-width: 1100px) {
  .site-footer .container .inner .desc p {
    max-width: 460px;
  }
}
@media (min-width: 1100px) {
  .site-footer .container .inner a:hover {
    color: #1328E8;
  }
  .site-footer .container .inner a:hover svg path {
    fill: #1328E8;
  }
}
.site-footer .container .inner a svg path {
  transition: fill 0.35s ease;
}
.site-footer .container .inner .logoWrapper {
  width: 100%;
  margin-bottom: 2rem;
  max-width: 50%;
}
@media (min-width: 640px) {
  .site-footer .container .inner .logoWrapper {
    max-width: 200px;
    margin-bottom: 3rem;
  }
}
@media (min-width: 1100px) {
  .site-footer .container .inner .logoWrapper {
    max-width: 280px;
    margin-bottom: 5rem;
  }
}
.site-footer .container .inner ul {
  list-style: none;
}
@media (min-width: 768px) {
  .site-footer .container .inner .bottom {
    display: grid;
    grid-template-columns: 390px 1fr 1fr;
    gap: 0 3rem;
  }
}
@media (min-width: 1100px) {
  .site-footer .container .inner .bottom {
    grid-template-columns: 50% 1fr 1fr;
  }
}
@media (min-width: 1400px) {
  .site-footer .container .inner .bottom {
    grid-template-columns: 40% 1.2fr 1fr;
  }
}
.site-footer .container .inner .bottom .menuWrapper, .site-footer .container .inner .bottom .contactInfo {
  display: grid;
  gap: 1rem;
}
.site-footer .container .inner .bottom .menuWrapper a, .site-footer .container .inner .bottom .contactInfo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #575757;
}
.site-footer .container .inner .bottom .menuWrapper h5, .site-footer .container .inner .bottom .contactInfo h5 {
  font-size: 0.9rem;
  margin: 0;
  color: #000;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
}
.site-footer .container .inner .bottom .menuWrapper ul, .site-footer .container .inner .bottom .contactInfo ul {
  display: grid;
  gap: 0.5rem;
}
.site-footer .container .inner .bottom .menuWrapper ul li, .site-footer .container .inner .bottom .contactInfo ul li {
  margin: 0;
  font-size: 0.9rem;
}
.site-footer .container .inner .bottom .contactInfo {
  margin-bottom: 2rem;
}
.site-footer .container .inner .bottom .contactInfo ul {
  margin: 0;
  display: flex;
  align-items: center;
}
.site-footer .container .inner .copy {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 0.5rem;
  margin-top: 5rem;
}
@media (min-width: 1100px) {
  .site-footer .container .inner .copy {
    padding-top: 1rem;
  }
}
.site-footer .container .inner .copy p {
  margin-bottom: 0;
  font-size: 14px;
  width: 100%;
  color: #9F9F9F;
}/*# sourceMappingURL=footer.css.map */