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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #393C35;
  background-color: #f7edd5;
  font-weight: 300;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  padding-bottom: 3rem;
}
@media (min-width: 1100px) {
  main {
    padding-bottom: 5rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Instrument Serif", Georgia, 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: #393C35;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}

a.arrow {
  transition: color 0.2s ease;
}
a.arrow:after {
  transition: background-image 0.2s 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: "Instrument Sans", -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 1.25rem;
  word-spacing: normal;
  border-radius: 100vw;
  font-weight: 300;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
  cursor: pointer;
  background-color: #F2526D;
}
@media (min-width: 768px) {
  .btn, .button {
    font-size: 17px;
  }
}
@media (min-width: 1100px) {
  .btn, .button {
    font-size: 18px;
    transition: 0.2s ease;
  }
}
@media (min-width: 1200px) {
  .btn, .button {
    font-size: 20px;
  }
}
@media (min-width: 1400px) {
  .btn, .button {
    font-size: 22px;
  }
}
.btn span, .button span {
  display: inline-block;
}
.btn span:before, .btn span:after, .button span:before, .button span:after {
  content: " ";
  white-space: pre;
}

.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: #f7edd5;
  }
}
.thirds .container .third:after {
  position: absolute;
  inset: 0;
  margin: auto;
  height: 100%;
  width: 100%;
  background-color: #f7edd5;
  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 .container {
  padding-top: 8rem;
  transition: padding-top 0.3s ease;
  display: grid;
  gap: 6rem;
}
@media (min-width: 768px) {
  .hero .container {
    gap: 2rem;
    padding-top: 10rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1100px) {
  .hero .container {
    padding-top: 12rem;
  }
}
@media (min-width: 1400px) {
  .hero .container {
    padding-top: 14rem;
  }
}
@media (min-width: 1600px) {
  .hero .container {
    padding-top: 16rem;
  }
}
.hero .container .text {
  padding: 3rem 0;
  width: 100%;
}
.hero .container .down {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .hero .container .down {
    margin-top: 0;
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 1100px) {
  .hero .container .down {
    width: 60px;
    height: 60px;
    margin-top: -5rem;
  }
}
@media (min-width: 1400px) {
  .hero .container .down {
    margin-left: 3rem;
  }
}

.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: #FFFEF3;
  text-decoration: none;
}
.skip-link:focus {
  left: 6px;
}

.hero .container.titleTwoCol {
  display: grid;
  gap: 2rem 0;
}
.hero .container.titleTwoCol .title {
  grid-column: 1/3;
}
.hero .container.titleTwoCol .description {
  grid-column: 1/3;
}
@media only screen and (min-width: 768px) {
  .hero .container.titleTwoCol .description {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }
}
.hero .container.titleTwoCol .description .text {
  padding: 0;
}
.hero .container.titleTwoCol .description .text:nth-of-type(3) {
  grid-column: 1/3;
}
@media only screen and (min-width: 768px) {
  .hero .container.titleTwoCol {
    padding-left: calc((1600px - 4rem) / 12 * 0.5);
    padding-right: calc((1600px - 4rem) / 12 * 0.5);
  }
}
@media only screen and (min-width: 1100px) {
  .hero .container.titleTwoCol {
    padding-left: calc((1600px - 4rem) / 12 * 1.5);
    padding-right: calc((1600px - 4rem) / 12 * 1.5);
  }
}
@media only screen and (min-width: 1400px) {
  .hero .container.titleTwoCol {
    padding-left: calc((1600px - 4rem) / 12 * 2);
    padding-right: calc((1600px - 4rem) / 12 * 2);
  }
}

.formWrapper form {
  display: grid;
  gap: 1rem;
}
.formWrapper form p {
  margin: 0;
}
.formWrapper form input, .formWrapper form textarea {
  background-color: transparent;
  border: 1px solid #393C35;
  width: 100%;
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
}
@media only screen and (min-width: 1200px) {
  .formWrapper form input, .formWrapper form textarea {
    height: 76px;
  }
}
.formWrapper form input {
  padding: 1rem;
}
.formWrapper form textarea {
  padding: 1rem;
  resize: none;
}
.formWrapper form input[type=submit] {
  background-color: transparent;
  color: #393C35;
  transition: 0.3s ease;
  cursor: pointer;
}
.formWrapper form input[type=submit]:hover {
  background-color: #393C35;
  color: #f7edd5;
}
.formWrapper form ::placeholder {
  color: #9EA592;
}
.formWrapper .wpcf7-form-control-wrap[data-name=your-script] {
  display: block;
  position: relative;
}
.formWrapper .wpcf7-form-control-wrap[data-name=your-script]:hover:before {
  background-color: #F2526D;
  color: #f7edd5;
}
.formWrapper .wpcf7-form-control-wrap[data-name=your-script] input[type=file] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  transition: 0.3s ease;
}
@media only screen and (min-width: 1100px) {
  .formWrapper .wpcf7-form-control-wrap[data-name=your-script] input[type=file] {
    font-size: 18px;
  }
}
.formWrapper .wpcf7-form-control-wrap[data-name=your-script]::before {
  content: attr(data-filename);
  display: block;
  transition: 0.3s ease;
  width: 100%;
  border: 1px solid #F2526D;
  color: #F2526D;
  border-radius: 10px;
  padding: 1rem;
  cursor: pointer;
  box-sizing: border-box;
}
.formWrapper .wpcf7 .wpcf7-form {
  grid-template-columns: 1fr 1fr;
}
.formWrapper .wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip:nth-of-type(2) {
  opacity: 0 !important;
}
.formWrapper .wpcf7 .wpcf7-form .submitWrapper p {
  position: relative;
  height: 100%;
}
.formWrapper .wpcf7 .wpcf7-form .submitWrapper p input {
  height: 100%;
  text-align: left;
}
.formWrapper .wpcf7 .wpcf7-form .submitWrapper p .wpcf7-spinner {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1rem;
  margin: auto;
}
.formWrapper .wpcf7 .wpcf7-form p:nth-of-type(1), .formWrapper .wpcf7 .wpcf7-form p:nth-of-type(2), .formWrapper .wpcf7 .wpcf7-form p:nth-of-type(3), .formWrapper .wpcf7 .wpcf7-form p:nth-of-type(4), .formWrapper .wpcf7 .wpcf7-form p:nth-of-type(5) {
  grid-column: 1/3;
}
.formWrapper .wpcf7 .wpcf7-form p label {
  display: none;
}
.formWrapper .wpcf7 .wpcf7-form p br {
  display: none;
}
.formWrapper .wpcf7 .wpcf7-form p input,
.formWrapper .wpcf7 .wpcf7-form p textarea,
.formWrapper .wpcf7 .wpcf7-form p select {
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  width: 100%;
  border-radius: 10px;
  vertical-align: bottom;
}
.formWrapper .wpcf7 .wpcf7-form p input:focus,
.formWrapper .wpcf7 .wpcf7-form p textarea:focus,
.formWrapper .wpcf7 .wpcf7-form p select:focus {
  outline: none;
  border-color: #393C35;
}
.formWrapper .wpcf7 .wpcf7-form p textarea {
  resize: vertical;
  height: 110px;
}
@media only screen and (min-width: 768px) {
  .formWrapper .wpcf7 .wpcf7-form p textarea {
    height: 150px;
  }
}
.formWrapper .wpcf7 .wpcf7-form .wpcf7-not-valid-tip {
  position: absolute;
  display: block;
  font-size: 0.8rem;
  color: #F2526D;
  margin-top: -15px;
  margin-left: 12px;
  padding: 0.2rem 0.3rem;
  background: #f7edd5;
  animation: tipFadeIn 0.2s ease forwards;
}
@keyframes tipFadeIn {
  from {
    opacity: 0;
    transform: translateY(-3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.formWrapper .wpcf7 .wpcf7-form input.wpcf7-not-valid,
.formWrapper .wpcf7 .wpcf7-form textarea.wpcf7-not-valid {
  border-color: #ff6b6b !important;
}
.formWrapper .wpcf7 .wpcf7-form input.wpcf7-not-valid:focus,
.formWrapper .wpcf7 .wpcf7-form textarea.wpcf7-not-valid:focus {
  border-color: #393C35;
}
.formWrapper .wpcf7 .wpcf7-form .submit {
  position: relative;
  padding-right: 3rem;
  height: 40px;
  margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
  .formWrapper .wpcf7 .wpcf7-form .submit {
    height: 50px;
    margin-top: 2rem;
  }
}
.formWrapper .wpcf7 .wpcf7-form .submit::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.25rem;
  margin: auto;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0.499965 9.10714L8.66827 0.93884M0.62188 0.499946L8.98525 0.621861L9.10716 8.98523' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
  background-position: 100% 50%;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}
.formWrapper .wpcf7 .wpcf7-form .submit:hover::after {
  transform: rotate(45deg);
}
.formWrapper .wpcf7 .wpcf7-form .submit input {
  position: absolute;
  max-width: 230px;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  margin: 0 auto;
  width: 100%;
  padding: 0;
  background-color: #393C35;
  color: #FFFEF3;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 100;
  text-align: left;
  padding-left: 1.25rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.formWrapper .wpcf7 .wpcf7-form .submit input:hover {
  background-color: rgb(31.2743362832, 32.9203539823, 29.0796460177);
}
.formWrapper .wpcf7 .wpcf7-form .submit .wpcf7-spinner {
  padding: 0;
  margin: auto;
  position: absolute;
  /* inset: 0; */
  top: 0;
  bottom: 0;
  right: 101px;
  max-width: 230px;
}
.formWrapper .wpcf7 .wpcf7-form .wpcf7-response-output {
  border-width: 1px;
  border-radius: 10px;
}
.formWrapper .wpcf7 form.sent .wpcf7-response-output {
  border-color: #393C35;
}
.formWrapper .wpcf7 form.invalid .wpcf7-response-output,
.formWrapper .wpcf7 form.unaccepted .wpcf7-response-output {
  display: none !important;
}

.formSec .container {
  padding-top: 6rem;
  transition: padding-top 0.3s ease;
}
@media (min-width: 768px) {
  .formSec .container {
    display: grid;
    position: relative;
    grid-template-columns: 100px auto;
    gap: 6rem;
  }
}
@media only screen and (min-width: 1100px) {
  .formSec .container {
    grid-template-columns: calc((1600px - 4rem) / 12 * 1.75) calc((100% - (1600px - 4rem) / 12 * 1.5) / 2) calc((100% - (1600px - 4rem) / 12 * 1.5) / 2);
    gap: 0;
    padding-top: 8rem;
  }
}
@media only screen and (min-width: 1400px) {
  .formSec .container {
    grid-template-columns: calc((1600px - 4rem) / 12 * 1.75) calc((100% - (1600px - 4rem) / 12 * 2) / 2) calc((100% - (1600px - 4rem) / 12 * 2) / 2);
    gap: 0;
    padding-top: 10rem;
  }
}
.formSec .container .text {
  display: none;
}
@media (min-width: 768px) {
  .formSec .container .text {
    display: block;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1100px) {
  .formSec .container .text {
    width: 100%;
  }
}
.formSec .container .text ul {
  list-style: none;
}
@media (min-width: 768px) {
  .formSec .container .text ul {
    margin-top: -0.5rem;
  }
}
.formSec .container .image {
  display: none;
}
@media (min-width: 768px) {
  .formSec .container .image {
    display: block;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    background-color: #393C35;
    aspect-ratio: 1;
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    width: calc(100px + 5rem);
  }
}
@media (min-width: 1100px) {
  .formSec .container .image {
    position: relative;
    bottom: auto;
    left: auto;
    width: calc(100% - 1rem);
    margin-left: 1rem;
    height: 100%;
    aspect-ratio: auto;
  }
}
.formSec .container .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  margin: auto;
}
@media only screen and (min-width: 1200px) {
  .formSec .container .image img {
    width: 110%;
    height: 110%;
    bottom: -10%;
  }
}

.devSlate {
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .devSlate {
    padding-bottom: 4rem;
  }
}
.devSlate .container {
  padding-top: 4rem;
  transition: padding-top 0.3s ease;
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .devSlate .container {
    position: relative;
    grid-template-columns: calc(100px + 7rem) auto;
    gap: 1rem;
  }
}
@media only screen and (min-width: 1100px) {
  .devSlate .container {
    grid-template-columns: calc((1600px - 4rem) / 12 * 1.75) auto;
    gap: 0;
    padding-top: 8rem;
  }
}
@media only screen and (min-width: 1400px) {
  .devSlate .container {
    grid-template-columns: calc((1600px - 4rem) / 12 * 1.75) auto;
    gap: 0;
    padding-top: 10rem;
  }
}
.devSlate .container .text {
  margin-bottom: 0;
}
@media only screen and (min-width: 1100px) {
  .devSlate .container .text {
    width: 100%;
  }
}
.devSlate .container .text ul {
  list-style: none;
}
.devSlate .container .text ul li span {
  display: inline-flex;
  align-items: center;
  padding-right: 1.5rem;
  position: relative;
  font-size: clamp(17px, 2vw + 10px, 22px);
  width: fit-content;
}
.devSlate .container .text ul li span: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: "";
  transform: rotate(90deg);
}
@media (min-width: 768px) {
  .devSlate .container .text ul li span:after {
    transform: rotate(0deg);
  }
}
.devSlate .container .view {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/6;
  border-radius: 10px;
  background-color: #9EA592;
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 1100px) {
  .devSlate .container .view .inner {
    width: 100%;
    height: 100%;
    margin: auto;
    padding: 1rem;
    border: 1px solid #f7edd5;
    border-radius: 10px;
    position: relative;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    overflow: hidden;
  }
}
.devSlate .container .view .inner:after {
  content: "";
  overflow: hidden;
  inset: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: 10px;
  z-index: -1;
  background-color: rgba(247, 237, 213, 0.05);
  backdrop-filter: blur(10px);
  transition: 0.3s ease all;
}
@media only screen and (min-width: 1100px) {
  .devSlate .container .view {
    padding: 8.8% 9.34%;
  }
  .devSlate .container .view:hover span {
    color: #f7edd5;
  }
  .devSlate .container .view:hover .inner:after {
    opacity: 0;
  }
}
@media (min-width: 1200px) {
  .devSlate .container .view {
    padding: 64px 110px;
  }
}
.devSlate .container .view span {
  position: relative;
  z-index: 3;
  color: #FFFEF3;
  font-family: "Instrument Serif", Georgia, serif;
  transition: color 0.3s ease;
}
.devSlate .container .view img {
  width: 100%;
  z-index: 1;
  position: absolute;
  inset: 0;
  margin: auto;
  height: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 500px) {
  .devSlate .container .view {
    aspect-ratio: 1190/605;
  }
}

.site-footer .container .logoWrapper svg path {
  fill: #9EA592;
}/*# sourceMappingURL=invest.css.map */