:root {
  --grey-80: #6f3738;
  --black-4: #222328;
  --white: white;
  --primary-80: #a80b00;
  --grey-60: #a68081;
  --primary-20: #eff0ff;
  --grey-40: #e4c5c6;
  --grey-10: #eff3fb;
  --black: #35363f;
  --primary-40: #545454;
  --grey-20: #efdede;
  --salmon: #f51000;
  --shadow: #37446f1a;
  --black-2: #0000003b;
  --tomato: #f2a297;
  --firebrick: #cc1800;
  --black-3: #191a20;
  --red: #e80f00;
  --j2: #9f0027;
  --j1: #9f00270f;
  --tomato-2: #e76958;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: var(--grey-80);
  font-family: Nunito Sans, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

p {
  color: var(--black-4);
  margin-bottom: 0;
  line-height: 26px;
}

.logo-text {
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.brand {
  color: #37446f;
  align-items: center;
  display: flex;
}

.brand.w--current {
  padding-left: 0;
}

.brand.white {
  color: #fff;
}

.h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.h5.white {
  color: #fff;
  margin-bottom: 10px;
}

.logo-icon {
  width: 220px;
  margin-left: 20px;
  margin-right: 62px;
}

.navbar-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.buttons-container {
  border-radius: 4px;
  padding-left: 20px;
  display: flex;
}

.dropdown-list.w--open {
  background-color: #fff;
  border-radius: 4px;
  padding-top: 14px;
  padding-bottom: 14px;
  box-shadow: 0 20px 40px #37446f33;
}

.dropdown-link {
  color: #8087a6;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.dropdown-link:hover {
  color: #4e74ff;
  background-color: #eff0ff;
}

.dropdown-link.w--current {
  color: #4e74ff;
}

.dropdown-icon {
  color: #8087a6;
  display: none;
}

.nav-menu {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.primary-small-button {
  border: 1.6px solid var(--primary-80);
  background-color: var(--primary-80);
  color: #fff;
  text-align: center;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  margin-top: 20px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.primary-small-button:hover {
  background-color: #3762ff;
  border-color: #3762ff;
}

.primary-small-button.white {
  color: #fff;
  background-color: #ffffff4d;
  border-style: none;
}

.primary-small-button.white:hover {
  background-color: #ffffff80;
}

.primary-small-button.light:hover {
  background-color: #3762ff;
  border-color: #3762ff;
}

.navigation {
  background-color: #0000;
  width: 100%;
  height: 74px;
  position: absolute;
}

.navigation.dark {
  background-color: #253057;
  position: fixed;
}

.navigation.light {
  background-color: var(--white);
  display: none;
  position: fixed;
}

.dropdown-toggle {
  padding-right: 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.dropdown-toggle:hover {
  color: #4e74ff;
}

.dropdown-toggle.white {
  color: #fff;
}

.dropdown-toggle.white:hover {
  color: #fffc;
}

.burger-icon {
  cursor: pointer;
  display: none;
}

.secondary-small-button {
  color: #4e74ff;
  background-color: #0000;
  border: 1.6px solid #4e74ff;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.secondary-small-button:hover {
  background-color: #4e74ff24;
}

.secondary-small-button.margin-right {
  margin-right: 10px;
}

.secondary-small-button.light {
  color: #fff;
  border-color: #fff;
}

.secondary-small-button.margin-top {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.h4 {
  margin-top: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
}

.h4.center {
  text-align: center;
  margin-bottom: 0;
}

.h4.pricing-4 {
  margin-top: 10px;
}

.grey-80 {
  background-color: var(--grey-80);
  border-radius: 100%;
  width: 64px;
  height: 64px;
}

.grey-60 {
  background-color: var(--grey-60);
  border-radius: 100%;
  width: 64px;
  height: 64px;
}

.quote {
  color: #37446f;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 28px;
}

.primary-20 {
  background-color: var(--primary-20);
  border-radius: 100%;
  width: 64px;
  height: 64px;
}

.grey-40 {
  background-color: var(--grey-40);
  border-radius: 100%;
  width: 64px;
  height: 64px;
}

.styleguide-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, 30%);
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: grid;
}

.grey-10 {
  background-color: var(--grey-10);
  border-radius: 100%;
  width: 64px;
  height: 64px;
}

.h3 {
  color: var(--black);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.h3.not-margin {
  margin-top: 0;
}

.primary-40 {
  background-color: var(--primary-40);
  border-radius: 100%;
  width: 64px;
  height: 64px;
}

.small-text {
  color: #8087a6;
  font-size: 14px;
}

.small-text.small-height {
  line-height: 24px;
}

.h2 {
  font-size: 20px;
  font-weight: 800;
}

.h2.white {
  color: #fff;
  margin-top: 0;
  margin-bottom: 30px;
}

.h2.margin {
  margin-top: 40px;
  margin-bottom: 20px;
}

.h1 {
  color: var(--black);
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 800;
  line-height: 50px;
}

.h1.white {
  color: #fff;
}

.h1._404-page {
  color: #fff;
  letter-spacing: 1px;
  margin-top: 14px;
  margin-bottom: 14px;
  font-weight: 400;
}

.link {
  color: var(--primary-80);
  margin-top: 10px;
  font-weight: 600;
  line-height: 28px;
  text-decoration: underline;
  display: flex;
}

.link:hover {
  text-decoration: underline;
}

.link.breadcrumb {
  display: inline;
}

.link.grey {
  color: #8087a6;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
}

.link.grey:hover {
  color: #3762ff;
  text-decoration: none;
}

.text {
  color: #8087a6;
  line-height: 28px;
}

.styleguide-colors {
  justify-content: space-between;
  display: flex;
}

.styleguide-container {
  flex-direction: column;
  align-self: flex-start;
  align-items: flex-start;
  display: flex;
}

.section {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.section.styleguide {
  padding-top: 120px;
}

.section.home-hero {
  z-index: 50;
  color: var(--primary-80);
  background-image: linear-gradient(#fff0 61%, #fff 92%), url('../images/sadff.png');
  background-position: 0 0, 15% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, 115%;
  flex-direction: column;
  align-items: center;
  height: 110vh;
  padding-top: 40px;
  padding-bottom: 120px;
  display: flex;
  position: static;
}

.section.padding-bottom {
  padding-bottom: 120px;
}

.section.dark {
  background-color: #253057;
  background-image: url('../images/footer-shape.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 80px;
  padding-bottom: 80px;
}

.section.hero {
  background-image: linear-gradient(#00000012, #00000012), url('../images/31a.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  padding-top: 40px;
  padding-bottom: 40px;
}

.section.hero.bg {
  background-image: url('../images/hero-lines.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  align-items: center;
  height: 100vh;
  display: flex;
}

.section.hero.overflow {
  max-width: 100%;
  overflow: visible;
}

.section.grey {
  background-color: #eff3fb;
  padding-top: 80px;
  padding-bottom: 0;
}

.section.grey.margin-bottom {
  padding-bottom: 80px;
}

.section.grey.small-margin {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section.hero-dark {
  background-color: #253057;
  background-image: url('../images/hero-lines.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 140px;
  padding-bottom: 120px;
}

.section.hero-grey {
  background-color: #eff3fb;
  padding-top: 140px;
  padding-bottom: 120px;
}

.section.contact-hero {
  background-image: url('../images/Background.png');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: 70%;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
  padding-top: 181px;
  padding-bottom: 120px;
  display: flex;
}

.section.margin-bottom {
  padding-bottom: 120px;
}

.section.home-hero-copy {
  z-index: 50;
  color: var(--primary-80);
  background-image: linear-gradient(#fff0 61%, #fff 92%), url('../images/2.png');
  background-position: 0 0, 100% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, 120%;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  padding-top: 237px;
  padding-bottom: 120px;
  display: flex;
  position: static;
}

.grey-20 {
  background-color: var(--grey-20);
  border-radius: 100%;
  width: 64px;
  height: 64px;
}

.small-title {
  color: #8087a6;
  margin-top: 40px;
  margin-bottom: 10px;
}

.primary-80 {
  background-color: var(--primary-80);
  border-radius: 100%;
  width: 64px;
  height: 64px;
}

.title-container {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 770px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.title-container.not-margin {
  margin-bottom: 0;
}

.primary-medium-button {
  color: #fff;
  background-color: #4e74ff;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.primary-medium-button:hover {
  background-color: #3762ff;
}

.primary-medium-button.white {
  background-color: #fff6;
}

.primary-medium-button.white:hover {
  background-color: #fff9;
}

.primary-medium-button.stretch {
  align-self: stretch;
}

.primary-medium-button.margin-top, .primary-medium-button.pricing-4 {
  margin-top: 30px;
}

.large-avatar {
  background-image: url('../images/Avatar_5.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100%;
  width: 124px;
  height: 124px;
  margin-bottom: 24px;
}

.large-avatar.avatar-6 {
  background-image: url('../images/Avatar_6.jpg');
}

.large-avatar.avatar-2 {
  background-image: url('../images/Avatar_10.jpg');
}

.large-avatar.avatar-4 {
  background-image: url('../images/Avatar_8.jpg');
}

.large-avatar.avatar-3 {
  background-image: url('../images/Avatar_9.jpg');
}

.large-avatar.avatar-5 {
  background-image: url('../images/Avatar_7.jpg');
}

.submit-button {
  color: #fff;
  background-color: #4e74ff;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 12px 28px;
  font-size: 16px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.submit-button:hover {
  background-color: #37446f;
}

.text-field {
  background-color: #eff3fb;
  border: 1px solid #eff3fb;
  border-radius: 4px;
  min-width: 280px;
  height: 46px;
  margin-bottom: 0;
  padding: 12px 24px;
  transition: all .2s;
}

.text-field:hover {
  border-style: solid;
  border-color: #dee2ef;
}

.text-field:focus {
  border-style: solid;
  border-color: #c5cee4;
}

.text-field::placeholder {
  color: #8087a699;
}

.text-field.white {
  background-color: #fff;
}

.medium-avatar {
  background-image: url('../images/Avatar_1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100%;
  width: 90px;
  height: 90px;
  margin-bottom: 24px;
}

.medium-avatar.margin-top {
  margin-top: -70px;
}

.medium-avatar.margin-top.avatar-2 {
  background-image: url('../images/Avatar_2.jpg');
}

.form {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

.primary-button {
  background-color: var(--primary-80);
  color: #fff;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  padding: 14px 34px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.primary-button:hover {
  background-color: var(--salmon);
  transform: scale(1.1);
}

.primary-button.white {
  background-color: #fff6;
}

.primary-button.white:hover {
  background-color: #fff9;
}

.submit {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.small-avatar {
  background-image: url('../images/Avatar_1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100%;
  width: 70px;
  height: 70px;
}

.small-avatar.avatar-3 {
  background-image: url('../images/Avatar_3.jpg');
}

.small-avatar.avatar-2 {
  background-image: url('../images/Avatar_2.jpg');
}

.small-avatar.avatar-4 {
  background-image: url('../images/Avatar_4.jpg');
}

.secondary-button {
  color: #4e74ff;
  background-color: #0000;
  border: 1.6px solid #4e74ff;
  border-radius: 4px;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}

.secondary-button:hover {
  background-color: #4e74ff24;
}

.secondary-button.margin-top {
  border-color: var(--primary-80);
  color: var(--primary-80);
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.secondary-button.light {
  color: #fff;
  border-color: #fff;
}

.buttons-styleguide {
  border-radius: 4px;
  padding: 20px;
}

.buttons-styleguide.blue {
  background-color: #4e74ff;
  margin-top: 20px;
}

.buttons-styleguide.dark {
  background-color: #37446f;
}

.textarea {
  background-color: #eff3fb;
  border: 1px solid #eff3fb;
  border-radius: 4px;
  min-width: 380px;
  min-height: 200px;
  padding: 16px 24px;
  transition: all .2s;
}

.textarea:hover {
  border-style: solid;
  border-color: #dee2ef;
}

.textarea:focus {
  border-style: solid;
  border-color: #c5cee4;
}

.textarea::placeholder {
  color: #8087a699;
}

.secondary-medium-button {
  color: #4e74ff;
  background-color: #0000;
  border: 1.6px solid #4e74ff;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.secondary-medium-button:hover {
  background-color: #4e74ff24;
}

.secondary-medium-button.margin-top {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.secondary-medium-button.light {
  color: #fff;
  border-color: #fff;
}

.container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.medium-container {
  width: 100%;
  max-width: 770px;
}

.medium-container.center {
  margin-left: auto;
  margin-right: auto;
}

.rich-text {
  border-radius: 8px;
  margin-top: 20px;
}

.rich-text ul {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 60px;
}

.rich-text h4 {
  color: #37446f;
  letter-spacing: -.4px;
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
}

.rich-text a {
  color: #4e74ff;
  text-decoration: none;
}

.rich-text strong {
  color: #37446f;
  font-weight: 600;
}

.rich-text figure {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
}

.rich-text p {
  color: #37446f;
  letter-spacing: .2px;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 32px;
}

.rich-text blockquote {
  border-left-color: #c5cee4;
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
}

.rich-text h2 {
  color: #37446f;
  letter-spacing: -.4px;
  margin-top: 30px;
  font-size: 24px;
  font-weight: 600;
}

.rich-text img {
  margin-top: 20px;
}

.rich-text h3 {
  letter-spacing: -.4px;
  margin-top: 40px;
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
}

.rich-text li {
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 18px;
  line-height: 32px;
}

.rich-text figcaption {
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.footer {
  padding-top: 60px;
}

.footer.dark {
  background-color: var(--black);
  background-image: url('../images/footer-shape.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: contain;
}

.social-link {
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  transition: all .2s;
  display: flex;
}

.social-link:hover {
  opacity: .8;
}

.footer-link {
  color: #8087a6;
  line-height: 32px;
  text-decoration: none;
}

.footer-link:hover {
  color: #4e74ff;
}

.footer-link.grey {
  color: #c5cee4;
  transition: all .2s;
}

.footer-link.grey:hover {
  color: #3762ff;
}

.footer-grid {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  width: 100%;
  display: grid;
}

.footer-bottom {
  color: #8087a6;
  border-top: 1px solid #dee2ef;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 15px;
  font-size: 14px;
  display: flex;
}

.footer-bottom.grey {
  color: #c5cee4;
  border-top-style: none;
}

.small-link {
  color: #4e74ff;
  text-decoration: none;
  transition: all .2s;
}

.small-link:hover {
  color: #37446f;
}

.small-link.light {
  color: #3762ff;
}

.small-link.light:hover {
  color: #4e74ff;
}

.social-container {
  display: flex;
}

.social-container.margin-top {
  margin-top: 14px;
}

.dot {
  background-color: #c5cee4;
  border-radius: 100%;
  width: 8px;
  height: 8px;
  margin-left: 10px;
  margin-right: 10px;
}

.footer-top {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.links-container {
  flex-direction: column;
  display: flex;
}

.two-col-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  display: grid;
}

.two-col-grid.max-width {
  grid-template-columns: max-content max-content;
}

.two-col-grid.margin-top {
  align-items: start;
  margin-top: 20px;
}

.small-container {
  flex-direction: column;
  align-items: flex-start;
  max-width: 470px;
  display: flex;
}

.small-container.center {
  text-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.main-image {
  justify-content: center;
  align-items: center;
  width: 140%;
  height: 100%;
  display: flex;
}

.main-image.shadow {
  box-shadow: 0 30px 50px #9fabd747;
}

.subtitle {
  color: #8087a6;
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 28px;
}

.subtitle.white {
  color: #c5cee4e6;
}

.main-grid {
  z-index: 800;
  grid-column-gap: 30px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: -123px;
  display: grid;
  position: static;
  top: 4px;
}

.feature-icon-top-v-1 {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.feature-icon {
  background-color: #eff0ff;
  border-radius: 10px;
  width: 70px;
  padding: 14px;
}

.feature-icon.white-bg {
  background-color: #0000;
  margin-right: 0;
}

.layout-container {
  border: 1px solid #c5cee4;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  transition: all .2s;
  overflow: hidden;
}

.layout-container:hover {
  transform: scale(1.02);
}

.landing-image {
  border-radius: 6px;
  box-shadow: 0 10px 20px #8087a633;
}

.play-icon {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  padding-left: 2px;
}

.play-icon.large {
  width: 24px;
  height: 24px;
  margin-right: 0;
}

.icon-button {
  color: #fff;
  background-color: #4e74ff;
  border-radius: 4px;
  align-items: center;
  padding: 14px 34px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.icon-button:hover {
  background-color: #3762ff;
}

.logotypes-container {
  justify-content: space-between;
  display: flex;
}

.logotype {
  height: 38px;
  padding-left: 8px;
  padding-right: 8px;
  display: flex;
}

.logo-image {
  opacity: .24;
}

.feature-info {
  width: 100%;
  max-width: 240px;
  margin-left: 20px;
}

.feature-icon-left {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.small-feature {
  max-width: 470px;
  padding-top: 4px;
  padding-bottom: 4px;
  display: flex;
}

.small-feature.margin-top {
  margin-top: 20px;
}

.check-icon-v-1 {
  margin-right: 8px;
}

.slider-testimonials {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.small-feature-icon {
  background-color: #eff0ff;
  border-radius: 10px;
  width: 50px;
  padding: 8px;
}

.left-arrow {
  justify-content: center;
  align-items: center;
  width: 50px;
  display: flex;
}

.arrow-right-icon {
  border-radius: 100%;
  margin-left: 2px;
}

.slider-container {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.image-slider {
  object-fit: cover;
  border-radius: 6px;
  width: 100%;
  height: 365px;
}

.right-arrow {
  justify-content: center;
  align-items: center;
  width: 50px;
  display: flex;
}

.arrow-container {
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  display: flex;
}

.arrow-left-icon {
  border-radius: 100%;
}

.slide-nav {
  display: none;
}

.avatar-details {
  margin-left: 20px;
}

.testimonial-v-1 {
  border-radius: 4px;
  padding: 30px;
  box-shadow: 0 16px 24px #37446f24;
}

.testimonial-details {
  align-items: center;
  display: flex;
}

.testimonial-details.margin-top {
  margin-top: 30px;
}

.tabs-menu-v-1 {
  background-color: #fff;
  border-radius: 100px;
  justify-content: space-between;
  align-items: center;
  padding: 4px;
  display: flex;
  box-shadow: 0 10px 20px #37446f24;
}

.type {
  color: #8087a6;
  letter-spacing: 1px;
  align-self: flex-end;
}

.tabs {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.check-icon-v-2 {
  width: 16px;
  margin-right: 8px;
}

.pricing-container {
  align-items: center;
  display: flex;
}

.tabs-content {
  justify-content: center;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 20px;
  display: flex;
  overflow: visible;
}

.pricing-details {
  margin-bottom: 30px;
}

.pricing-card-v-1 {
  background-color: #fff;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 280px;
  padding: 30px 30px 40px;
  display: flex;
  box-shadow: 0 30px 50px #37446f1a;
}

.pricing-card-v-1.small-shadow {
  box-shadow: 0 10px 30px #37446f1a;
}

.chip {
  color: #3762ff;
  background-color: #4e74ff24;
  border-radius: 100px;
  margin-left: 10px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.label-discount {
  margin-bottom: 6px;
  margin-left: 280px;
  display: flex;
}

.tab-link-v-1-tab-2 {
  color: #8087a6;
  background-color: #0000;
  padding: 6px 22px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  transition: all .2s;
}

.tab-link-v-1-tab-2.w--current {
  color: #fff;
  background-color: #4e74ff;
  border-radius: 100px;
}

.dollar {
  color: #37446f;
  align-self: flex-start;
  font-family: Montserrat, sans-serif;
}

.tab-link-v-1-tab-1 {
  color: #8087a6;
  background-color: #0000;
  padding: 6px 22px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.tab-link-v-1-tab-1.w--current {
  color: #fff;
  background-color: #4e74ff;
  border-radius: 100px;
}

.price {
  padding-left: 4px;
  padding-right: 4px;
  font-family: Montserrat, sans-serif;
  font-size: 54px;
  line-height: 54px;
}

.accordion {
  width: 100%;
}

.accordion-text {
  position: static;
}

.accordion-text.w--open {
  background-color: #fff;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.plus-icon {
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  display: flex;
  position: relative;
}

.vertical-line {
  background-color: #8087a6;
  border-radius: 4px;
  width: 2px;
  height: 18px;
}

.horizontal-line {
  background-color: #8087a6;
  border-radius: 4px;
  width: 18px;
  height: 2px;
  position: absolute;
}

.accordion-container {
  color: #37446f;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.line-2 {
  background-color: #dee2ef;
  width: 100%;
  height: 1.5px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.promo-video {
  background-image: url('../images/Design_Desktop_Unsplash.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 570px;
  height: 365px;
  display: flex;
}

.play-button {
  background-color: #4e74ff;
  background-image: linear-gradient(225deg, #41c4fe, #4e74ff 42%, #6238ef);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  display: flex;
  box-shadow: 0 4px 10px #37446f99;
}

.play-button.margin-right {
  margin-right: 15px;
  box-shadow: 0 4px 10px #37446f33;
}

.feature-icon-top-v-2 {
  text-align: center;
  background-color: #fff;
  border-radius: 4px;
  flex-direction: column;
  align-items: center;
  padding: 30px 18px;
  transition: transform .2s;
  display: flex;
  transform: translate(0);
  box-shadow: 0 4px 30px #00000042;
}

.feature-icon-top-v-2:hover {
  transform: translate(15px, -15px);
}

.star-icon {
  width: 20px;
  margin-left: 2px;
  margin-right: 2px;
}

.slide-nav-dark {
  display: none;
}

.rating {
  margin-top: 10px;
}

.testimonial-v-2 {
  text-align: center;
  border-radius: 4px;
  flex-direction: column;
  align-items: center;
  margin: 50px 60px;
  padding: 30px;
  display: flex;
  box-shadow: 0 16px 24px #37446f1a;
}

.tabs-menu-v-2 {
  background-color: #eff3fb;
  border-radius: 100px;
  justify-content: space-between;
  align-items: center;
  padding: 4px;
  display: flex;
}

.tab-link-v-2-tab-1 {
  color: #8087a6;
  background-color: #0000;
  padding: 6px 22px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.tab-link-v-2-tab-1.w--current {
  color: #4e74ff;
  background-color: #fff;
  border-radius: 100px;
  font-weight: 600;
  transition: all .2s;
  box-shadow: 0 6px 10px #37446f33;
}

.tab-link-v-2-tab-2 {
  color: #8087a6;
  background-color: #0000;
  padding: 6px 22px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.tab-link-v-2-tab-2.w--current {
  color: #4e74ff;
  background-color: #fff;
  border-radius: 100px;
  font-weight: 600;
  box-shadow: 0 6px 10px #37446f33;
}

.email-form {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.pricing-card-v-2 {
  background-color: #eff0ff;
  border: 2px solid #4e74ff;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 46px 50px;
  display: flex;
  position: relative;
  box-shadow: 0 10px 30px #37446f1a;
}

.label-choise {
  color: #fff;
  background-color: #4e74ff;
  border-radius: 4px;
  padding: 8px 14px;
  position: absolute;
  inset: -20px auto auto;
}

.pricing-grid {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: max-content max-content max-content;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center;
  width: 100%;
  max-width: 840px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.posts-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.empty-state {
  color: #8087a6;
  background-color: #eff3fb;
  border-radius: 4px;
  justify-content: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 40px;
  display: flex;
}

.post-card {
  background-color: #fff;
  border-radius: 4px;
  flex-direction: column;
  height: 100%;
  transition: all .2s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 30px 50px #37446f1a;
}

.post-card:hover {
  transform: translate(0, -5px);
}

.post-image {
  object-fit: cover;
  width: 100%;
  height: 230px;
}

.post-content {
  flex-direction: column;
  flex: 1;
  padding: 20px 20px 30px;
  display: flex;
}

.analytics-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 770px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: grid;
}

.analytic {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.feature-content {
  margin-top: 30px;
}

.feature-image {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.feature-image-v-2 {
  width: 100%;
  height: 230px;
}

.image-composition {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 586px;
  display: grid;
}

.video-container {
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.lightbox-link {
  background-image: url('../images/Laptop_Work.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
}

.lightbox-link.image-2 {
  background-image: url('../images/Design_Desktop_Unsplash.jpg');
  height: 80%;
}

.lightbox-link.image-4 {
  background-image: url('../images/Team_Work.jpg');
}

.lightbox-link.image-3 {
  background-image: url('../images/Work_Space.jpg');
  height: 80%;
}

.testimonial-details-v-2 {
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 14px;
  display: flex;
}

.testimonial-v-3 {
  box-shadow: 0 16px 24px 0 var(--shadow);
  background-color: #fff;
  border-radius: 4px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 30px;
  display: flex;
}

.pricing-v-4-cell {
  justify-content: center;
  align-items: center;
  padding: 16px 15px;
  display: flex;
}

.pricing-card-v-4 {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 24px 15px;
  display: flex;
  box-shadow: 0 -1px #dee2ef, 1px 0 #dee2ef, -1px 0 #dee2ef;
}

.pricing-card-v-4.radius-right {
  border-top-right-radius: 6px;
}

.pricing-card-v-4.radius-left {
  border-top-left-radius: 6px;
}

.columns {
  justify-content: center;
  align-items: center;
  width: 80%;
  display: flex;
}

.empty-cell {
  background-color: #fff;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.pricing-v-4-header {
  width: 20%;
  padding: 10px 15px;
}

.pricing-grid-v-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto auto auto auto auto;
  grid-template-columns: 20% 20% 20% 20% 20%;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center;
  width: 100%;
  margin-top: 40px;
  padding: 4px;
  display: grid;
}

.pricing-v-4-row {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  box-shadow: -1px 0 #dee2ef, 1px 0 #dee2ef;
}

.pricing-v-4-row.grey {
  background-color: #eff3fb;
}

.pricing-v-4-row.border-bottom {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px #dee2ef, -1px 0 #dee2ef, 1px 0 #dee2ef;
}

.pricing-v-4-row.border-top {
  border-top-left-radius: 4px;
  box-shadow: 0 -1px #dee2ef, -1px 0 #dee2ef, 1px 0 #dee2ef;
}

.slash {
  color: #8087a6;
  margin-left: 6px;
  margin-right: 6px;
  display: inline;
}

.breadcrumbs {
  margin-top: 20px;
  margin-bottom: 20px;
}

.breadcrumb-text {
  color: #8087a6;
  display: inline;
}

.tab-link-v-3-tab-2 {
  color: #8087a6;
  background-color: #0000;
  padding: 6px 22px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.tab-link-v-3-tab-2.w--current {
  color: var(--primary-80);
  background-color: #0000;
  font-weight: 600;
}

.tabs-menu-v-3 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.tab-link-v-3-tab-4 {
  color: #8087a6;
  background-color: #0000;
  padding: 6px 22px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.tab-link-v-3-tab-4.w--current {
  color: var(--primary-80);
  background-color: #0000;
  font-weight: 600;
}

.tab-link-v-3-tab-1 {
  color: #8087a6;
  background-color: #0000;
  padding: 6px 22px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.tab-link-v-3-tab-1.w--current {
  color: var(--salmon);
  background-color: #0000;
  font-weight: 600;
  transition: all .2s;
}

.tab-link-v-3-tab-3 {
  color: #8087a6;
  background-color: #0000;
  padding: 6px 22px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.tab-link-v-3-tab-3.w--current {
  color: var(--primary-80);
  background-color: #0000;
  font-weight: 600;
}

.posts-grid-v-2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.post-card-v-3 {
  align-items: center;
  height: 230px;
  display: flex;
  overflow: hidden;
}

.post-image-container {
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 40%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.post-image-v-2 {
  object-fit: cover;
  width: 100%;
  height: 240px;
}

.post-content-v-2 {
  width: 60%;
  padding-left: 20px;
  padding-right: 20px;
}

.team-member {
  text-align: center;
  border-radius: 4px;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  display: flex;
  box-shadow: 0 16px 24px #37446f1a;
}

.team-grid {
  grid-column-gap: 30px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 870px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.testimonial-details-v-3 {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.contact-container {
  background-color: #fff;
  border-radius: 6px;
  flex-direction: column;
  align-items: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  box-shadow: 0 18px 40px #37446f24;
}

.error-message {
  color: #ff3b73;
  text-align: center;
  background-color: #ffe9e9;
  border-radius: 6px;
  max-width: 500px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.success-message {
  color: #0088a3;
  background-color: #cdfffb;
  border-radius: 6px;
  max-width: 500px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.contact-icon {
  margin-right: 8px;
}

.search-field {
  background-image: url('../images/search_icon.svg');
  background-position: 16px;
  background-repeat: no-repeat;
  background-size: 20px;
  border: 1px solid #c4cbe5;
  border-radius: 4px;
  min-width: 260px;
  max-width: 540px;
  height: 46px;
  margin-bottom: 0;
  margin-right: 20px;
  padding: 12px 24px 12px 52px;
  transition: all .2s;
}

.search-field:hover {
  border-color: #8087a6;
}

.search-field:focus {
  border-color: #4e74ff;
}

.search-field::placeholder {
  color: #c5cee4;
}

.topics-container {
  background-color: #eff3fb;
  border-radius: 4px;
  margin-top: 40px;
  padding: 30px;
  position: sticky;
  top: 30px;
}

.search {
  margin-bottom: 60px;
  display: flex;
}

.search.margin-top {
  margin-top: 40px;
  margin-bottom: 20px;
}

.link-topics {
  color: #4e74ff;
  text-decoration: none;
}

.help-category {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.asset-container {
  border-radius: 6px;
  flex-direction: row;
  align-items: center;
  margin-top: 50px;
  padding: 10px 30px 10px 10px;
  display: flex;
  box-shadow: 0 10px 24px #37446f24;
}

.asset-composition {
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  max-width: 160px;
  height: 160px;
  display: flex;
  overflow: hidden;
}

.asset-links {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 20px 30px 20px 50px;
  display: grid;
}

.link-asset {
  color: #4e74ff;
  font-weight: 600;
  line-height: 28px;
  text-decoration: none;
  display: flex;
}

.link-asset:hover {
  text-decoration: underline;
}

.utility-page-wrap {
  background-color: #253057;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.paragraph-white {
  color: #c5cee4;
  letter-spacing: .4px;
  margin-bottom: 30px;
}

.error-code {
  color: #8087a6;
  font-size: 18px;
  font-weight: 400;
}

.utility-page-form {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.image-password {
  margin-bottom: 20px;
}

.password-form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  max-width: 280px;
  display: grid;
}

.search-result-image {
  background-image: linear-gradient(to bottom, var(--primary-80), var(--salmon));
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 20%;
  height: 100%;
  display: flex;
}

.search-result-info {
  width: 80%;
  padding: 20px;
}

.search-result-item {
  border-radius: 6px;
  align-items: center;
  height: 210px;
  margin-bottom: 30px;
  display: flex;
  box-shadow: 0 10px 20px #37446f24;
}

.search-result-heading {
  color: var(--grey-80);
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-decoration: none;
}

.xsmall-text {
  color: var(--grey-60);
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 18px;
}

.article-info {
  margin-top: 30px;
  margin-bottom: 30px;
}

.post-container {
  width: 100%;
  max-width: 770px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 40px;
}

.inline-text {
  color: #8087a6;
  font-size: 14px;
  line-height: 20px;
  display: inline;
}

.main-image-copy22 {
  justify-content: center;
  align-items: center;
  width: 140%;
  height: 100%;
  display: flex;
}

.main-image-copy22.shadow {
  box-shadow: 0 30px 50px #9fabd747;
}

.column {
  flex-direction: column;
  padding-right: 58px;
  display: flex;
}

.image-5 {
  max-width: 30%;
}

.column-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 33px;
  display: flex;
}

.slider {
  width: 100%;
}

.aspas {
  width: 35px;
  margin-top: -13px;
  margin-left: -28px;
  position: absolute;
  inset: 6% auto auto;
}

.client-info {
  cursor: default;
  background-color: #fff;
  border-radius: 14px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: -80px;
  margin-right: 40px;
  padding: 15px 20px;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
  box-shadow: 1px 1px 22px #2d2c4e33;
}

.slide-nav-2 {
  display: none;
}

.icon-2 {
  margin-left: 38px;
  margin-right: 0;
  transition: all .2s;
}

.icon-2:hover {
  transform: translate(5px);
}

.client-info-block {
  text-align: left;
  margin-left: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.slider-2 {
  background-color: #0000;
  width: 100%;
}

.slide {
  float: none;
  clear: none;
  object-fit: fill;
  height: 50vh;
  position: static;
  top: 14px;
  overflow: visible;
}

.mask-2 {
  object-fit: fill;
  height: 450px;
  overflow: hidden;
}

.client-name {
  color: #eb5757;
  font-size: 15px;
  font-weight: 600;
}

.client-pic {
  border-radius: 500px;
  width: 60px;
}

.icon {
  margin-left: 0;
  margin-right: 0;
  transition: all .2s;
}

.icon:hover {
  transform: translate(-5px);
}

.client-wrapper {
  border-radius: 17px;
  padding: 50px;
  position: relative;
}

.client-quote {
  color: #fff;
  background-color: #84281c78;
  border-radius: 5px;
  padding: 6px;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  box-shadow: 1px 1px 9px #0000005c;
}

.container-2 {
  max-width: 1100px;
  margin-top: auto;
}

.div-block {
  background-image: linear-gradient(55deg, var(--primary-80), var(--salmon));
  border-radius: 20px;
  flex-direction: column;
  padding: 32px;
  transition: all .2s;
  display: flex;
  position: sticky;
  top: 10px;
  box-shadow: 11px 11px 20px #00000040;
}

.heading {
  text-transform: capitalize;
  text-decoration: none;
}

.column-3 {
  position: sticky;
  top: 47px;
}

.section-2 {
  background-image: linear-gradient(#fff, #fff0 7%), linear-gradient(#00000012, #00000012), url('../images/31a.jpg');
  background-position: 0 0, 0 0, 0 0;
  background-size: auto, auto, cover;
  background-attachment: scroll, scroll, fixed;
  flex-direction: column;
  justify-content: center;
  height: auto;
  padding-top: 92px;
  padding-bottom: 44px;
  display: flex;
}

.div-block-2 {
  display: flex;
}

.div-block-3 {
  z-index: 5;
  background-color: var(--black);
  box-shadow: -13px 9px 20px 0 var(--black-2);
  border-radius: 20px;
  flex-direction: column;
  width: 100%;
  height: 550px;
  margin-left: 186px;
  padding-top: 19px;
  padding-left: 152px;
  padding-right: 26px;
  display: flex;
  position: relative;
}

.image-6 {
  border-radius: 20px;
  height: 400px;
  margin-top: 37px;
  padding-top: 0;
  position: absolute;
  box-shadow: 11px 11px 20px #333642ad;
}

.image-6.popper {
  z-index: 50;
}

.heading-2 {
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 29px;
  padding-bottom: 0;
  font-size: 20px;
  line-height: 24px;
}

.paragraph {
  color: #fff;
  margin-bottom: 20px;
}

.heading-2-copy99 {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 39px;
  padding-bottom: 0;
  font-size: 20px;
  line-height: 24px;
}

.button {
  text-align: center;
  text-transform: uppercase;
  background-color: #0000;
  border: 3px solid #fff;
  border-radius: 9px;
  font-size: 24px;
}

.button-2 {
  text-align: center;
  background-color: #0000;
  border: 1px solid #fff;
  border-radius: 9px;
  width: 150px;
  margin-top: 25px;
  transition: all .2s;
  display: block;
}

.button-2:hover {
  transform: scale(1.1);
}

.scaler {
  background-color: var(--black);
  box-shadow: 7px 7px 20px 0 var(--black-2);
  border-radius: 20px;
  margin-top: 94px;
  margin-bottom: 94px;
  padding: 25px;
}

.paragraph-2 {
  color: #fff;
  padding: 0;
}

.heading-3 {
  color: var(--primary-20);
  margin-bottom: 29px;
  font-size: 24px;
}

.div-block-5 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.slide-2 {
  width: 50%;
  padding-left: 11px;
  padding-right: 11px;
}

.icon-3 {
  margin-left: 0;
}

.icon-4 {
  margin-right: 0;
}

.slider-3 {
  background-color: #0000;
  height: 250px;
  padding-left: 38px;
  padding-right: 38px;
}

.div-block-6 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.image-6-copy {
  z-index: 50;
  border-radius: 20px;
  height: 450px;
  margin-top: 37px;
  padding-top: 0;
  transition: all .2s;
  position: absolute;
  box-shadow: 11px 11px 20px #333642ad;
}

.image-6-copy:hover {
  transform: translate(0, 14px);
}

.div-block-3-copy {
  z-index: 5;
  background-color: var(--black);
  box-shadow: -13px 9px 20px 0 var(--black-2);
  border-radius: 20px;
  flex-direction: column;
  width: 100%;
  height: auto;
  margin-left: 186px;
  padding: 19px 26px 20px 152px;
  display: flex;
  position: relative;
}

.button-2-copy11 {
  text-align: center;
  background-color: #0000;
  border: 1px solid #fff;
  border-radius: 9px;
  width: 150px;
  margin-top: 25px;
  transition: all .2s;
  display: block;
}

.button-2-copy11:hover {
  transform: scale(1.1);
}

.div-block-4-copy77 {
  background-color: var(--black);
  box-shadow: 7px 7px 20px 0 var(--black-2);
  border-radius: 20px;
  margin-top: 94px;
  margin-bottom: auto;
  padding: 25px 44px 44px;
}

.grid {
  grid-column-gap: 45px;
  grid-row-gap: 45px;
  grid-template-areas: "Area Area-2"
                       "Area-3 Area-4";
}

.div-block-7 {
  background-color: #fff;
  border-radius: 6px;
  flex-direction: column;
  align-items: center;
  padding: 19px;
  display: flex;
  box-shadow: -6px 6px 16px #ffffff40;
}

.heading-4, .paragraph-3 {
  color: var(--black);
}

.container-3 {
  max-width: 1200px;
}

.columns-2 {
  margin-bottom: 137px;
}

.heading-5 {
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 30px;
}

.image-7 {
  max-width: 50%;
  padding-top: 0;
  display: block;
}

.paragraph-4 {
  color: var(--primary-40);
  font-size: 15px;
}

.text-block {
  color: #eff3fb69;
}

.section-3 {
  height: 500px;
}

.div-block-8 {
  background-color: #762222;
  transition: all .2s;
}

.div-block-8:hover {
  transform: translate(133px);
}

.popper {
  transition: all .2s;
}

.popper:hover {
  transform: translate(0, -19px);
}

.button-3 {
  transition: all .2s;
}

.button-3:hover {
  transform: scale(1.1);
}

.container-copy00 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.bold-text {
  color: var(--white);
  font-weight: 400;
}

.button-4 {
  z-index: 500;
  border: 3px solid var(--tomato);
  background-color: var(--firebrick);
  text-align: center;
  border-radius: 20px;
  width: 200px;
  font-weight: 700;
  position: fixed;
  bottom: 9px;
  right: 10px;
}

.div-block-9 {
  background-color: #18296b;
  margin-top: 85px;
  padding: 43px;
}

.html-embed {
  border-radius: 20px;
  height: 500px;
  margin-top: 16px;
}

.text-block-2 {
  font-weight: 800;
}

.html-embed-2 {
  background-color: var(--primary-80);
  color: var(--white);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  padding: 15px 35px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.html-embed-2:hover {
  transform: scale(1.05);
}

.container-4 {
  z-index: 90;
  background-color: var(--white);
  border-radius: 20px;
  width: 1200px;
  max-width: 1200px;
  margin-top: 105px;
  margin-bottom: 60px;
  padding: 47px;
  position: absolute;
  top: 625px;
  box-shadow: 4px 4px 8px #0000004a;
}

.image-8 {
  padding-top: 17px;
  padding-bottom: 17px;
}

.container-5 {
  z-index: 500;
  max-width: 1200px;
  margin-top: 866px;
  position: absolute;
}

.button-5 {
  background-image: linear-gradient(265deg, var(--salmon), var(--primary-80));
  text-align: center;
  border-radius: 6px;
  width: 250px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 15px 49px;
  font-size: 18px;
  font-weight: 700;
  transition: all .2s;
  box-shadow: 3px 3px 6px #00000040;
}

.button-5:hover {
  transform: scale(1.1);
}

.popup {
  z-index: 9999;
  background-color: #000000ad;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.tim-time {
  width: 1000px;
  height: 700px;
}

.div-block-11 {
  cursor: pointer;
  width: 40px;
  margin-top: 20px;
  margin-right: 20px;
  padding: 6px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.text-block-3 {
  color: var(--primary-20);
  font-size: 30px;
  font-weight: 800;
}

.paragraph-copy {
  color: #fff;
  margin-bottom: 38px;
}

.button-6 {
  border: 2px solid var(--white);
  text-align: center;
  background-color: #ffffff26;
  border-radius: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
  transition: transform .3s;
}

.button-6:hover {
  transform: scale(1.05);
}

.div-block-12 {
  width: 100vw;
  height: 600px;
  position: static;
}

.section-4 {
  background-image: linear-gradient(#35363f5c, #35363f5c), url('../images/31a.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
}

.heading-6 {
  color: var(--black);
}

.div-block-13 {
  background-color: #fff;
  border: 5px solid #d9d9d9;
  border-radius: 18px;
  height: 500px;
  margin: 12px;
  padding: 15px;
  transition: all .2s;
  display: block;
  overflow: hidden;
  box-shadow: 4px 4px 8px #0000004f;
}

.div-block-13:hover {
  transform: translate(0, -19px);
}

.collection-item {
  padding-left: 0;
  padding-right: 0;
}

.image-9 {
  width: 100%;
}

.div-block-14 {
  border-radius: 9px;
  height: 200px;
  overflow: hidden;
}

.heading-7 {
  color: var(--black);
  font-size: 18px;
}

.paragraph-5 {
  color: var(--primary-40);
  margin-bottom: 11px;
  padding-bottom: 0;
  text-decoration: none;
}

.link-2 {
  color: var(--primary-80);
  font-size: 14px;
  font-weight: 700;
}

.image-10 {
  max-width: 100%;
  margin-bottom: 38px;
}

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

.columns-3 {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 48px;
  display: flex;
}

.button-7 {
  color: #fff;
  text-align: center;
  background-color: #ffffff26;
  border: 5px solid #eff3fb1c;
  border-radius: 5px;
  width: 80%;
  font-weight: 700;
  transition: opacity .2s;
}

.button-7:hover {
  transform: scale(1.1);
}

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

.link-block {
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 400px;
  display: flex;
}

.link-block.w--current {
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button-8 {
  text-align: center;
  background-color: #3898ec00;
  width: 150px;
  margin-left: 7px;
  margin-right: 7px;
  padding-left: 0;
  padding-right: 0;
  font-weight: 800;
}

.button-9 {
  background-image: linear-gradient(to bottom, var(--salmon), var(--primary-80));
  text-align: center;
  border-radius: 10px;
  padding-left: 88px;
  padding-right: 88px;
  font-weight: 700;
}

.div-block-15 {
  justify-content: center;
  margin-top: 23px;
  display: flex;
}

.div-block-16 {
  background-color: #fff;
  border: 5px solid #a6a6a6;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  padding: 40px;
  display: flex;
  box-shadow: 6px 6px 13px #0000006e;
}

.heading-8 {
  padding: 49px;
}

.heading-9 {
  color: var(--black);
  margin-top: 10px;
  margin-bottom: 20px;
}

.heading-10 {
  color: var(--black);
}

.paragraph-7 {
  color: var(--black);
  margin-bottom: 20px;
}

.form-block-2 {
  width: 100%;
}

.text-field-2, .text-field-3, .text-field-4 {
  border-radius: 5px;
}

.submit-button-2 {
  background-image: linear-gradient(to bottom, var(--salmon), var(--primary-80));
  border-radius: 5px;
  padding-left: 113px;
  padding-right: 113px;
  font-weight: 700;
}

.form-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-5 {
  height: 300px;
}

.heading-11 {
  padding-left: 70px;
}

.section-6 {
  background-image: url('../images/2.png');
  background-position: 0 0;
  background-size: cover;
  height: 90vh;
}

.section-7 {
  color: var(--primary-80);
  background-image: url('../images/07.jpg');
  background-position: 0 0;
  background-size: cover;
  height: 800px;
  padding-top: 30px;
  font-size: 18px;
}

.container-6 {
  background-color: #fff;
  border: 5px solid #c7c7c74d;
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  height: 100px;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  box-shadow: 2px 2px 10px #0000005c;
}

.grid-2 {
  grid-template: "Area Area-2 Area-3 Area-4 Area-5"
  / 1fr 1fr 1fr 1.75fr 1fr 1fr 1fr;
}

.button-10 {
  color: var(--black);
  background-color: #ffffff38;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  font-size: 14px;
  font-weight: 800;
  display: flex;
}

.button-10-copy {
  color: var(--black);
  text-align: center;
  background-color: #35363f17;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  font-size: 12px;
  font-weight: 800;
  line-height: 16px;
  transition: all .2s;
  display: flex;
  box-shadow: 1px 2px 9px 1px #00000040;
}

.button-10-copy:hover {
  transform: scale(1.05);
  box-shadow: 1px 1px 8px #0000003d;
}

.columns-4 {
  margin-left: 0;
  margin-right: 0;
}

.container-7 {
  max-width: 1200px;
  margin-top: 77px;
}

.heading-12 {
  color: var(--white);
  padding-bottom: 22px;
  font-weight: 800;
}

.text-block-4 {
  color: var(--black);
  padding-bottom: 32px;
  font-weight: 700;
}

.button-11 {
  border: 3px solid var(--grey-10);
  color: #fff;
  background-color: #fff0;
  border-radius: 5px;
  padding-left: 104px;
  padding-right: 104px;
  font-weight: 800;
}

.div-block-17 {
  background-color: #fff;
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 16px;
  display: flex;
}

.image-11 {
  filter: brightness(69%);
  max-width: 5%;
}

.block-quote {
  color: var(--black);
  font-size: 16px;
}

.section-7-copy {
  color: var(--primary-80);
  background-image: url('../images/01.jpg');
  background-position: 0 0;
  background-size: cover;
  height: 800px;
  padding-top: 30px;
  font-size: 18px;
}

.div-block-18 {
  background-color: var(--grey-10);
  border-radius: 10px;
  width: 250px;
  height: 75px;
  position: absolute;
  top: 267.525px;
  right: 0;
  overflow: visible;
}

.container-6-copy {
  border: 2px solid var(--white);
  background-color: #0000;
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  height: 100px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  box-shadow: 2px 2px 10px #0000005c;
}

.button-10-copy1 {
  color: var(--black);
  background-color: #ffffff38;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  font-size: 12px;
  font-weight: 800;
  display: flex;
}

.button-11-copy {
  border: 3px none var(--grey-10);
  background-color: #fff0;
  background-image: linear-gradient(to bottom, var(--salmon), var(--primary-80));
  color: #fff;
  border-radius: 9px;
  padding-left: 104px;
  padding-right: 104px;
  font-weight: 800;
  box-shadow: 4px 4px 6px #00000038;
}

.heading-12-copy {
  color: var(--black);
  padding-bottom: 22px;
  font-size: 48px;
  font-weight: 800;
}

.section-8 {
  height: 100px;
}

.text-block-4-copy {
  color: var(--white);
  padding-bottom: 32px;
  font-weight: 700;
}

.button-5-copy {
  background-image: linear-gradient(265deg, var(--salmon), var(--primary-80));
  text-align: center;
  border-radius: 6px;
  width: 250px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 15px 49px;
  font-size: 18px;
  font-weight: 700;
  transition: all .2s;
  box-shadow: 3px 3px 6px #00000040;
}

.button-5-copy:hover {
  transform: scale(1.1);
}

.image-12 {
  max-width: 50%;
  margin-bottom: -49px;
}

.navbar {
  display: none;
}

.button-13 {
  z-index: 8000;
  color: #fff;
  background-color: #ffffff24;
  border-radius: 10px;
  font-weight: 700;
  position: relative;
  top: 377px;
  left: -161px;
}

.section-9 {
  background-image: linear-gradient(to top, #0000 77%, var(--black-3) 91%), linear-gradient(to right, #191a20 50%, #fff0 75%), url('../images/Utah-Realtor-2.png'), linear-gradient(to bottom, var(--black-3), var(--black-3));
  color: var(--black-3);
  background-position: 0 0, 0 0, 100% 0, 0 0;
  background-repeat: repeat, repeat, no-repeat, repeat;
  background-size: auto, auto, auto, auto;
  background-attachment: scroll, scroll, scroll, scroll;
  height: 700px;
  padding-top: 20px;
}

.section-10 {
  background-color: var(--primary-80);
  padding-top: 26px;
  padding-bottom: 26px;
}

.container-9 {
  max-width: 1200px;
  margin-top: 29px;
  padding-left: 10px;
  padding-right: 10px;
}

.heading-13 {
  color: #fff;
}

.div-block-19 {
  border: 5px solid var(--primary-40);
  background-image: linear-gradient(to bottom, #f1f1f1, var(--grey-10));
  border-radius: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  display: flex;
}

.heading-14 {
  color: var(--black);
  text-align: center;
  font-size: 24px;
}

.paragraph-8 {
  color: var(--primary-40);
  text-align: left;
}

.text-field-5 {
  width: 100%;
}

.form-3 {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.form-block-3 {
  width: 100%;
}

.text-field-6 {
  border-radius: 10px;
}

.submit-button-3 {
  background-image: linear-gradient(133deg, var(--primary-80), var(--salmon));
  border-radius: 10px;
  font-weight: 700;
}

.section-11 {
  background-image: linear-gradient(#00000012, #00000012), url('../images/31a.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  height: auto;
  padding-top: 77px;
  padding-bottom: 77px;
}

.div-block-20 {
  background-image: linear-gradient(15deg, #fff, #fff);
  border-radius: 15px;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 400px;
  padding: 30px;
  display: flex;
  box-shadow: -3px 2px 20px #0000001c;
}

.image-14 {
  flex: 0 auto;
  max-width: 40%;
}

.heading-15 {
  color: var(--black);
}

.paragraph-9 {
  color: var(--black);
  text-align: center;
  margin-bottom: 20px;
}

.button-14 {
  background-image: linear-gradient(198deg, var(--salmon), var(--primary-80));
  border-radius: 10px;
  padding-left: 42px;
  padding-right: 42px;
  font-weight: 700;
}

.button-14-copy {
  background-image: linear-gradient(198deg, var(--salmon), var(--primary-80));
  border-radius: 10px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 16px;
  font-weight: 700;
}

.container-10 {
  margin-top: 52px;
}

.div-block-20-copy {
  background-image: linear-gradient(15deg, #fff, #fff);
  border-radius: 15px;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 400px;
  padding: 30px;
  display: flex;
  box-shadow: -3px 2px 20px #0000001c;
}

.html-embed-3 {
  width: 100%;
  height: 100%;
}

.heading-13-copy {
  color: #fff;
  margin-top: 83px;
}

.paragraph-10, .heading-13-copy-copy {
  color: #fff;
}

.html-embed-4 {
  background-color: #ededed24;
  width: 100%;
  display: none;
}

.container-11 {
  max-width: 1200px;
}

.section-12 {
  background-image: linear-gradient(#00000012, #00000012), url('../images/31a.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  height: 500px;
  display: none;
}

.html-embed-4-copy {
  width: 100%;
  display: none;
}

.paragraph-11 {
  color: #fff;
  margin-top: 49px;
}

.section-13 {
  background-image: linear-gradient(#00000012, #00000012), url('../images/31a.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  height: 1200px;
}

.container-12 {
  background-image: linear-gradient(to top, #f6f6f6, #fff);
  border-radius: 20px;
  flex-direction: column;
  margin-top: 43px;
  padding: 29px;
  display: flex;
  position: relative;
  box-shadow: 1px 1px 20px #554b4b82;
}

.bold-text-2 {
  color: var(--black);
  font-size: 22px;
}

.bold-text-3 {
  color: var(--primary-40);
}

.heading-16 {
  margin-top: 23px;
  margin-bottom: 23px;
}

.button-15 {
  background-image: linear-gradient(to bottom, var(--salmon), var(--primary-80));
  text-align: center;
  border-radius: 10px;
  width: 400px;
  margin-top: 26px;
  padding-left: 106px;
  padding-right: 106px;
  font-weight: 700;
  transition: all .2s;
  box-shadow: 4px 4px 20px #2020274d;
}

.button-15:hover {
  transform: scale(1.1);
}

.button-15-copy {
  background-image: linear-gradient(to bottom, var(--salmon), var(--primary-80));
  text-align: center;
  border-radius: 10px;
  width: 400px;
  margin-top: 26px;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 700;
  transition: all .2s;
  box-shadow: 4px 4px 20px #2020274d;
}

.button-15-copy:hover {
  transform: scale(1.1);
}

.button-15-copy-copy {
  background-image: linear-gradient(to bottom, var(--salmon), var(--primary-80));
  text-align: center;
  border-radius: 10px;
  width: 400px;
  margin-top: 26px;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 700;
  transition: all .2s;
  box-shadow: 4px 4px 20px #2020274d;
}

.button-15-copy-copy:hover {
  transform: scale(1.1);
}

.text-block-5, .text-block-6 {
  font-size: 20px;
}

.search-2 {
  align-items: flex-start;
  margin-bottom: 0;
  display: none;
}

.search-input {
  border-radius: 10px;
  flex: 1;
  width: 300px;
  height: 100%;
  margin-right: 19px;
}

.search-button {
  background-image: linear-gradient(247deg, var(--salmon), var(--primary-80));
  border-radius: 5px;
  flex: 0 auto;
  width: 150px;
  height: 36px;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 700;
}

.section-9-copy {
  background-image: linear-gradient(to bottom, var(--black-3), var(--black-3));
  color: var(--black-3);
  height: 350px;
  padding-top: 20px;
}

.columns-5 {
  justify-content: space-between;
  align-items: center;
  margin-top: 19px;
  display: flex;
}

.section-9-copy-copy33 {
  background-image: linear-gradient(to bottom, var(--black-3), var(--black-3));
  color: var(--black-3);
  height: 350px;
  padding-top: 20px;
  overflow: hidden;
}

.image-15 {
  max-width: 60%;
}

.column-10 {
  text-align: right;
  flex: 0 auto;
}

.section-14 {
  background-color: var(--black-4);
  background-image: linear-gradient(#0000001a, #0000001a), url('../images/31a.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  padding: 60px 25px;
}

.html-embed-5 {
  margin-bottom: 0;
}

.section-15 {
  background-image: url('../images/30a.jpg');
  background-position: 0 0;
  background-size: cover;
  height: auto;
  min-height: 70vh;
  padding-top: 27px;
}

.heading-17 {
  color: var(--black);
  text-align: center;
}

.paragraph-12 {
  color: var(--black);
  text-align: center;
  font-weight: 700;
}

.container-13 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 600px;
  display: flex;
}

.container-14 {
  max-width: 85%;
}

.rich-text-block {
  color: var(--black-4);
}

.link-3 {
  color: #818487;
}

.section-14-copy {
  background-image: url('../images/31a.jpg');
  background-position: 0 0;
  background-size: cover;
  background-attachment: fixed;
  padding: 40px 25px;
}

.search-copy {
  align-items: center;
  margin-bottom: 60px;
  display: none;
}

.search-copy.margin-top {
  margin-top: 40px;
  margin-bottom: 20px;
}

.primary-small-button-copy {
  border: 1.6px solid var(--primary-80);
  background-color: var(--primary-80);
  color: #fff;
  text-align: center;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.primary-small-button-copy:hover {
  background-color: #3762ff;
  border-color: #3762ff;
}

.primary-small-button-copy.white {
  color: #fff;
  background-color: #ffffff4d;
  border-style: none;
}

.primary-small-button-copy.white:hover {
  background-color: #ffffff80;
}

.primary-small-button-copy.light:hover {
  background-color: #3762ff;
  border-color: #3762ff;
}

.container-copy444 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-top: 122px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container-copy888 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 40px auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container-9-copy111 {
  max-width: 1200px;
  margin-top: 29px;
  padding-left: 10px;
  padding-right: 10px;
}

.div-block-21 {
  position: sticky;
  top: 40px;
}

.column-12 {
  padding-top: 60px;
  position: sticky;
  top: 10px;
}

.columns-6 {
  position: sticky;
  top: 10px;
}

.image-16 {
  border-radius: 20px;
  max-width: 80%;
  margin-top: 46px;
  margin-bottom: 46px;
  display: block;
  box-shadow: 6px 6px 20px #00000052;
}

.div-block-22 {
  background-color: #231d9d;
  height: 250px;
}

.container-15 {
  max-width: 1100px;
  padding-top: 40px;
  padding-bottom: 60px;
}

.columns-7 {
  height: 100%;
}

.column-13 {
  background-color: #a91f1f;
  position: sticky;
  top: 10px;
}

.column-14 {
  padding-top: 60px;
  position: sticky;
  top: 40px;
}

.pagination {
  margin-top: 35px;
}

.image-17 {
  opacity: .41;
  max-width: 80%;
}

.section-9-copy-copy772 {
  background-image: linear-gradient(to bottom, var(--black-3), var(--black-3));
  color: var(--black-3);
  height: 350px;
  padding-top: 20px;
}

.column-15 {
  position: sticky;
  top: 60px;
}

.heading-13-copy, ._55522 {
  color: #fff;
}

.container-copy444-copy {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-top: 122px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container-5-copy00 {
  z-index: 500;
  max-width: 1200px;
  margin-top: auto;
  margin-bottom: 70px;
  padding-left: 20px;
  padding-right: 20px;
  position: static;
  top: 731px;
}

.section-16 {
  background-image: linear-gradient(#0000000d, #0000000d), url('../images/31a.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.heading-2-copy777 {
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 29px;
  padding-bottom: 0;
  font-size: 36px;
  line-height: 24px;
}

.div-block-23 {
  background-color: var(--white);
  border: 5px solid #54545433;
  border-radius: 20px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 600px;
  margin-bottom: 40px;
  padding: 15px;
  transition: all .2s;
  display: flex;
  box-shadow: 8px 8px 11px #0000004f;
}

.div-block-23:hover {
  transform: translate(0);
}

.div-block-24 {
  border-radius: 20px;
  height: 200px;
  overflow: hidden;
}

.heading-18 {
  color: var(--black);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 12px;
}

.heading-19 {
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 32px;
}

.div-block-25 {
  width: 100%;
}

.grid-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto auto;
  grid-template-columns: minmax(139px, 1fr) 1fr;
  width: 100%;
}

.div-block-26 {
  text-align: center;
  border: 1px solid #0000004d;
  padding-top: 10px;
  padding-bottom: 5px;
}

.text-block-7 {
  color: var(--black);
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 700;
}

.text-block-8 {
  color: var(--black);
  text-transform: uppercase;
  font-weight: 700;
}

.button-16 {
  background-color: var(--red);
  background-image: linear-gradient(40deg, var(--j2), var(--salmon));
  border-radius: 10px;
  margin-top: 21px;
  padding: 5px 38px;
  font-size: 14px;
  font-weight: 700;
}

.heading-20 {
  margin-bottom: 40px;
  font-size: 40px;
}

.column-16 {
  padding-right: 40px;
}

.image-18 {
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: 5px 5px 11px 1px #00000091;
}

.heading-21 {
  margin-bottom: 40px;
}

.grid-4 {
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 40px;
}

.div-block-27 {
  border: 3px solid var(--firebrick);
  border-radius: 20px;
}

.paragraph-13 {
  padding: 14px;
}

.div-block-28 {
  border: 3px solid var(--firebrick);
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

.text-block-9 {
  text-transform: uppercase;
  margin-top: 9px;
  padding-top: 0;
  font-size: 20px;
  font-weight: 700;
}

.text-block-10 {
  font-size: 36px;
  font-weight: 700;
}

.column-17 {
  position: sticky;
  top: 40px;
}

.button-6-copy22 {
  border: 2px solid var(--white);
  background-color: #ffffff26;
  background-image: linear-gradient(60deg, var(--j2), var(--salmon));
  text-align: center;
  text-transform: uppercase;
  border-radius: 15px;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 5px;
  font-weight: 800;
}

.button-17 {
  background-image: linear-gradient(48deg, var(--j2), var(--red));
  border-radius: 10px;
  margin-top: 20px;
  margin-right: 10px;
  padding-left: 51px;
  padding-right: 51px;
}

.link-4 {
  color: #7c8082;
}

.link-4.w--current, .bold-text-5 {
  text-decoration: none;
}

.section-9-copy77 {
  background-image: linear-gradient(to top, #0000 77%, var(--black-3) 91%), linear-gradient(to right, #191a20 50%, #fff0 75%), url('../images/Utah-Realtor-2.png'), linear-gradient(to bottom, var(--black-3), var(--black-3));
  color: var(--black-3);
  background-position: 0 0, 0 0, 100% 0, 0 0;
  background-repeat: repeat, repeat, no-repeat, repeat;
  background-size: auto, auto, auto, auto;
  background-attachment: scroll, scroll, scroll, scroll;
  height: 300px;
  padding-top: 20px;
}

.heading-22 {
  color: var(--white);
  margin-top: 60px;
}

.container-16 {
  max-width: 1200px;
}

.div-block-29 {
  border: 5px solid var(--j2);
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 29px;
}

.column-18 {
  position: sticky;
  top: 40px;
}

.scaler-copy00 {
  background-color: var(--black);
  box-shadow: 7px 7px 20px 0 var(--black-2);
  border-radius: 20px;
  margin-top: 94px;
  margin-bottom: 0;
  padding: 25px;
}

.button-18 {
  background-image: linear-gradient(#000, #fff);
}

.button-19 {
  background-image: linear-gradient(11deg, var(--j2), var(--salmon));
  text-align: center;
  border-radius: 10px;
  width: 100%;
  font-weight: 700;
}

.image-19 {
  border-radius: 20px;
  max-width: 50%;
}

.h1-copy20 {
  color: var(--black);
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 800;
  line-height: 50px;
}

.h1-copy20.white {
  color: #fff;
}

.h1-copy20._404-page {
  color: #fff;
  letter-spacing: 1px;
  margin-top: 14px;
  margin-bottom: 14px;
  font-weight: 400;
}

.h3-copy89 {
  color: var(--black);
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
}

.h3-copy89.not-margin {
  margin-top: 0;
}

.button-2-copy11-copy88 {
  text-align: center;
  background-color: #0000;
  border: 1px solid #fff;
  border-radius: 9px;
  font-weight: 700;
  transition: all .2s;
  display: block;
}

.button-2-copy11-copy88:hover {
  transform: scale(1.1);
}

.scaler-copy22 {
  background-color: var(--black);
  box-shadow: 7px 7px 20px 0 var(--black-2);
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 94px;
  margin-bottom: 94px;
  padding: 25px;
  display: flex;
}

.scaler-copy123 {
  background-color: var(--black);
  box-shadow: 7px 7px 20px 0 var(--black-2);
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  margin-top: 94px;
  margin-bottom: 94px;
  padding: 60px 25px;
  display: flex;
}

.button-20 {
  text-align: center;
  background-image: linear-gradient(#ab0b00, #f20f00);
  border-radius: 10px;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 36px;
  font-weight: 700;
  line-height: 36px;
}

.columns-8 {
  margin-left: 0;
  margin-right: 0;
}

.copyright-auto {
  color: var(--grey-10);
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
}

.home-eval-header {
  color: var(--white);
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 40px;
  line-height: 1.2;
}

.form-p {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.home-eval-form {
  width: 80%;
}

.home-eval-wrap {
  background-color: var(--black);
  box-shadow: 7px 7px 20px 0 var(--black-2);
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 94px;
  margin-bottom: 0;
  padding: 25px;
  display: flex;
}

.zip {
  border-radius: 10px;
  width: 50%;
}

.form-flex {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  display: flex;
}

.contact-us-content {
  width: 100%;
}

.contact-us-content.bot {
  display: none;
}

.contact-us-field-label {
  color: #1c2436;
  margin-bottom: 10px;
  font-weight: 400;
}

.contact-us-input {
  border: 1px solid #d8dae3;
  border-radius: 6px;
  height: 52px;
  margin-bottom: 0;
  padding: 0 20px;
  font-size: 16px;
}

.contact-us-input::placeholder {
  color: #bfc2d0;
}

@media screen and (min-width: 1440px) {
  .section.home-hero {
    background-image: linear-gradient(#0000 63%, #fff), url('../images/sadff.png');
    background-position: 0 0, 100% 0;
    background-repeat: repeat, no-repeat;
    background-size: auto, 90%;
    background-attachment: scroll, scroll;
    display: flex;
  }

  .section.home-hero-copy {
    background-image: linear-gradient(#0000 63%, #fff), url('../images/Background.png');
    background-position: 0 0, 100% 0;
    background-repeat: repeat, no-repeat;
    background-size: auto, 90%;
    background-attachment: scroll, scroll;
    padding-top: 305px;
    display: flex;
  }

  .main-grid {
    margin-top: auto;
  }

  .feature-icon-top-v-2 {
    box-shadow: 0 0 30px #00000026;
  }

  .container-2 {
    max-width: 1200px;
  }

  .div-block {
    background-image: linear-gradient(32deg, var(--primary-80), var(--salmon));
  }

  .paragraph {
    margin-bottom: 15px;
  }

  .button-4 {
    transition: all .2s;
  }

  .button-4:hover {
    transform: translate(-5px, -5px);
  }

  .container-5 {
    max-width: 1200px;
    margin-top: 894px;
    position: absolute;
  }

  .button-5 {
    background-image: linear-gradient(134deg, var(--primary-80), var(--salmon));
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 4px 4px 7px #00000029;
  }

  .popup {
    z-index: 9999;
    background-color: #0000;
    background-image: linear-gradient(#000000a3, #000000a3);
    justify-content: center;
    align-items: center;
    display: none;
    position: fixed;
    inset: 0%;
  }

  .tim-time {
    width: 1000px;
    height: 700px;
  }

  .paragraph-copy {
    margin-bottom: 49px;
  }

  .button-6 {
    text-align: center;
    background-color: #ffffff26;
    border: 2px solid #fff;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .div-block-13 {
    height: 500px;
  }

  .collection-item {
    display: block;
  }

  .button-5-copy {
    background-image: linear-gradient(134deg, var(--primary-80), var(--salmon));
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 4px 4px 7px #00000029;
  }

  .button-12 {
    position: relative;
    top: 382px;
  }

  .section-9 {
    background-image: linear-gradient(to top, #0000 77%, var(--black-3) 91%), linear-gradient(to right, #191a20 52%, #fff0 75%), url('../images/Utah-Realtor-2.png'), linear-gradient(to bottom, var(--black-3), var(--black-3));
    background-position: 0 0, 0 0, 100% 100%, 0 0;
    background-repeat: repeat, repeat, no-repeat, repeat;
    background-size: auto, auto, auto, auto;
  }

  .div-block-19 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .heading-14 {
    font-size: 24px;
  }

  .paragraph-8 {
    color: var(--primary-40);
  }

  .paragraph-10 {
    color: #fff;
    font-size: 18px;
  }

  .html-embed-4 {
    z-index: 500;
    width: 100%;
    max-width: 100%;
    margin-top: 45px;
    position: relative;
  }

  .container-11 {
    max-width: 1200px;
  }

  .html-embed-4-copy {
    z-index: 500;
    width: 100%;
    max-width: 100%;
    margin-top: 45px;
    position: relative;
  }

  .section-9-copy, .section-9-copy-copy33, .section-9-copy-copy772 {
    background-image: linear-gradient(to top, #0000 77%, var(--black-3) 91%), linear-gradient(to right, #191a20 52%, #fff0 75%), linear-gradient(to bottom, var(--black-3), var(--black-3));
  }

  .container-5-copy00 {
    max-width: 1200px;
    margin-top: -129px;
    margin-bottom: 64px;
  }

  .button-6-copy22 {
    text-align: center;
    background-color: #ffffff26;
    border: 2px solid #fff;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .section-9-copy77 {
    background-image: linear-gradient(to top, #0000 77%, var(--black-3) 91%), linear-gradient(to right, #191a20 52%, #fff0 75%), url('../images/Utah-Realtor-2.png'), linear-gradient(to bottom, var(--black-3), var(--black-3));
    background-position: 0 0, 0 0, 100% 100%, 0 0;
    background-repeat: repeat, repeat, no-repeat, repeat;
    background-size: auto, auto, auto, auto;
  }

  .form-p {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 991px) {
  .navbar-dropdown {
    width: 100%;
  }

  .middle-burger-line {
    background-color: #37446f;
    border-radius: 20px;
    width: 28px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .buttons-container {
    background-color: #eff3fb;
    justify-content: center;
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 0;
  }

  .dropdown-list {
    border-bottom: 1px solid #dee2ef;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .dropdown-list.w--open {
    box-shadow: none;
    border-radius: 0;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .dropdown-icon {
    display: flex;
  }

  .menu-button {
    padding: 0;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .nav-menu {
    background-color: var(--white);
    border-radius: 0;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
    box-shadow: 0 20px 60px #37446f66;
  }

  .bottom-burger-line {
    background-color: #37446f;
    border-radius: 20px;
    width: 28px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .primary-small-button.white {
    background-color: #4e74ff;
  }

  .primary-small-button.white:hover {
    background-color: #37446f;
  }

  .navigation {
    position: absolute;
    inset: 0% 0% auto;
  }

  .dropdown-toggle {
    width: 100%;
  }

  .dropdown-toggle.white, .dropdown-toggle.white:hover {
    color: var(--grey-80);
  }

  .burger-icon {
    z-index: 400;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 4px;
    display: flex;
    position: relative;
  }

  .top-burger-line {
    background-color: #37446f;
    border-radius: 20px;
    width: 28px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .secondary-small-button.light.margin-right {
    color: #3762ff;
    border-color: #3762ff;
  }

  .section.home-hero {
    background-position: 0 0, 100% 80%;
    background-size: auto, 170%;
    height: 1700px;
    margin-bottom: 0;
    padding-top: 34px;
    padding-bottom: 60px;
  }

  .section.hero {
    padding-top: 0;
  }

  .section.hero.bg {
    height: auto;
  }

  .section.hero-dark {
    background-color: #253057;
    background-image: url('../images/hero-lines.svg');
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: 100%;
  }

  .section.hero-grey {
    height: auto;
  }

  .section.contact-hero {
    padding-top: 80px;
  }

  .section.home-hero-copy {
    background-size: 100% 100%;
    height: 850px;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 60px;
  }

  .primary-medium-button.pricing-4 {
    padding-left: 14px;
    padding-right: 14px;
    font-size: 14px;
    line-height: 20px;
  }

  .container {
    margin-top: 81px;
  }

  .medium-container.center {
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .two-col-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .two-col-grid.max-width {
    grid-template-columns: max-content;
    justify-content: center;
  }

  .small-container.hero {
    text-align: center;
    align-items: center;
    margin-bottom: 30px;
  }

  .main-image {
    width: 100%;
  }

  .subtitle {
    padding-right: 246px;
  }

  .main-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .logotypes-container {
    grid-column-gap: 16px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .logotype {
    justify-content: center;
  }

  .feature-info {
    max-width: none;
  }

  .small-feature {
    align-items: center;
  }

  .slider-testimonials.margin-top {
    margin-top: 20px;
  }

  .image-slider {
    width: 100%;
  }

  .accordion {
    justify-content: center;
    align-items: center;
  }

  .pricing-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: max-content max-content;
  }

  .posts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .image-composition {
    width: 100%;
  }

  .posts-grid-v-2 {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .image-error-page {
    width: 50%;
  }

  .search-result-item {
    height: 300px;
  }

  .post-container {
    padding-right: 20px;
  }

  .main-image-copy22 {
    width: 100%;
  }

  .column-2 {
    margin-top: 181px;
    padding-left: 10px;
  }

  .mask-2 {
    height: 625px;
  }

  .client-wrapper {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
  }

  .container-2 {
    margin-top: 83px;
  }

  .div-block {
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .section-2 {
    padding-top: 10px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .div-block-3 {
    margin-left: 58px;
    padding-left: 168px;
    padding-right: 11px;
  }

  .image-6 {
    height: 250px;
    margin-top: 152px;
  }

  .heading-2-copy99 {
    margin-top: 0;
  }

  .button-2 {
    margin-top: -14px;
  }

  .slide-2 {
    width: 50%;
  }

  .slider-3 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .image-6-copy {
    height: 300px;
    margin-top: 94px;
  }

  .div-block-3-copy {
    margin-left: 58px;
    padding-left: 152px;
    padding-right: 22px;
  }

  .button-2-copy11 {
    margin-top: 19px;
  }

  .container-5 {
    margin-top: 1289px;
    padding-left: 26px;
    padding-right: 26px;
  }

  .div-block-13 {
    height: 500px;
  }

  .div-block-14 {
    height: 110px;
  }

  .heading-7 {
    font-size: 18px;
  }

  .paragraph-5 {
    font-size: 14px;
  }

  .button-7 {
    width: 100%;
  }

  .container-6 {
    max-width: 100%;
  }

  .grid-2 {
    display: none;
  }

  .navbar {
    background-color: #ddd0;
    width: 100%;
    display: block;
  }

  .brand-2 {
    height: 80px;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .image-13 {
    max-height: 100%;
  }

  .icon-5 {
    text-align: right;
    width: 50px;
    height: 50px;
    font-size: 50px;
  }

  .container-8 {
    width: 700px;
  }

  .menu-button-2.w--open {
    background-color: #35363f;
    border-radius: 20px;
  }

  .nav-menu-2 {
    background-color: #35363ffa;
    border-radius: 20px;
  }

  .nav-link {
    color: #fff;
    border-radius: 5px;
    font-weight: 700;
  }

  .button-13 {
    border: 2px solid #fff;
  }

  .section-9 {
    background-image: linear-gradient(to top, #0000 77%, var(--black-3) 91%), linear-gradient(to right, #191a20 29%, #fff0 75%), url('../images/Utah-Realtor-4.png'), linear-gradient(to bottom, transparent, transparent);
    background-position: 0 0, 0 0, 25% 100%, 0 0;
    height: 750px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .container-9 {
    max-width: 95%;
    margin-top: 20px;
  }

  .div-block-20, .button-14 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .button-14-copy {
    font-size: 10px;
  }

  .html-embed-4 {
    display: none;
  }

  .section-12 {
    height: 900px;
  }

  .html-embed-4-copy {
    margin-top: 40px;
    display: block;
  }

  .paragraph-11 {
    margin-top: 20px;
  }

  .section-13 {
    height: 1100px;
  }

  .section-9-copy {
    background-image: linear-gradient(to bottom, var(--black-4), var(--black-4));
    height: 350px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .columns-5 {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .section-9-copy-copy33 {
    background-image: linear-gradient(to bottom, var(--black-4), var(--black-4));
    height: auto;
    padding-left: 5px;
    padding-right: 5px;
  }

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

  .container-14 {
    max-width: 100%;
  }

  .primary-small-button-copy.white {
    background-color: #4e74ff;
  }

  .primary-small-button-copy.white:hover {
    background-color: #37446f;
  }

  .container-copy444, .container-copy888 {
    margin-top: 81px;
  }

  .container-9-copy111 {
    max-width: 95%;
    margin-top: auto;
  }

  .container-15 {
    max-width: 95%;
  }

  .column-14 {
    padding-left: 0;
    padding-right: 0;
  }

  .section-9-copy-copy772 {
    background-image: linear-gradient(to bottom, var(--black-4), var(--black-4));
    height: 300px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .container-copy444-copy {
    margin-top: 81px;
  }

  .container-5-copy00 {
    margin-top: 10px;
    padding-left: 26px;
    padding-right: 26px;
  }

  .div-block-23 {
    justify-content: space-between;
    height: 550px;
  }

  .div-block-24 {
    height: 125px;
  }

  .grid-3 {
    grid-template-columns: minmax(96px, 1fr) 1.75fr;
  }

  .section-9-copy77 {
    background-image: linear-gradient(to top, #0000 77%, var(--black-3) 91%), linear-gradient(to right, #191a20 29%, #fff0 75%), url('../images/Utah-Realtor-4.png'), linear-gradient(to bottom, transparent, transparent);
    background-position: 0 0, 0 0, 25% 100%, 0 0;
    height: 350px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .container-16 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .button-2-copy11-copy88 {
    margin-top: 19px;
  }

  .columns-8 {
    padding-left: 10px;
  }

  .home-eval-header {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .brand {
    padding-left: 0;
  }

  .bottom-burger-line {
    padding-bottom: 0;
    padding-right: 0;
  }

  .styleguide-grid {
    grid-template-columns: 1fr;
  }

  .small-text {
    line-height: 24px;
  }

  .styleguide-colors {
    justify-content: space-between;
    width: 220px;
  }

  .section.home-hero {
    background-image: url('../images/sadff.png');
    background-position: 100% 750px;
    background-repeat: no-repeat;
    background-size: auto;
    height: 1400px;
    margin-bottom: 0;
    padding-top: 20px;
    padding-bottom: 60px;
  }

  .section.dark {
    background-size: 880px;
  }

  .section.hero {
    padding-top: 0;
    padding-bottom: 60px;
  }

  .section.hero-dark {
    background-size: 140%;
    padding-bottom: 60px;
  }

  .section.hero-grey {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .section.home-hero-copy {
    background-image: url('../images/Background.png');
    background-position: 100% 430px;
    background-repeat: no-repeat;
    background-size: auto;
    height: 950px;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 60px;
  }

  .primary-medium-button.pricing-4 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .container {
    position: relative;
  }

  .footer.dark {
    background-size: 600px;
  }

  .footer-bottom.grey {
    padding-bottom: 70px;
  }

  .footer-top {
    padding-bottom: 0;
  }

  .two-col-grid.max-width {
    grid-template-columns: 1fr;
  }

  .subtitle {
    padding-right: 0;
  }

  .main-grid {
    justify-items: center;
    margin-top: 10px;
  }

  .feature-info {
    margin-top: 10px;
    margin-left: 0;
  }

  .feature-icon-left {
    flex-direction: column;
  }

  .slider-testimonials {
    justify-content: center;
    align-items: center;
  }

  .left-arrow, .right-arrow {
    display: none;
  }

  .slide-nav {
    justify-content: center;
    align-items: center;
    display: flex;
    bottom: 10px;
  }

  .slide-nav-dark {
    justify-content: center;
    align-items: center;
    bottom: 10px;
  }

  .pricing-card-v-2 {
    margin-top: 20px;
  }

  .pricing-grid, .posts-grid {
    grid-template-columns: 1fr;
  }

  .pricing-v-4-cell {
    border-right: 1px solid var(--grey-20);
    border-left: 1px solid var(--grey-20);
  }

  .columns {
    width: 100%;
  }

  .empty-cell {
    display: none;
  }

  .pricing-v-4-header {
    border-top: 1px solid var(--grey-20);
    border-bottom: 1px solid var(--grey-20);
    width: 100%;
  }

  .pricing-grid-v-2 {
    grid-template-columns: 25% 25% 25% 25%;
    justify-items: start;
  }

  .pricing-v-4-row {
    flex-direction: column;
  }

  .pricing-v-4-row.border-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .topics-container {
    margin-top: 0;
    position: static;
  }

  .help-category {
    flex-direction: column;
  }

  .asset-container {
    padding-right: 10px;
  }

  .image-error-page {
    width: 70%;
  }

  .post-container {
    padding-right: 0;
  }

  .column {
    padding-bottom: 71px;
  }

  .column-2 {
    margin-top: 106px;
    padding-left: 0;
  }

  .aspas {
    width: 25px;
    display: none;
  }

  .mask-2 {
    height: 600px;
  }

  .container-2 {
    margin-top: 10px;
  }

  .div-block {
    padding-left: 20px;
    padding-right: 20px;
  }

  .column-3 {
    padding-top: 60px;
  }

  .section-2 {
    padding-top: 0;
  }

  .div-block-3 {
    height: auto;
    padding-bottom: 20px;
    padding-left: 174px;
    padding-right: 14px;
  }

  .heading-2-copy99 {
    margin-top: 40px;
  }

  .heading-3 {
    margin-bottom: 10px;
  }

  .slider-3 {
    padding-left: 38px;
    padding-right: 38px;
  }

  .div-block-3-copy {
    padding-left: 149px;
    padding-right: 14px;
  }

  .container-copy00 {
    position: relative;
  }

  .container-5 {
    margin-top: 970px;
  }

  .popup {
    padding-left: 13px;
    padding-right: 13px;
  }

  .div-block-13 {
    height: auto;
  }

  .div-block-14 {
    height: 250px;
  }

  .paragraph-6 {
    margin-bottom: 47px;
  }

  .columns-3 {
    flex-direction: column;
    margin-top: -7px;
  }

  .button-7 {
    font-size: 14px;
  }

  .column-4 {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .container-8 {
    width: 500px;
  }

  .button-13 {
    top: 455px;
    left: -138px;
  }

  .section-9 {
    background-image: linear-gradient(to top, #0000 41%, var(--black-3) 47%), linear-gradient(to right, #191a20 29%, #fff0 75%), url('../images/Utah-Realtor-3.png'), linear-gradient(to bottom, transparent, transparent);
    background-position: 0 0, 0 0, 40% 100%, 0 0;
    height: 800px;
  }

  .container-9 {
    margin-top: 0;
  }

  .heading-13 {
    margin-top: 100px;
  }

  .div-block-20 {
    width: 80%;
    margin-top: 29px;
    margin-bottom: 29px;
    padding-left: 82px;
    padding-right: 82px;
  }

  .image-14 {
    max-width: 50%;
  }

  .heading-15 {
    font-size: 36px;
  }

  .button-14 {
    padding-left: 40px;
    padding-right: 40px;
    font-size: 20px;
  }

  .button-14-copy {
    font-size: 16px;
  }

  .column-5, .column-6, .column-7, .column-8 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .section-12 {
    height: 500px;
  }

  .section-13 {
    height: 1500px;
  }

  .container-12 {
    margin-top: 100px;
  }

  .text-block-5 {
    font-size: 16px;
  }

  .section-9-copy {
    background-image: linear-gradient(to bottom, var(--black-4), var(--black-4));
    height: 350px;
  }

  .section-9-copy-copy33 {
    background-image: linear-gradient(to bottom, #181920, #181920), linear-gradient(to top, #0000 41%, var(--black-3) 47%), linear-gradient(to right, #191a20 29%, #fff0 75%), linear-gradient(to bottom, transparent, transparent);
    height: 400px;
  }

  .image-15 {
    margin-top: 26px;
  }

  .column-11 {
    display: none;
  }

  .section-14, .section-14-copy {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container-copy444, .container-copy888 {
    position: relative;
  }

  .container-9-copy111 {
    margin-top: 0;
  }

  .section-9-copy-copy772 {
    background-image: linear-gradient(to bottom, var(--black-4), var(--black-4));
    height: 350px;
  }

  .container-copy444-copy {
    position: relative;
  }

  .container-5-copy00 {
    margin-top: 0;
  }

  .div-block-23 {
    height: 650px;
  }

  .div-block-24 {
    height: 250px;
  }

  .grid-3 {
    grid-template-columns: minmax(244px, 1fr) 1.75fr;
  }

  .column-16 {
    padding-bottom: 100px;
    padding-right: 10px;
  }

  .section-9-copy77 {
    background-image: linear-gradient(to top, #0000 41%, var(--black-3) 47%), linear-gradient(to right, #191a20 29%, #fff0 75%), url('../images/Utah-Realtor-3.png'), linear-gradient(to bottom, transparent, transparent);
    background-position: 0 0, 0 0, 40% 100%, 0 0;
  }

  .image-19 {
    max-width: 100%;
  }

  .home-eval-header {
    margin-top: 40px;
  }

  .contact-us-input {
    font-size: 14px;
    line-height: 24px;
  }
}

@media screen and (max-width: 479px) {
  .h4 {
    white-space: break-spaces;
  }

  .h4.pricing-4 {
    font-size: 16px;
  }

  .styleguide-grid {
    grid-template-rows: auto auto auto;
  }

  .h2 {
    line-height: 30px;
  }

  .h1 {
    font-size: 36px;
    line-height: 46px;
  }

  .section.home-hero {
    background-position: 75% 115%;
    background-repeat: no-repeat;
    background-size: auto 1000px;
    height: 1700px;
    margin-bottom: 0;
    padding-top: 20px;
    padding-bottom: 60px;
    display: block;
  }

  .section.dark {
    background-size: 700px;
  }

  .section.hero-dark {
    background-color: #253057;
    background-position: 50% 100%;
    background-size: 200%;
  }

  .section.hero-grey {
    padding-top: 120px;
  }

  .section.home-hero-copy {
    background-position: 75% 140%;
    background-size: auto;
    height: 1300px;
    margin-bottom: 0;
    padding-top: 135px;
    padding-bottom: 60px;
    display: block;
  }

  .primary-medium-button.pricing-4 {
    text-align: center;
    margin-top: 20px;
    padding: 8px 4px;
  }

  .text-field {
    width: 100%;
    min-width: 0;
  }

  .form {
    grid-template-columns: 1fr;
  }

  .submit {
    width: 100%;
  }

  .textarea {
    width: 100%;
    min-width: 0;
  }

  .container {
    padding-left: 5px;
    padding-right: 5px;
  }

  .container._100 {
    padding-left: 0;
    padding-right: 0;
  }

  .rich-text {
    max-width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .rich-text p, .rich-text blockquote {
    font-size: 16px;
    line-height: 28px;
  }

  .rich-text h2 {
    font-size: 26px;
  }

  .rich-text li {
    font-size: 16px;
    line-height: 28px;
  }

  .footer-grid {
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .main-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-top: 0;
  }

  .layout-container {
    margin-bottom: 20px;
  }

  .logotypes-container {
    grid-template-columns: 1fr 1fr;
  }

  .logotype {
    object-fit: scale-down;
  }

  .logo-image {
    object-fit: contain;
    width: 100%;
  }

  .feature-icon-left {
    width: 100%;
  }

  .left-arrow {
    left: -15px;
  }

  .right-arrow {
    right: -15px;
  }

  .tabs-content {
    overflow: visible;
  }

  .chip {
    margin-left: 0;
    padding: 6px 8px;
    font-size: 13px;
    line-height: 18px;
  }

  .label-discount {
    justify-content: flex-end;
    align-self: flex-end;
    margin-left: 0;
  }

  .plus-icon {
    margin-left: 10px;
  }

  .accordion-container {
    align-content: space-around;
  }

  .promo-video {
    height: 220px;
  }

  .testimonial-v-2 {
    margin-left: 0;
    margin-right: 0;
    box-shadow: 0 4px 10px #37446f24;
  }

  .email-form {
    grid-template-columns: 100%;
    width: 100%;
  }

  .form-block {
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .analytics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-v-3 {
    margin-left: 0;
    margin-right: 0;
    box-shadow: 0 4px 10px #37446f24;
  }

  .pricing-card-v-4, .pricing-card-v-4.radius-left {
    padding-left: 8px;
    padding-right: 8px;
  }

  .pricing-grid-v-2 {
    overflow: visible;
  }

  .breadcrumbs {
    padding-left: 10px;
  }

  .tab-link-v-3-tab-2 {
    padding-left: 18px;
    padding-right: 18px;
  }

  .tabs-menu-v-3 {
    flex-flow: column wrap;
    width: 100%;
    display: flex;
  }

  .tab-link-v-3-tab-4, .tab-link-v-3-tab-1, .tab-link-v-3-tab-3 {
    padding-left: 18px;
    padding-right: 18px;
  }

  .post-card-v-3 {
    flex-direction: column;
    height: auto;
  }

  .post-image-container {
    width: 100%;
  }

  .post-content-v-2 {
    width: 100%;
    padding: 20px 0;
  }

  .team-member {
    margin-left: 0;
    margin-right: 0;
    box-shadow: 0 4px 10px #37446f24;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .search-field {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .search {
    flex-direction: column;
  }

  .help-category {
    width: 100%;
  }

  .asset-container {
    flex-direction: column;
  }

  .asset-links {
    padding-left: 10px;
    padding-right: 10px;
  }

  .image-error-page {
    width: 100%;
  }

  .image-password {
    padding-left: 15px;
    padding-right: 15px;
  }

  .search-result-item {
    height: 555px;
  }

  .post-container {
    padding-right: 0;
  }

  .column {
    padding-bottom: 0;
    padding-left: 21px;
    padding-right: 21px;
  }

  .aspas {
    position: absolute;
    inset: 6% auto auto -48%;
  }

  .client-info {
    margin-right: 0;
    padding-left: 24px;
  }

  .icon-2 {
    display: block;
    inset: 0% 0% auto auto;
  }

  .slider-2 {
    width: 100%;
  }

  .mask-2 {
    width: 100%;
    height: 750px;
  }

  .icon {
    display: block;
    inset: 0% auto auto 0%;
  }

  .client-wrapper {
    padding-bottom: 80px;
    padding-left: 6px;
    padding-right: 6px;
  }

  .client-quote {
    padding-top: 14px;
    font-size: 16px;
    line-height: 32px;
  }

  .left-arrow-2 {
    display: block;
    position: static;
  }

  .container-2 {
    margin-top: 10px;
  }

  .column-3 {
    margin-bottom: -89px;
  }

  .section-2 {
    padding-top: 10px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .div-block-2 {
    padding-top: 93px;
  }

  .div-block-3 {
    height: auto;
    margin-left: 0;
    padding: 322px 17px 26px;
  }

  .image-6 {
    height: 375px;
    margin-top: -49px;
    margin-left: -10px;
  }

  .image-6.popper {
    box-shadow: none;
  }

  .heading-2 {
    margin-top: 31px;
    margin-bottom: 3px;
  }

  .scaler {
    margin-top: 49px;
    margin-bottom: 48px;
  }

  .heading-3 {
    font-size: 22px;
  }

  .slide-2 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .slider-3 {
    padding-left: 22px;
    padding-right: 22px;
  }

  .left-arrow-3 {
    left: -20px;
  }

  .right-arrow-2 {
    right: -20px;
  }

  .image-6-copy {
    height: 375px;
    margin-top: -49px;
    margin-left: -10px;
  }

  .div-block-3-copy {
    height: auto;
    margin-left: 0;
    padding: 322px 20px 26px;
  }

  .div-block-4-copy77 {
    margin-top: 49px;
    margin-bottom: 48px;
  }

  .container-copy00 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .container-copy00._100 {
    padding-left: 0;
    padding-right: 0;
  }

  .container-5 {
    margin-top: 179px;
  }

  .popup {
    padding-left: 5px;
    padding-right: 5px;
  }

  .heading-6 {
    text-align: center;
    padding-top: 76px;
    padding-bottom: 0;
  }

  .div-block-13 {
    height: auto;
  }

  .div-block-14 {
    height: 150px;
  }

  .button-9 {
    padding-left: 60px;
    padding-right: 60px;
    font-size: 14px;
  }

  .div-block-16 {
    max-width: 95%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .heading-9 {
    text-align: center;
    font-size: 18px;
  }

  .heading-10 {
    font-size: 36px;
  }

  .paragraph-7 {
    text-align: center;
    font-size: 14px;
  }

  .submit-button-2 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .container-6 {
    height: 80px;
    padding-left: 0;
    padding-right: 0;
  }

  .image-12 {
    max-width: 90%;
    margin-top: 66px;
    margin-bottom: -27px;
  }

  .brand-2 {
    height: 60px;
    padding-left: 0;
  }

  .image-13 {
    margin-top: -2px;
  }

  .container-8 {
    justify-content: space-between;
    align-items: center;
    width: 300px;
    display: flex;
  }

  .menu-button-2 {
    margin-right: -29px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-menu-2 {
    border-top-right-radius: 20px;
  }

  .button-13 {
    padding-top: 5px;
    padding-bottom: 5px;
    top: 717px;
    left: 63px;
  }

  .section-9 {
    background-image: linear-gradient(to top, #0000 41%, var(--black-3) 47%), linear-gradient(to right, #191a20, #fff0 31%), url('../images/Utah-Realtor-3.png'), linear-gradient(to bottom, transparent, transparent);
    background-position: 0 0, 0 0, 55% 100%, 0 0;
  }

  .div-block-20 {
    width: 95%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .button-14 {
    font-size: 18px;
  }

  .button-14-copy {
    font-size: 14px;
  }

  .div-block-20-copy {
    padding-left: 10px;
    padding-right: 10px;
  }

  .column-5 {
    padding-left: 0;
    padding-right: 0;
  }

  .column-8 {
    margin-top: -68px;
  }

  .column-9 {
    padding-left: 0;
    padding-right: 0;
  }

  .heading-13-copy-copy {
    margin-top: 40px;
    margin-bottom: 0;
  }

  .section-12 {
    height: 350px;
  }

  .section-13 {
    height: 1800px;
  }

  .container-12 {
    margin-top: 100px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .button-15 {
    width: 100%;
    padding-left: 52px;
    padding-right: 52px;
  }

  .button-15-copy {
    width: 100%;
  }

  .button-15-copy-copy {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }

  .bold-text-4 {
    font-size: 15px;
  }

  .text-block-5 {
    font-size: 20px;
  }

  .section-9-copy {
    background-image: linear-gradient(to bottom, var(--black-4), var(--black-4));
  }

  .section-9-copy-copy33 {
    background-image: linear-gradient(to bottom, var(--black-3), var(--black-3)), linear-gradient(to right, #191a20, #fff0 31%), linear-gradient(to bottom, transparent, transparent);
  }

  .image-15 {
    max-width: 80%;
  }

  .search-copy {
    flex-direction: column;
  }

  .container-copy444 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .container-copy444._100 {
    padding-left: 0;
    padding-right: 0;
  }

  .container-copy888 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .container-copy888._100 {
    padding-left: 0;
    padding-right: 0;
  }

  .image-16 {
    max-width: 100%;
  }

  .section-9-copy-copy772 {
    background-image: linear-gradient(to bottom, var(--black-4), var(--black-4));
    height: 250px;
  }

  ._55522 {
    margin-top: 43px;
    font-size: 32px;
  }

  .container-copy444-copy {
    padding-left: 5px;
    padding-right: 5px;
  }

  .container-copy444-copy._100 {
    padding-left: 0;
    padding-right: 0;
  }

  .container-5-copy00 {
    margin-top: 10px;
  }

  .heading-2-copy777 {
    margin-top: 31px;
    margin-bottom: 3px;
  }

  .div-block-23 {
    height: 580px;
  }

  .div-block-24 {
    height: 150px;
  }

  .grid-3 {
    grid-template-columns: minmax(153px, 1fr) 1.75fr;
  }

  .heading-20 {
    text-align: center;
    padding-left: 0;
    font-size: 36px;
  }

  .heading-21 {
    font-size: 20px;
  }

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

  .text-block-10 {
    font-size: 20px;
  }

  .section-9-copy77 {
    background-image: linear-gradient(to top, #0000 41%, var(--black-3) 47%), linear-gradient(to right, #191a20, #fff0 31%), url('../images/Utah-Realtor-3.png'), linear-gradient(to bottom, transparent, transparent);
    background-position: 0 0, 0 0, 55% 100%, 0 0;
    height: 250px;
  }

  .div-block-29 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .scaler-copy00 {
    margin-top: 49px;
    margin-bottom: 48px;
  }

  .h1-copy20 {
    font-size: 30px;
    line-height: 46px;
  }

  .scaler-copy22, .scaler-copy123 {
    margin-top: 49px;
    margin-bottom: 48px;
  }

  .button-20 {
    font-size: 18px;
  }

  .home-eval-wrap {
    margin-top: 49px;
    margin-bottom: 48px;
  }

  .contact-us-input {
    height: 45px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

#w-node-bede5274-df15-5911-2516-d8bea5b6ba0f-bd07ee09 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-bede5274-df15-5911-2516-d8bea5b6ba15-bd07ee09 {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-bede5274-df15-5911-2516-d8bea5b6ba1b-bd07ee09 {
  grid-area: 1 / 7 / 2 / 10;
}

#w-node-bede5274-df15-5911-2516-d8bea5b6ba21-bd07ee09 {
  grid-area: 1 / 10 / 2 / 13;
}

#w-node-c50413bf-2964-dfa0-55a8-f8c78188275f-81882746 {
  grid-area: Area-3;
  place-self: center;
}

#w-node-c50413bf-2964-dfa0-55a8-f8c781882761-81882746 {
  grid-area: Area;
  place-self: center;
}

#w-node-c50413bf-2964-dfa0-55a8-f8c781882763-81882746, #w-node-c50413bf-2964-dfa0-55a8-f8c781882767-81882746, #w-node-c50413bf-2964-dfa0-55a8-f8c781882765-81882746 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-c50413bf-2964-dfa0-55a8-f8c781882769-81882746 {
  grid-area: Area-5;
  place-self: center;
}

#w-node-c50413bf-2964-dfa0-55a8-f8c78188276b-81882746 {
  grid-area: Area-4;
}

#w-node-_136e86e2-468b-0e13-407b-427b784f0f48-d307ee27, #field.w-node-_136e86e2-468b-0e13-407b-427b784f0f4f-d307ee27 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_136e86e2-468b-0e13-407b-427b784f0f50-d307ee27 {
  grid-area: 3 / 1 / 4 / 3;
}

#w-node-bede5274-df15-5911-2516-d8bea5b6ba0f-f55b3767 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-bede5274-df15-5911-2516-d8bea5b6ba15-f55b3767 {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-bede5274-df15-5911-2516-d8bea5b6ba1b-f55b3767 {
  grid-area: 1 / 7 / 2 / 10;
}

#w-node-bede5274-df15-5911-2516-d8bea5b6ba21-f55b3767 {
  grid-area: 1 / 10 / 2 / 13;
}

@media screen and (max-width: 991px) {
  #w-node-bede5274-df15-5911-2516-d8bea5b6ba0f-bd07ee09 {
    grid-column-end: 5;
  }

  #w-node-bede5274-df15-5911-2516-d8bea5b6ba15-bd07ee09 {
    grid-column: 5 / 9;
  }

  #w-node-bede5274-df15-5911-2516-d8bea5b6ba1b-bd07ee09 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-bede5274-df15-5911-2516-d8bea5b6ba21-bd07ee09 {
    grid-area: 2 / 5 / 3 / 9;
  }

  #w-node-_136e86e2-468b-0e13-407b-427b784f0f58-d307ee27 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-bede5274-df15-5911-2516-d8bea5b6ba0f-f55b3767 {
    grid-column-end: 5;
  }

  #w-node-bede5274-df15-5911-2516-d8bea5b6ba15-f55b3767 {
    grid-column: 5 / 9;
  }

  #w-node-bede5274-df15-5911-2516-d8bea5b6ba1b-f55b3767 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-bede5274-df15-5911-2516-d8bea5b6ba21-f55b3767 {
    grid-area: 2 / 5 / 3 / 9;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_136e86e2-468b-0e13-407b-427b784f0f3a-d307ee27 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_136e86e2-468b-0e13-407b-427b784f0f48-d307ee27 {
    grid-row: 3 / 4;
  }

  #w-node-_136e86e2-468b-0e13-407b-427b784f0f58-d307ee27 {
    grid-area: 2 / 2 / 3 / 3;
  }
}

@media screen and (max-width: 479px) {
  #w-node-bede5274-df15-5911-2516-d8bea5b6ba15-bd07ee09 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-bede5274-df15-5911-2516-d8bea5b6ba1b-bd07ee09 {
    grid-row: 3 / 4;
  }

  #w-node-bede5274-df15-5911-2516-d8bea5b6ba21-bd07ee09 {
    grid-area: 4 / 1 / 5 / 5;
  }

  #w-node-_136e86e2-468b-0e13-407b-427b784f0f2c-d307ee27 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_136e86e2-468b-0e13-407b-427b784f0f3a-d307ee27 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_136e86e2-468b-0e13-407b-427b784f0f48-d307ee27 {
    grid-row: 4 / 5;
    grid-column-end: 2;
  }

  #name-2.w-node-_136e86e2-468b-0e13-407b-427b784f0f4e-d307ee27 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #field.w-node-_136e86e2-468b-0e13-407b-427b784f0f4f-d307ee27 {
    grid-row: 3 / 4;
    grid-column-end: 2;
  }

  #w-node-_136e86e2-468b-0e13-407b-427b784f0f50-d307ee27 {
    grid-row: 4 / 5;
    grid-column-end: 2;
  }

  #w-node-_136e86e2-468b-0e13-407b-427b784f0f58-d307ee27 {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-bede5274-df15-5911-2516-d8bea5b6ba15-f55b3767 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-bede5274-df15-5911-2516-d8bea5b6ba1b-f55b3767 {
    grid-row: 3 / 4;
  }

  #w-node-bede5274-df15-5911-2516-d8bea5b6ba21-f55b3767 {
    grid-area: 4 / 1 / 5 / 5;
  }
}


