::selection {
  background: #FE5253;
  color: white;
}

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: -apple-system, BlinkMacSystemFont, segoe ui, Roboto, helvetica neue, Arial, noto sans, sans-serif, apple color emoji, segoe ui emoji, segoe ui symbol, noto color emoji;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  background-color: #fff;
}
body p {
  line-height: 1.7;
}
body .center {
  text-align: center;
}
body a {
  color: #FE5253;
  text-decoration: none;
}
body .full-width {
  grid-template-columns: 100%;
}
body a:hover {
  text-decoration: underline;
}
body .content {
  padding-inline: 15px;
  margin-inline: auto;
}
body .chevron {
  height: 14px;
  width: 14px;
}
body .inverse-button-container {
  max-width: 1230px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  text-align: center;
}
body .inverse-button-container a {
  background: #fff;
  border: 2px solid #FE5253;
  color: #FE5253;
  border-radius: 60px;
  padding: 15px 15px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 150ms;
}
body .inverse-button-container a:hover {
  color: white;
  background: #FE5253;
  text-decoration: none;
}
body .fake-video .container {
  position: relative;
  margin-bottom: 1rem;
}
body .fake-video .container .overlay {
  position: absolute;
  inset: 0;
  bottom: 5px;
  z-index: 2;
  background: black;
  opacity: 0.2;
}
body .fake-video .container .play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  outline: none;
  background: rgba(254, 82, 83, 0.8);
  box-shadow: 0 3px 15px 6px rgba(0, 0, 0, 0.3);
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 3;
  transition: background-color 150ms;
}
body .fake-video .container .play-button::before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: #1f3a93;
  transform: scale(0);
  transform-origin: 83% 86%;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
body .fake-video .container .play-button span {
  width: 32.5px;
  height: 32.5px;
  background: #fff;
  margin-left: 15px;
  z-index: 100;
  clip-path: polygon(0 0, 80% 48%, 0 100%, 0% 100%);
}
body .fake-video .container img {
  padding: 0;
  object-fit: cover;
}
body .fake-video:hover .play-button {
  background: #FE5253;
}
body .image-caption {
  color: #888;
  font-size: 14px;
  top: -15px;
  position: relative;
  display: flex;
  justify-content: center;
}
body .default-grid-template {
  grid-template-columns: 1fr 2.7fr 1.3fr;
}
@media (max-width: 993px) {
  body .default-grid-template {
    grid-template-columns: 2fr 1fr;
  }
}
@media (max-width: 767px) {
  body .default-grid-template {
    grid-template-columns: 1fr;
  }
}
body .no-left-column-grid-template {
  grid-template-columns: 3fr 1fr;
}
@media (max-width: 993px) {
  body .no-left-column-grid-template {
    grid-template-columns: 2fr 1fr;
  }
}
@media (max-width: 767px) {
  body .no-left-column-grid-template {
    grid-template-columns: 1fr;
  }
}
body .no-right-column-grid-template {
  grid-template-columns: 1fr 4.1fr;
}
@media (max-width: 993px) {
  body .no-right-column-grid-template {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  body .no-right-column-grid-template {
    grid-template-columns: 1fr;
  }
}
body .one-column-grid-template {
  grid-template-columns: 1fr;
}

.hubspot-form {
  max-width: 767px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin-inline: auto;
  margin-bottom: 5rem;
}
.hubspot-form .submit {
  display: flex;
}
.hubspot-form .submit input[type=submit] {
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  line-height: 12px;
  position: relative;
  text-align: center;
  background-color: #FE5253;
  border: 1px solid #FE5253;
  color: #fff;
  border-radius: 15px;
  font-size: 14px;
  padding: 12px 24px;
  margin-inline: auto;
  margin-top: 18px;
}
.hubspot-form .gdpr {
  font-size: 14px;
  font-weight: 400;
}
.hubspot-form .gdpr .required {
  color: #FE5253;
  margin-left: 5px;
}
.hubspot-form .gdpr p {
  display: inherit;
}
.hubspot-form .gdpr input {
  width: auto;
  height: auto;
}
@media (max-width: 767px) {
  .hubspot-form {
    margin-inline: 1rem;
  }
}

.studo-input {
  display: flex;
  flex-direction: column;
}
.studo-input label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 600;
}
.studo-input .required {
  color: #FE5253;
  margin-left: 5px;
}
.studo-input input {
  padding: 10px 15px;
  border-radius: 15px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 16px;
  transition: border-color 150ms;
  margin-bottom: 15px;
}
.studo-input input:focus {
  border-color: #FE5253;
}

.no-scroll {
  overflow: hidden;
}

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