@font-face {
  font-family: Social Icons Font;
  src: url('../fonts/fa-brands-400.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Icons Font;
  src: url('../fonts/MaterialIconsOutlined-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-primary: #fdfdfd;
  --text-secondary: #402260;
  --text-primary: #1b1b1b;
  --bg-brand: #402260;
  --text-color-brand: white;
  --bright-orange: #f58a6b;
  --bg-secondary: #f3f3f3;
  --accessible-components--dark-grey: #9b9b9b;
  --radiant-ui-components-library-marketplace--color--heading-dark: #150438;
  --radiant-ui-components-library-marketplace--color--white: white;
  --radiant-ui-components-library-marketplace--color--body-font-dark: #6d6d6d;
  --radiant-ui-components-library-marketplace--color--theme-color: #116df8;
  --radiant-ui-components-library-marketplace--color--button-background-dark: #131218;
  --radiant-ui-components-library-marketplace--color--linear-color-two: #eff2ff;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

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

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

h1 {
  color: var(--text-primary);
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 86px;
  font-weight: 700;
  line-height: 1;
}

h2 {
  color: var(--text-primary);
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
}

h3 {
  color: var(--text-primary);
  letter-spacing: -.02px;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}

h4 {
  color: var(--text-primary);
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

h5 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

h6 {
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

p {
  margin-bottom: 16px;
}

a {
  color: var(--text-secondary);
  text-decoration: underline;
  transition: transform .3s cubic-bezier(.165, .84, .44, 1), color .3s cubic-bezier(.165, .84, .44, 1);
}

a:hover {
  color: var(--text-primary);
  text-decoration: none;
}

.section {
  color: var(--text-secondary);
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.section.small {
  padding-top: 80px;
  padding-bottom: 80px;
}

.container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 90%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.container.navigation {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-header-component {
  grid-column-gap: 32px;
  grid-row-gap: 48px;
  margin-bottom: -115px;
  padding: 0;
}

.paragraph-container {
  max-width: 75ch;
}

.style-group {
  margin-top: 48px;
  padding-top: 40px;
  display: flex;
}

.caption {
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.styles-callout {
  color: #eceeff;
  text-transform: none;
  background-color: #4353ff;
  border: 1px solid #4353ff;
  border-radius: 4px;
  margin-bottom: 12px;
  padding: 1px 8px;
  line-height: 1.7;
  display: inline-block;
  position: relative;
  top: -1px;
}

.styles-callout.html-tag {
  color: #fff;
  background-color: #d13591;
  border-color: #0000;
}

.paragraph-large {
  color: var(--text-secondary);
  text-align: left;
  -webkit-text-stroke-color: var(--bg-primary);
  margin-bottom: 16px;
  padding-left: 5px;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.paragraph-small {
  font-size: 14px;
  line-height: 1.6;
}

.hero-content-cell {
  justify-content: center;
}

.button-primary {
  grid-column-gap: 16px;
  border: 1px solid var(--bg-brand);
  background-color: var(--bg-brand);
  color: var(--text-color-brand);
  border-radius: 4px;
  padding: 12px 18px;
  font-size: 18px;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s cubic-bezier(.165, .84, .44, 1);
  display: flex;
  box-shadow: 0 4px 2px #1018280a;
}

.button-primary:hover {
  background-color: var(--bright-orange);
  filter: brightness(75%);
  color: var(--text-color-brand);
  text-decoration: none;
}

.button-primary.full-width {
  text-align: center;
  width: 100%;
  display: inline-block;
}

.nav-menu {
  align-items: center;
  display: flex;
}

.navigation {
  outline-offset: 0px;
  background-color: #fff;
  border-radius: 20px;
  outline: 3px #402260;
  position: sticky;
  top: 0;
}

.hero-paragraph-container {
  max-width: 450px;
  margin-bottom: 24px;
}

.hero-header-floating-image-wrapper {
  width: 368px;
  position: absolute;
  bottom: -32px;
  left: -32px;
}

.hero-header-image-wrapper {
  position: relative;
}

.hero-header-image {
  object-fit: contain;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  margin-top: 20px;
  margin-bottom: -171px;
  padding-top: 0;
  padding-bottom: 0;
  display: inline-block;
  position: relative;
  top: -20px;
}

.hero-header-floating-image {
  border-radius: 4px;
}

.features-item-list {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  margin-bottom: 40px;
  padding: 0;
}

.features-item-icon-wrapper {
  aspect-ratio: auto;
  background-color: var(--bg-brand);
  border: 5px solid #ffffffb3;
  border-radius: 50%;
  flex-wrap: nowrap;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  margin-right: 16px;
  display: flex;
  box-shadow: 0 6px 4px #0000000f;
}

.features-item-icon {
  width: 24px;
  height: 24px;
}

.button-group {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  display: flex;
}

.pricing-components {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  padding: 0;
}

.pricing-plan {
  border: 1px solid var(--bg-secondary);
  background-color: var(--bg-secondary);
  border-radius: 4px;
  width: 100%;
  margin-top: 40px;
  padding: 32px 32px 48px;
  box-shadow: 0 4px 6px -2px #10182808, 0 12px 16px -4px #00000014;
}

.pricing-plan.popular {
  position: relative;
  overflow: hidden;
  transform: translate(0, -48px);
  box-shadow: 0 8px 36px -2px #1018281a, 0 24px 48px -4px #0000000f;
}

.pricing-plan-heading {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.3;
}

.pricing-content-align-center {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.pricing-price {
  color: #363636;
  margin-bottom: 10px;
  font-size: 72px;
  font-weight: 900;
  line-height: 1.4;
}

.pricing-text {
  padding-left: 4px;
  font-size: 16px;
  font-weight: 400;
}

.pricing-feature {
  grid-column-gap: 8px;
  align-items: center;
  padding-bottom: 16px;
}

.divider {
  background-color: #f0f0f0;
  height: 1px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.button-secondary {
  border: 1px solid var(--bg-brand);
  color: var(--text-primary);
  background-color: #0000;
  border-radius: 4px;
  padding: 12px 18px;
  font-size: 18px;
  line-height: 1.5;
  transition: all .3s cubic-bezier(.165, .84, .44, 1);
  box-shadow: 0 1px 2px #1018280d;
}

.button-secondary:hover {
  background-color: var(--bg-brand);
  color: var(--bg-primary);
  text-decoration: none;
}

.button-secondary.full-width {
  text-align: center;
  width: 100%;
}

.pricing-feature-list {
  margin-bottom: 24px;
}

.margin-bottom-16px {
  margin-bottom: 16px;
}

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

.margin-bottom-48px {
  margin-bottom: 48px;
}

.inner-container {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.inner-container.features {
  text-align: center;
  max-width: 600px;
  margin-bottom: 64px;
}

.eyebrow {
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.eyebrow.margin-bottom-16px {
  font-family: Open Sans, sans-serif;
}

.features-stack {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  padding: 0;
}

.featured-image {
  object-fit: contain;
  border-radius: 4px;
  height: 100%;
}

.logos-row {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  display: flex;
}

.logos-wrapper {
  flex: 1;
  justify-content: center;
  min-width: 150px;
  padding: 12px 24px;
  display: flex;
}

.logos-logo-image {
  width: 100%;
  min-width: 150px;
  max-height: 24px;
}

.logo-component {
  background-color: var(--bright-orange);
  background-image: linear-gradient(#f58a6b, #fff);
  border-radius: 4px;
  padding: 64px;
}

.cta-component {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  background-color: var(--bg-brand);
  color: #fff;
  background-image: linear-gradient(138deg, #402260, #67459b);
  border-radius: 4px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 64px;
  display: flex;
}

.logo-link {
  margin-bottom: 32px;
  text-decoration: none;
}

.footer-social-list {
  grid-column-gap: 24px;
  margin-top: 32px;
  display: flex;
}

.footer-top-wrapper {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  justify-content: space-between;
  display: flex;
}

.footer-menu-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  display: flex;
}

.footer-link-list {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: flex-start start;
  min-width: 140px;
  display: flex;
}

.footer-link-list-heading {
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-link {
  grid-column-gap: 8px;
  color: var(--text-secondary);
  flex-wrap: nowrap;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  text-decoration: none;
  display: flex;
}

.footer-link:hover {
  color: #222;
}

.social-link {
  color: #757575;
  text-decoration: none;
}

.social-link:hover {
  color: #222;
}

.features-content-cell {
  justify-content: center;
  padding-bottom: 32px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

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

.margin-top-16px {
  margin-top: 16px;
}

.typography-style-group-stack {
  width: 100%;
  padding: 0;
}

.h1 {
  color: var(--text-primary);
  letter-spacing: -.03em;
  margin-bottom: 24px;
  font-size: 86px;
  font-weight: 700;
  line-height: 1;
}

.h2 {
  color: var(--text-primary);
  letter-spacing: -.03em;
  margin-bottom: 16px;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
}

.styles-section-label {
  border-bottom: 1px solid var(--text-secondary);
  margin-top: 96px;
  margin-bottom: 32px;
  padding-bottom: 8px;
}

.h3 {
  color: var(--text-primary);
  letter-spacing: -.03em;
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
}

.h4 {
  color: var(--text-primary);
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.component-card {
  border: 1px solid var(--bg-secondary);
  background-color: var(--bg-primary);
  border-radius: 4px;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -2px #10182808, 0 12px 16px -4px #00000014;
}

.card-body {
  background-color: var(--bg-secondary);
  width: 100%;
  padding: 32px;
}

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

.styles-card-preview {
  color: var(--bg-primary);
  border-bottom: 1px solid #d8d8d8;
  justify-content: center;
  align-items: center;
  min-height: 120px;
  display: flex;
}

.footer-section {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--bg-secondary);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 20px;
  padding-top: 120px;
  padding-bottom: 80px;
  display: block;
  position: relative;
}

.text-white {
  color: #fff;
}

.background-primary {
  background-color: var(--bg-primary);
}

.background-secondary {
  background-color: var(--bg-secondary);
}

.background-brand {
  background-color: var(--bg-brand);
}

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

.text-color-secondary {
  color: var(--text-secondary);
}

.text-color-brand {
  color: var(--text-color-brand);
}

.nav-link {
  border-bottom: 4px solid #0000;
  margin-right: 20px;
  padding-bottom: 16px;
}

.nav-link:hover {
  border-bottom: 4px solid var(--text-secondary);
  color: var(--bg-brand);
}

.nav-link:visited, .nav-link.w--current {
  color: var(--bg-brand);
}

.nav-link.last {
  margin-right: 10px;
}

.card {
  border: 1px solid var(--bg-secondary);
  background-color: var(--bg-secondary);
  box-shadow: none;
  background-image: linear-gradient(#67459b, #f58a6b);
  border-radius: 4px;
  height: 100%;
  padding: 32px;
  transition: opacity .2s;
  display: block;
}

.card:hover {
  height: 100%;
  position: static;
  bottom: 10px;
}

.form {
  width: 100%;
  height: 72px;
  position: relative;
}

.submit-button {
  background-color: var(--bg-brand);
  color: var(--text-color-brand);
  border-radius: 4px;
  padding: 12px 18px;
  display: inline-block;
}

.text-field {
  border-radius: 4px;
  height: 100%;
  padding-left: 32px;
}

.submit-button-wrapper {
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0% 12px 0% auto;
}

.form-wrapper {
  flex-direction: column;
  flex: 1;
  align-items: stretch;
  min-width: 300px;
  max-width: 500px;
  margin-bottom: 0;
  display: flex;
}

.form-wrapper.full-width {
  width: 100%;
  max-width: none;
}

.success-message {
  color: #000;
}

.select-field {
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  border-radius: 4px;
}

.radio-button, .checkbox {
  width: 16px;
  height: 16px;
  margin-top: 5px;
}

.pricing-title-wrapper {
  text-align: center;
  margin-bottom: 96px;
}

.utility-styles-column {
  width: 100%;
}

.utlity-styles-wrapper {
  border: 1px solid #f5f5f5;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 1px;
}

.utlity-styles-wrapper.margin {
  background-color: #f3f3f3;
  background-image: url('../images/bg-lines-lightblue3.svg');
  background-position: 0 0;
  background-size: 4px;
  width: 100%;
}

.utlity-styles-wrapper.padding {
  background-color: #f3f3f3;
  background-image: url('../images/bg-lines-green.svg');
  background-position: 0 0;
  background-size: 4px;
}

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

.utility-styles-card {
  color: #363636;
  background-color: #f3f3f3;
  border-radius: 4px;
  padding: 16px;
}

.margin-top-32px {
  margin-top: 32px;
}

.margin-top-48px {
  margin-top: 48px;
}

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

.margin-bottom-32px {
  margin-bottom: 2em;
}

.margin-left-0px {
  margin-left: 0;
}

.margin-left-16px {
  margin-left: 1em;
}

.margin-left-32px {
  margin-left: 2em;
}

.margin-left-48px {
  margin-left: 3em;
}

.margin-right-0px {
  margin-right: 0;
}

.margin-right-16px {
  margin-right: 1em;
}

.margin-right-32px {
  margin-right: 2em;
}

.margin-right-48px {
  margin-right: 3em;
}

.padding-top-0px {
  padding-top: 0;
}

.padding-top-16px {
  padding-top: 1em;
}

.padding-top-32px {
  padding-top: 2em;
}

.padding-top-48px {
  padding-top: 3em;
}

.padding-bottom-16px {
  padding-bottom: 1em;
}

.padding-bottom-32px {
  padding-bottom: 2em;
}

.padding-bottom-48px {
  padding-bottom: 3em;
}

.padding-0px {
  padding: 0;
}

.padding-16px {
  padding: 1em;
}

.padding-32px {
  padding: 2em;
}

.icons-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  display: flex;
}

.social-icons-font {
  font-family: Social Icons Font, sans-serif;
  font-size: 20px;
  line-height: 1;
}

.icons-font {
  align-self: flex-start;
  font-family: Icons Font, sans-serif;
  font-size: 20px;
}

.social-icon-font {
  font-family: Social Icons Font, sans-serif;
  font-size: 20px;
  line-height: 1;
}

.color-overlay {
  z-index: 0;
  background-color: var(--bg-brand);
  opacity: .2;
  mix-blend-mode: color;
  position: absolute;
  inset: 0%;
}

.featured-image-wrapper {
  height: 100%;
  position: relative;
}

.heading {
  color: var(--bg-primary);
}

.heading-2 {
  color: var(--text-primary);
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#f58a6b, #67459b);
  -webkit-background-clip: text;
  background-clip: text;
}

.image {
  margin-top: 40px;
  margin-bottom: 40px;
}

.container-2 {
  width: 600px;
  height: 280px;
  position: absolute;
}

.paragraph {
  color: var(--bg-primary);
  font-family: Open Sans, sans-serif;
  position: relative;
  top: 20px;
}

.paragraph-2 {
  color: var(--bg-primary);
  padding-top: 20px;
  font-family: Open Sans, sans-serif;
}

.link-block {
  aspect-ratio: auto;
  object-fit: fill;
  flex: 0 auto;
  width: auto;
  height: auto;
  position: relative;
}

.heading-3 {
  -webkit-text-fill-color: transparent;
  background-color: #402260;
  -webkit-background-clip: text;
  background-clip: text;
}

.div-block {
  position: absolute;
}

.div-block-2 {
  box-shadow: 0 2px 5px #0003;
}

.link-block-2, .link-block-3, .link-block-4 {
  position: absolute;
  inset: 0%;
}

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

.button {
  color: var(--bg-brand);
  background-color: #fff;
}

.paragraph-3 {
  color: var(--bg-primary);
  font-family: Open Sans, sans-serif;
}

.paragraph-4 {
  font-family: Open Sans, sans-serif;
}

.paragraph-5, .paragraph-6, .paragraph-7 {
  color: var(--bg-primary);
  font-family: Open Sans, sans-serif;
}

.link-block-5 {
  text-decoration: none;
}

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

.codingwithcoffile {
  width: 250px;
  height: 250px;
}

.features-list {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-3 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.features-wrapper-two {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.features-left {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 40%;
  display: flex;
}

.features-paragraph {
  margin-bottom: 24px;
}

.text-link-arrow {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed {
  margin-left: 2px;
  display: flex;
}

.features-right {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  margin-bottom: -16px;
  display: flex;
}

.features-block-two {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.features-image {
  object-fit: cover;
  width: 80px;
  height: 80px;
  margin-right: 16px;
}

.heading-4 {
  color: var(--text-secondary);
}

.fs_accordion-2_component {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fs_accordion-2_embed {
  margin-bottom: 0;
}

.fs_accordion-2_header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  cursor: pointer;
  background-color: #f5f5f5;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  display: flex;
}

.fs_accordion-2_header:focus-visible, .fs_accordion-2_header[data-wf-focus-visible] {
  outline-color: var(--accessible-components--dark-grey);
  outline-offset: 4px;
  outline-width: 2px;
  outline-style: solid;
}

.fs_accordion-2_content {
  transition: max-height .2s;
  overflow: hidden;
}

.fs_accordion-2_body {
  background-color: #fff;
  padding: 1rem 1.5rem;
}

.fs_accordion-2_paragraph {
  margin-bottom: 0;
}

.fs_accordion-2_icon {
  margin-right: 0;
  font-size: 1.125rem;
  position: relative;
}

.fs_accordion-2_label {
  font-size: 1.25rem;
  font-weight: 500;
}

.fs_accordion-2_arrow-wrapper {
  transition: transform .2s;
}

.fs_accordion-2_arrow-wrapper.is-active-accordion {
  transform: rotate(180deg);
}

.fs_accordion-2_message {
  color: var(--accessible-components--dark-grey);
}

.rt-category-cards-text {
  color: var(--radiant-ui-components-library-marketplace--color--heading-dark);
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 400;
  line-height: 31px;
}

.rt-category-cards-text.rt-text-white {
  color: var(--radiant-ui-components-library-marketplace--color--white);
}

.rt-category-cards-text.rt-margin-bottom-fifteen {
  margin-bottom: 15px;
}

.rt-text-white {
  color: var(--radiant-ui-components-library-marketplace--color--white);
}

.rt-component-container {
  width: 100%;
  max-width: 1290px;
  position: relative;
}

.rt-component-section {
  background-color: var(--radiant-ui-components-library-marketplace--color--white);
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  width: 100%;
  padding: 80px 15px;
  font-family: Outfit;
  font-size: 17px;
  font-weight: 300;
  line-height: 29px;
  position: relative;
}

.rt-radius-ten {
  border-radius: 10px;
  overflow: hidden;
}

.rt-home-one-progress-text-main {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.rt-home-one-progress-main-heading {
  border-bottom: 1px solid var(--radiant-ui-components-library-marketplace--color--heading-dark);
  padding-bottom: 10px;
}

.rt-home-one-progress-text-item {
  color: var(--radiant-ui-components-library-marketplace--color--heading-dark);
  background-color: #89b8ff;
  border-radius: 10px;
  padding: 20px 40px;
}

.rt-home-one-progress-text-item.rt-top-mergin {
  margin-top: -20px;
}

.rt-home-one-progress-text-item.rt-top-mergin.rt-change-color-one {
  background-color: #adceff;
}

.rt-home-one-progress-text-item.rt-top-mergin.rt-change-color-three {
  background-color: var(--radiant-ui-components-library-marketplace--color--theme-color);
}

.rt-home-one-progress-text-item.rt-top-mergin.rt-change-color-two {
  background-color: #89b8ff;
}

.rt-home-one-progress-details {
  padding-top: 20px;
  overflow: hidden;
}

.rt-home-one-progress-paragraph {
  color: var(--radiant-ui-components-library-marketplace--color--heading-dark);
  max-width: 415px;
  padding-top: 10px;
}

.rt-home-one-progress-image-wrapper {
  position: relative;
}

.rt-home-one-progress-wrapper {
  grid-column-gap: 90px;
  grid-row-gap: 90px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.rt-home-one-progress-number-wrapper {
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.rt-home-one-progress-image {
  padding-top: 60px;
  padding-left: 20px;
}

.rt-change-padding-6 {
  color: var(--bg-brand);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Lato, sans-serif;
}

.rt-home-one-progress-heading {
  max-width: 479px;
  padding-bottom: 20px;
}

.rt-auto-fit-8 {
  object-fit: cover;
}

.rt-auto-fit-8.rt-radius-ten {
  border-radius: 10px;
}

.rt-auto-fit-8.rt-radius-ten.rt-position-relative {
  z-index: 1;
  position: relative;
}

.rt-body-font-11 {
  letter-spacing: 0;
}

.rt-body-font-11.rt-change-style {
  color: #4b4b4b;
  font-size: 14px;
  font-weight: 500;
}

.rt-home-one-progess-image-main {
  border-radius: 8px;
  overflow: hidden;
}

.rt-home-one-client-image-background {
  background-color: #d2efff;
  border-radius: 8px;
  position: absolute;
  inset: 0%;
  transform: rotate(-6.2deg);
}

.rt-position-relative {
  position: relative;
}

.rt-body-font-color {
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  transition: color .35s;
}

.rt-number-img-bg-inner {
  color: var(--radiant-ui-components-library-marketplace--color--theme-color);
  background-image: url('../images/Group-1009002136.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  font-size: 30px;
  font-weight: 500;
  line-height: 50px;
  display: flex;
}

.rt-number-img-bg-inner:hover {
  background-image: url('../images/Group-1009002136-1.svg');
}

.rt-arrow-img-left {
  height: auto;
  position: absolute;
  inset: auto -12% 43% auto;
  transform: none;
}

.rt-arrow-img-left.rt-arrow-img-right {
  bottom: 46%;
  transform: rotate(-12deg);
}

.rt-number-block-2 {
  text-align: center;
  flex: 1;
  position: relative;
}

.rt-number-image-bg-outer {
  justify-content: center;
  align-items: center;
}

.rt-arrow-down-img {
  height: auto;
}

.rt-number-text-block-outer {
  align-items: center;
}

.rt-arrow-circle-block {
  justify-content: center;
  padding-left: 15px;
  padding-right: 15px;
}

.rt-margin-bottom-fifteen {
  margin-bottom: 15px;
}

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

.team-circles {
  border-top: 1px solid #000;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-5 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.centered-heading {
  color: var(--bg-brand);
  text-align: center;
  margin-bottom: 16px;
}

.centered-subheading {
  color: var(--text-primary);
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
  grid-column-gap: 64px;
  grid-row-gap: 56px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 60px;
  display: grid;
}

.team-card {
  text-align: center;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  line-height: 22px;
  display: flex;
}

.team-member-image {
  object-fit: cover;
  border-radius: 50%;
  width: 270px;
  height: 270px;
  margin-bottom: 24px;
}

.team-member-name {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.team-member-position {
  margin-bottom: 24px;
}

.paragraph-8, .paragraph-9 {
  color: var(--text-primary);
}

.hero-heading-center {
  background-color: #f5f7fa;
  background-image: radial-gradient(circle at 0 0, #f58a6b, #67459b);
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-6 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.centered-heading-2 {
  text-align: center;
  margin-bottom: 16px;
}

.centered-heading-2.margin-bottom-32px {
  color: var(--bg-primary);
  margin-bottom: 32px;
}

.hero-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-split {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

.margin-bottom-24px {
  color: var(--bg-primary);
  margin-bottom: 24px;
}

.button-primary-2 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #402260;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-2:hover {
  color: #fff;
  background-color: #ee3073;
}

.button-primary-2:active {
  background-color: #43464d;
}

.shadow-two {
  opacity: .89;
  border-radius: 10px;
  width: 333.333px;
  height: 400px;
  box-shadow: 0 4px 24px #96a3b514;
}

.rt-component-container-2 {
  width: 100%;
  max-width: 1290px;
  position: relative;
}

.rt-component-section-2 {
  background-color: var(--radiant-ui-components-library-marketplace--color--white);
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  width: 100%;
  padding: 80px 15px;
  font-family: Outfit;
  font-size: 17px;
  font-weight: 300;
  line-height: 29px;
  position: relative;
}

.rt-large-text-marquee-one {
  overflow: hidden;
}

.rt-large-text-marquee-text-wrap {
  color: #757575;
  letter-spacing: -2px;
  white-space: nowrap;
  font-size: 6.25rem;
  font-weight: 700;
  line-height: 5rem;
}

.rt-text-stroke {
  color: #e6e6ee00;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #757575;
}

.container-7 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  opacity: .75;
  background-color: #ee3073;
  background-image: linear-gradient(87deg, #402260, #ee3073);
  border-radius: 11px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 80%;
  max-width: none;
  height: 5px;
  margin-top: 80px;
  display: block;
}

.rt-component-container-3 {
  flex-flow: row-reverse;
  width: 100%;
  max-width: 1290px;
  display: block;
  position: relative;
}

.rt-component-section-3 {
  background-color: var(--radiant-ui-components-library-marketplace--color--white);
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  width: 100%;
  padding: 80px 15px;
  font-family: Lato, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 29px;
  position: relative;
}

.rt-large-text-marquee-one-2 {
  color: var(--bright-orange);
  overflow: hidden;
}

.rt-large-text-marquee-text-wrap-2 {
  color: #f58a6b;
  letter-spacing: -2px;
  white-space: nowrap;
  font-size: 6.25rem;
  font-weight: 700;
  line-height: 5rem;
}

.rt-text-stroke-2 {
  color: #67459b;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: #757575;
}

.text-block {
  color: #f58a6b;
}

.rt-category-cards-text-2 {
  color: var(--radiant-ui-components-library-marketplace--color--heading-dark);
  text-transform: capitalize;
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 31px;
}

.rt-component-section-4 {
  background-color: var(--radiant-ui-components-library-marketplace--color--white);
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  width: 100%;
  padding: 80px 15px;
  font-family: Outfit;
  font-size: 17px;
  font-weight: 300;
  line-height: 29px;
  position: relative;
}

.rt-body-font-color-2 {
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  font-family: Lato, sans-serif;
  transition: color .35s;
}

.rt-sticky {
  margin-bottom: 30px;
  position: sticky;
  top: 100px;
}

.rt-sticky.rt-tab-sticky-off.rttext-black {
  color: var(--bg-brand);
  font-family: Lato, sans-serif;
}

.rt-team-two-work-process-block {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  max-width: 1290px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.rt-service-step-info {
  flex: 1;
  padding: 1.7rem 8% 1.7rem 5%;
}

.rt-team-two-process-block-left {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 499px;
  display: flex;
  position: sticky;
  top: 0;
}

.rt-service-step-number-2 {
  color: var(--bright-orange);
  font-family: Lato, sans-serif;
  font-size: 5rem;
}

.rt-service-process-step-2 {
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: -1px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.rt-service-process-step-2.rt-team-two {
  border-bottom-color: #e1e1e1;
}

.rt-service-process-step-2.rt-team-two-no-border {
  border-bottom-style: none;
}

.rt-service-step-number-block-2 {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 20%;
  min-width: 120px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: inset -2px 0 #e1e1e1;
}

.rt-service-process-2 {
  perspective: 600px;
  padding-bottom: 1px;
}

.rt-service-step-process-3 {
  z-index: 2;
  background-image: linear-gradient(180deg, var(--bright-orange), var(--bg-brand));
  direction: ltr;
  width: 3px;
  height: 40%;
  position: absolute;
  right: -1px;
}

.rt-text-dark-black {
  color: var(--radiant-ui-components-library-marketplace--color--heading-dark);
  font-weight: 400;
}

.rt-component-section-5 {
  background-color: var(--radiant-ui-components-library-marketplace--color--white);
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  width: 100%;
  padding: 80px 15px;
  font-family: Outfit;
  font-size: 17px;
  font-weight: 300;
  line-height: 29px;
  position: relative;
}

.container-8 {
  height: 150px;
}

.hero-heading-right {
  background-color: #67459b29;
  background-image: linear-gradient(124deg, #67459b, #67459b47);
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-9 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.hero-wrapper-2 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-split-2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

.shadow-two-2 {
  box-shadow: 0 4px 24px #96a3b514;
}

.margin-bottom-24px-2 {
  color: var(--bg-primary);
  margin-bottom: 24px;
}

.button-primary-3 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #402260;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-3:hover {
  color: #fff;
  background-color: #ee3073;
}

.button-primary-3:active {
  background-color: #43464d;
}

.rt-component-section-6 {
  background-color: var(--radiant-ui-components-library-marketplace--color--white);
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  width: 100%;
  padding: 80px 15px;
  font-family: Outfit;
  font-size: 17px;
  font-weight: 300;
  line-height: 29px;
  position: relative;
}

.rt-home-one-team-block {
  background-color: #0a0a0a;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  height: 60vh;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.rt-wrapper-image.rt-team-member-one {
  transform-origin: 0%;
  cursor: pointer;
  background-image: url('../images/Team-Border-Line.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 25%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.rt-wrapper-image.rt-team-member-one:hover {
  background-image: url('../images/David-Smith.png'), url('../images/Team-Border-Line.svg');
  background-position: 0%, 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: 39px, contain;
}

.rt-wrapper-image.rt-team-member-one.rt-blank {
  background-image: none;
  justify-content: center;
  width: 20%;
}

.rt-general-link {
  cursor: pointer;
  text-decoration: none;
}

.rt-member-image {
  object-fit: cover;
  width: 100%;
  height: 60vh;
}

.rt-mobile-team-person-responsive {
  display: none;
}

.rt-team-title-text {
  color: #fff;
  letter-spacing: .03rem;
  cursor: pointer;
  margin-bottom: 1px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 120%;
}

.rt-component-section-7 {
  background-color: var(--radiant-ui-components-library-marketplace--color--white);
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  width: 100%;
  padding: 80px 15px;
  font-family: Outfit;
  font-size: 17px;
  font-weight: 300;
  line-height: 29px;
  position: relative;
}

.rt-home-one-tab-wrap {
  perspective: 500px;
  padding-bottom: 170px;
  position: relative;
}

.rt-home-one-tab-link-wrap {
  align-items: stretch;
}

.rt-home-one-tab-image-overlay {
  z-index: 2;
  background-image: linear-gradient(#00001a00, #00001ae6);
  position: absolute;
  inset: 0%;
}

.rt-home-one-service-bottom-block {
  display: flex;
}

.rt-tab-image-two-wrap-2 {
  z-index: 1;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.rt-home-one-tab-link {
  color: var(--radiant-ui-components-library-marketplace--color--heading-dark);
  white-space: normal;
  background-color: #fff0;
  border-bottom: 1px solid #0000001a;
  padding: 40px 30px 40px 60px;
}

.rt-home-one-tab-link.w--current {
  background-color: var(--radiant-ui-components-library-marketplace--color--theme-color);
  color: var(--radiant-ui-components-library-marketplace--color--white);
  border-bottom-style: none;
  border-bottom-color: #fff0;
  border-radius: 10px;
}

.rt-home-one-tab-link.rt-top-border {
  border-top: 1px solid #ffffff4d;
}

.rt-home-one-tab-link.rt-top-border.w--current {
  border-top-color: #fff0;
}

.rt-home-one-tab-contain {
  width: 100%;
  max-width: 407px;
  margin-right: 100px;
}

.rt-home-one-tab-menu {
  flex-flow: column;
  width: 100%;
  max-width: 742px;
  display: flex;
}

.rt-home-one-tabe-image-block-two {
  transform-style: preserve-3d;
  padding-top: 20px;
  padding-bottom: 20px;
  position: absolute;
  inset: auto 0% 0% auto;
  overflow: hidden;
  transform: rotateX(0)rotateY(10deg)rotateZ(0);
}

.rt-home-one-tab-contain-box {
  overflow: hidden;
}

.rt-tab-image-one-wrap-2 {
  border-radius: 4px;
  overflow: hidden;
}

.rt-home-one-tab-image-block-one {
  z-index: 2;
  transform-style: preserve-3d;
  margin-left: 10px;
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: hidden;
  transform: rotateX(0)rotateY(13deg)rotateZ(0);
}

.rt-tab-description {
  white-space: normal;
  max-width: 47ch;
  margin-top: 25px;
  margin-bottom: 0;
}

.rt-heading-five-size {
  font-size: 21px;
  font-weight: 400;
}

.heading-5 {
  color: var(--bg-brand);
}

.section-3 {
  margin-top: 60px;
}

.rt-category-cards-text-3 {
  color: var(--radiant-ui-components-library-marketplace--color--heading-dark);
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 400;
  line-height: 31px;
}

.rt-category-cards-text-3.rt-margin-bottom-fifteen-2 {
  color: var(--bg-brand);
  margin-bottom: 15px;
}

.rt-margin-bottom-twenty {
  margin-bottom: 20px;
}

.rt-component-section-8 {
  background-color: var(--radiant-ui-components-library-marketplace--color--white);
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  width: 100%;
  padding: 80px 15px;
  font-family: Outfit;
  font-size: 17px;
  font-weight: 300;
  line-height: 29px;
  position: relative;
}

.rt-full-width {
  border-radius: 10px;
  width: 100%;
}

.rt-full-width.rt-container-small.rt-home-one-cta-contain {
  z-index: 5;
  max-width: 1290px;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.rt-overflow-hidden {
  overflow: hidden;
}

.rt-autofit {
  object-fit: cover;
}

.rt-autofit-2 {
  object-fit: cover;
  border-radius: 10px;
}

.rt-autofit-2.rt-full-width {
  width: 100%;
}

.rt-advertise-content-icon-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  flex: none;
  align-items: center;
  width: 42px;
  display: flex;
}

.rt-advertise-icon-wrapper {
  color: var(--radiant-ui-components-library-marketplace--color--heading-dark);
  border: 1px solid #0000004d;
  border-radius: 100%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-weight: 600;
  position: relative;
}

.rt-advertise-icon-wrapper.rticon-two {
  background-color: var(--radiant-ui-components-library-marketplace--color--theme-color);
}

.rt-dotted-line {
  border: 1px dashed #0003;
  flex: 1;
  width: 1px;
  height: 100%;
}

.rt-advertise-image-wrapper {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.rt-advertise-content-text-wrapper {
  max-width: 495px;
}

.rt-border-radius-six {
  border-radius: 6px;
}

.rt-advertise-content-wrapper {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.rt-advertise-content {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: stretch;
}

.rt-body-font-color-3 {
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  transition: color .35s;
}

.rt-position-relative-2 {
  position: relative;
}

.rt-component-section-9 {
  background-color: var(--radiant-ui-components-library-marketplace--color--white);
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  width: 100%;
  padding: 80px 15px;
  font-family: Outfit;
  font-size: 17px;
  font-weight: 300;
  line-height: 29px;
  position: relative;
}

.rt-heading-two {
  color: var(--bg-brand);
  font-size: 30px;
  font-weight: 400;
  line-height: 45px;
}

.rt-autofit-3 {
  object-fit: cover;
  border-radius: 10px;
}

.rt-text-uppercase {
  text-transform: uppercase;
}

.rt-dropdown-toggle-copy {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  padding: 10px 0;
  display: flex;
}

.rt-dropdown-2 {
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  width: 100%;
}

.rt-accordion-main {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  max-width: 550px;
  display: flex;
}

.rt-accordion-main.rt-margin-top-thirty-five {
  flex-flow: wrap;
}

.rt-home-three-benefits-main {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  flex-flow: row-reverse;
  align-items: center;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.rt-accordion-v3-tag {
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  margin-bottom: 12px;
  font-size: 16px;
  display: flex;
}

.rt-dropdown-list-3 {
  background-color: #ddd0;
  position: relative;
}

.rt-overflow-off {
  overflow: hidden;
}

.rt-home-three-benefits-image {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.rt-home-three-benefits-text {
  flex: 1;
}

.rt-margin-top-thirty-five {
  margin-top: 35px;
}

.rt-component-section-10 {
  background-color: var(--radiant-ui-components-library-marketplace--color--white);
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  width: 100%;
  padding: 80px 15px;
  font-family: Lato, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 29px;
  position: relative;
}

.rt-auto-fit-3 {
  height: auto;
}

.rt-left-right-effect {
  position: absolute;
}

.rt-solutions-card {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  padding: 20px 25px;
  transition: background-color .2s, box-shadow .2s;
  display: flex;
  position: relative;
}

.rt-solutions-card-icons-block {
  background-color: #ede9ef;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
}

.rt-solutions-card-icons-block.rt-bg-light-green, .rt-solutions-card-icons-block.rt-light-pink {
  background-color: #ede9ef;
}

.rt-solutions-card-flex {
  z-index: 2;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: flex-start;
  margin-bottom: 8px;
  padding-top: 20px;
  display: flex;
  position: relative;
}

.rt-solutions-card-flex.rt-align-top {
  align-items: flex-start;
}

.rt-card-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex: 0 60%;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

.rt-solutions-card-icons-col {
  flex: 1;
  max-width: 70px;
}

.rt-solutions-card-icons-col.rt-amazing-home-two {
  max-width: 78px;
}

.rt-home-three-business-flex {
  grid-column-gap: 136px;
  align-items: center;
  display: flex;
}

.rt-solutions-card-caption-col {
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  flex: 1;
}

.rt-home-three-business-image-block {
  flex: 0 58%;
  position: relative;
}

.rt-margin-bottom-fifteen-2 {
  margin-bottom: 15px;
}

.rt-solution-card-background {
  z-index: 1;
  opacity: 0;
  border-radius: 20px;
  position: absolute;
  inset: 0%;
  box-shadow: 0 2px 50px #dbdfffcc;
}

.rt-text-white-2 {
  color: var(--radiant-ui-components-library-marketplace--color--white);
}

.rt-text-white-2.rt-text-uppercase {
  text-transform: uppercase;
}

.rt-component-section-11 {
  background-color: var(--radiant-ui-components-library-marketplace--color--white);
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  width: 100%;
  padding: 80px 15px;
  font-family: Outfit;
  font-size: 17px;
  font-weight: 300;
  line-height: 29px;
  position: relative;
}

.rt-button-text-hover-in {
  text-decoration: none;
}

.rt-button {
  grid-column-gap: 10px;
  color: #fff;
  text-align: center;
  text-transform: capitalize;
  background-color: #3898ec00;
  border: 1.5px solid #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: baseline;
  padding: 14px 37px 18px;
  font-size: 18px;
  font-weight: 600;
  line-height: 32px;
  display: flex;
  position: relative;
}

.rt-button.rt-margin-top-twenty {
  margin-top: 20px;
  text-decoration: none;
  transition-timing-function: cubic-bezier(.165, .84, .44, 1), cubic-bezier(.255, .255, .255, 1);
}

.rt-button.rt-margin-top-twenty:hover {
  color: #fff;
}

.rt-button-main-three {
  height: 26px;
  position: relative;
}

.rt-button-main-three.rt-overflow-hidden {
  text-decoration: none;
}

.rt-service-two-cta {
  padding: 122px 15px 130px;
  position: relative;
}

.rt-service-two-cta.rt-background-dark {
  background-color: var(--radiant-ui-components-library-marketplace--color--button-background-dark);
}

.rt-service-two-cta-background {
  background-image: url('../images/Cta-bg.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  border-radius: 6px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  font-family: Lato, sans-serif;
  position: absolute;
  inset: 0%;
}

.rt-team-one-cta-main {
  z-index: 1;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.rt-text-small {
  font-size: .875rem;
}

.rt-margin-top-twenty {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-top: 20px;
}

.rt-background-dark {
  background-color: var(--radiant-ui-components-library-marketplace--color--button-background-dark);
}

.rt-component-section-12 {
  background-color: var(--radiant-ui-components-library-marketplace--color--white);
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  width: 100%;
  padding: 80px 15px;
  font-family: Lato, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 29px;
  position: relative;
}

.image-3 {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  box-shadow: 3px 3px 5px 8px #0003;
}

.rt-tag {
  color: var(--radiant-ui-components-library-marketplace--color--linear-color-two);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
}

.rt-component-section-13 {
  background-color: var(--radiant-ui-components-library-marketplace--color--white);
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  width: 100%;
  padding: 80px 15px;
  font-family: Outfit;
  font-size: 17px;
  font-weight: 300;
  line-height: 29px;
  position: relative;
}

.rt-heading-three {
  color: var(--radiant-ui-components-library-marketplace--color--heading-dark);
  text-transform: capitalize;
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
}

.rt-heading-three.rt-text-white {
  color: var(--radiant-ui-components-library-marketplace--color--white);
}

.rt-heading-three.rt-text-white.rt-margin-bottom-fifteen {
  margin-bottom: 15px;
}

.rt-home-three-cta-contain-wrap {
  perspective: 1000px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.rt-button-main-two {
  height: 26px;
  position: relative;
}

.rt-home-three-cta-main-box {
  background-color: var(--radiant-ui-components-library-marketplace--color--button-background-dark);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  max-width: 1602px;
  margin-left: auto;
  margin-right: auto;
  padding: 120px 80px 125px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.rt-home-three-cta-contain-text-wrap {
  flex-direction: column;
  align-items: flex-start;
  max-width: 434px;
  display: flex;
}

.rt-home-one-cta-overlay {
  background-image: linear-gradient(89deg, #14151a80, #fff0);
  height: 100%;
  position: absolute;
  inset: 0%;
}

.rt-home-three-cta-background {
  background-image: url('../images/CTA-bg_1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6px;
  width: 100%;
  height: 130%;
  position: absolute;
  left: 0%;
  right: 0%;
}

.rt-container-small {
  max-width: 1290px;
  padding-left: 15px;
  padding-right: 15px;
}

.rt-component-section-14 {
  background-color: var(--radiant-ui-components-library-marketplace--color--white);
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  width: 100%;
  padding: 80px 15px;
  font-family: Lato, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 29px;
  position: relative;
}

.rt-component-section-14:hover {
  color: var(--bg-primary);
}

.rt-component-section-15 {
  background-color: var(--radiant-ui-components-library-marketplace--color--white);
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  flex-flow: row-reverse;
  justify-content: flex-start;
  width: 100%;
  padding: 80px 15px;
  font-family: Lato, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 29px;
  display: flex;
  position: relative;
}

.rt-autofit-4 {
  object-fit: cover;
}

.section-4 {
  margin-top: 40px;
}

.heading-6, .heading-7, .heading-8, .heading-9, .heading-10 {
  color: var(--bg-primary);
}

.rt-component-container-4 {
  width: 100%;
  max-width: 1290px;
  position: relative;
}

.rt-component-section-16 {
  background-color: var(--radiant-ui-components-library-marketplace--color--white);
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  width: 100%;
  padding: 80px 15px;
  font-family: Lato, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 29px;
  position: relative;
}

.rt-second-section-icon-divider {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-start;
  align-items: stretch;
}

.rt-second-section-icon-divider.rt-icon-divider-two {
  grid-column-gap: 53px;
  grid-row-gap: 53px;
}

.rt-second-section-icon-block {
  flex: none;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.rt-icon-content-box-content {
  max-width: 330px;
  margin-top: 15px;
}

.rt-icon-content-box {
  flex: 1;
  padding-top: 16px;
  padding-bottom: 18px;
}

.rt-icon-box-bg-color {
  pointer-events: none;
  background-image: none;
  position: absolute;
  inset: 0%;
}

.rt-icon-box-divider {
  background-color: #c3c3c3;
  width: 1px;
}

.rt-second-section-icon-box {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  position: relative;
}

.rt-second-section-icon-box.rt-two-icon-box {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

.rt-second-section-icon-hover-out {
  position: absolute;
  inset: auto 0% 0%;
  transform: translate(0, 100%);
}

.rt-second-icon-box-second-section {
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  flex: 1;
  max-width: 590px;
  margin-top: -2px;
}

.rt-second-icon-box-section-heading {
  max-width: 426px;
  margin-top: 0;
  margin-bottom: 46px;
}

.rt-second-icon-box-first-section {
  border-radius: 10px;
  flex: 0 auto;
  max-width: 520px;
  overflow: hidden;
}

.rt-second-icon-box-image {
  vertical-align: baseline;
  width: 520px;
  height: 520px;
  display: block;
}

.rt-home-three-second-icon-box-section {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: space-between;
  align-items: center;
  max-width: 1230px;
}

.rt-heading-six {
  color: var(--radiant-ui-components-library-marketplace--color--heading-dark);
  letter-spacing: -.2px;
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.rt-component-container-5 {
  width: 100%;
  max-width: 1290px;
  position: relative;
}

.rt-component-section-17 {
  background-color: var(--radiant-ui-components-library-marketplace--color--white);
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  width: 100%;
  padding: 80px 15px;
  font-family: Lato, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 29px;
  position: relative;
}

.rt-line-three, .rt-line-one, .rt-line-two {
  background-color: #d8d8d8;
  height: 1px;
  position: absolute;
  inset: auto 0% 0%;
}

.rt-home-three-card-line {
  background-color: #e7e7e7;
  width: 1px;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.rt-home-three-power-box {
  border-radius: 20px;
  flex: 1;
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
}

.rt-home-three-power-hover {
  cursor: pointer;
  border-radius: 20px;
  width: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
  transform: translate(0);
}

.rt-arrow-img {
  object-fit: cover;
}

.rt-heading-five-45 {
  color: #02015a;
  letter-spacing: .5px;
  text-transform: capitalize;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.rt-heading-five-45.rt-home-three-power-text-block {
  max-width: 10ch;
  margin-bottom: 20px;
  padding-top: 42px;
}

.rt-heading-five-45.rt-home-three-power-text-block.rt-heading-six {
  max-width: 15ch;
  font-size: 20px;
  line-height: 30px;
}

.rt-autofit-11 {
  object-fit: cover;
}

.rt-autofit-11.rt-white-img {
  position: absolute;
}

.rt-home-three-power-text-block {
  z-index: 3;
  position: relative;
}

.rt-power-card-image-overlay {
  background-color: #0009;
  position: absolute;
  inset: 0%;
}

.rt-margin-bottom-fifteen-3 {
  margin-bottom: 15px;
}

.rt-power-card-image-wrap {
  width: 100%;
  transform: translate(0);
}

.rt-arrow-img-block {
  padding-top: 15px;
}

.rt-power-card-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.rt-meterial-engg-img-block {
  flex-direction: column;
  height: 67px;
  display: flex;
  overflow: hidden;
}

.rt-home-three-icon-block {
  justify-content: center;
}

.hero-heading-center-2 {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-10 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.centered-heading-3 {
  text-align: center;
  margin-bottom: 16px;
}

.centered-heading-3.margin-bottom-32px {
  margin-bottom: 32px;
}

.hero-wrapper-3 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-split-3 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

.margin-bottom-24px-3 {
  margin-bottom: 24px;
}

.button-primary-4 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-4:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-4:active {
  background-color: #43464d;
}

.shadow-two-3 {
  border-radius: 20px;
  box-shadow: 0 4px 24px #96a3b514;
}

.rt-text-white-3 {
  color: var(--radiant-ui-components-library-marketplace--color--white);
}

.rt-component-section-18 {
  background-color: var(--radiant-ui-components-library-marketplace--color--white);
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  width: 100%;
  padding: 80px 15px;
  font-family: Outfit;
  font-size: 17px;
  font-weight: 300;
  line-height: 29px;
  position: relative;
}

.rt-agent-overlay {
  z-index: 1;
  background-color: #0009;
  justify-content: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.rt-agent-mask {
  position: relative;
  overflow: hidden;
}

.rt-agent-collection-card {
  flex-direction: column;
  display: flex;
}

.rt-agent-text-wrap {
  text-align: center;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 92%;
  padding-bottom: 40px;
  display: flex;
  position: relative;
}

.rt-image-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.rt-agent-collection-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  width: 100%;
}

.rt-agent-collection-grid.rt-agent-one-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.rt-agent-text {
  font-size: 16px;
}

.rt-agent-text.rt-heading-five {
  font-size: 21px;
}

.rt-agent-collection {
  justify-content: center;
  width: 100%;
  display: flex;
}

.rt-agent-collection.rt-agent-one {
  border-radius: 10px;
  overflow: hidden;
}

.rt-background-dark-2 {
  background-color: var(--radiant-ui-components-library-marketplace--color--button-background-dark);
}

.hero-heading-left {
  background-color: #f1ecf8;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
  box-shadow: 0 2px 5px #0006;
}

.margin-bottom-24px-4 {
  margin-bottom: 24px;
}

.button-primary-5 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #402260;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-5:hover {
  color: #fff;
  background-color: #f58a6b;
}

.button-primary-5:active {
  background-color: #43464d;
}

.heading-12 {
  color: var(--bg-brand);
}

.div-block-4 {
  height: 75px;
}

.paragraph-10 {
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
}

.rt-text-blue {
  color: var(--bg-brand);
}

.rt-component-container-6 {
  width: 100%;
  max-width: 1290px;
  position: relative;
}

.rt-component-section-19 {
  background-color: var(--radiant-ui-components-library-marketplace--color--white);
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  width: 100%;
  padding: 80px 15px;
  font-family: Lato, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 29px;
  position: relative;
}

.rt-overflow-hidden-2 {
  overflow: hidden;
}

.rt-button-arrow-2.rt-display-off {
  display: none;
}

.rt-button-main-three-2 {
  height: 26px;
  position: relative;
}

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

.rt-display-off {
  display: none;
}

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

.rt-body-font-color-4 {
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  transition: color .35s;
}

.rt-padding-bottom-twenty {
  padding-bottom: 20px;
}

.rt-position-relative-3 {
  position: relative;
}

.rt-yearly {
  display: none;
}

.rt-monthly {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
}

.rt-price-two-amount {
  color: var(--radiant-ui-components-library-marketplace--color--heading-dark);
  font-size: 35px;
  font-weight: 400;
  line-height: 45px;
}

.rt-home-one-pricing-paragraph {
  padding-top: 10px;
  padding-bottom: 30px;
}

.rt-home-one-pricing-paragraph.rt-change-max-width {
  max-width: 300px;
}

.rt-home-one-pricing-price-item {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: var(--radiant-ui-components-library-marketplace--color--heading-dark);
  align-items: center;
  padding-bottom: 20px;
  font-size: 16px;
  display: flex;
}

.rt-home-one-pricing-line {
  background-color: #0000001a;
  height: 1px;
  margin-top: 10px;
  margin-bottom: 40px;
}

.rt-main-container-2 {
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
}

.rt-main-container-2.rt-position-relative-3 {
  position: relative;
}

.rt-heading-five-39 {
  color: #152547;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5625rem;
}

.rt-heading-five-39.rt-padding-top-bottom {
  padding-top: 10px;
  padding-bottom: 10px;
}

.rt-home-one-pricing-button-circle {
  background-color: #fff;
  border-radius: 20px;
  width: 28px;
  height: 28px;
  margin-left: 5px;
}

.rt-home-one-pricing-button {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.rt-body-font-two {
  letter-spacing: 0;
}

.rt-home-one-pricing-plan {
  background-color: #1670f800;
  border: 1px solid #1670f833;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 15px;
  display: flex;
}

.rt-pricing-two-text-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.rt-heading-six-28 {
  color: #040404;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.rt-button-font-nav {
  color: #fff;
  letter-spacing: .1875rem;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5625rem;
}

.rt-pricing-two-price {
  float: none;
  clear: none;
  width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  position: static;
}

.rt-home-one-pricing-option {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding-top: 40px;
  display: grid;
}

.rt-home-one-pricing-option.rt-monthly {
  grid-template-columns: 1fr;
}

.rt-home-one-pricing-amount {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.rt-home-one-pricing-price {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  align-items: flex-end;
  margin-top: 20px;
  display: flex;
}

.rt-home-one-pricing-button-wrapper {
  background-color: var(--radiant-ui-components-library-marketplace--color--theme-color);
  cursor: pointer;
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  width: 68px;
  height: 35px;
  display: flex;
}

.rt-link-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--radiant-ui-components-library-marketplace--color--theme-color);
  border-radius: 50px;
  justify-content: flex-start;
  align-items: center;
  padding: 12px 25px;
  text-decoration: none;
  display: flex;
  box-shadow: 0 2px 40px #0000001a;
}

.rt-link-button.rt-change-display {
  background-color: var(--bg-brand);
  justify-content: center;
}

.rt-home-one-pricing-item {
  background-color: #fff;
  border-radius: 20px;
  flex: 1;
  padding: 30px;
  box-shadow: 1px 0 70px #0000000f;
}

.rt-home-one-pricing-item:hover {
  background-color: #fff0ec;
}

.rt-home-one-pricing-plan-button {
  justify-content: center;
}

.rt-home-one-pricing-icon {
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: -10px;
  padding-top: 0;
  display: flex;
}

.rt-pricing-two-banner-design-two {
  display: none;
}

.rt-auto-fit-13 {
  object-fit: cover;
  border-radius: 0%;
}

.rt-top-heading-text-2 {
  color: #64bd68;
  text-transform: uppercase;
  font-size: .9375rem;
  line-height: 1.875rem;
}

.rt-top-heading-text-2.rt-change-color-orange {
  color: var(--radiant-ui-components-library-marketplace--color--theme-color);
}

.rt-top-heading-text-2.rt-change-color-orange.rt-change-letter-spacing {
  letter-spacing: .2rem;
}

.rt-top-heading-text-2.rt-change-color-orange.rt-change-letter-spacing.rt-text-align-center {
  color: var(--bg-brand);
}

.rt-pricing-two-banner-design {
  display: none;
  position: absolute;
}

.rt-pricing-two-banner-heading {
  padding-bottom: 10px;
}

.rt-pricing-two-banner-paragraph {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.rt-position-absolute {
  position: absolute;
}

.rt-price-tag {
  color: var(--bg-brand);
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.rt-category-cards-text-4 {
  color: var(--radiant-ui-components-library-marketplace--color--heading-dark);
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 400;
  line-height: 31px;
}

.rt-margin-bottom-twenty-2 {
  margin-bottom: 20px;
}

.rt-component-container-7 {
  width: 100%;
  max-width: 1290px;
  position: relative;
}

.rt-component-section-20 {
  background-color: var(--radiant-ui-components-library-marketplace--color--white);
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  width: 100%;
  padding: 80px 15px;
  font-family: Outfit;
  font-size: 17px;
  font-weight: 300;
  line-height: 29px;
  position: relative;
}

.rt-full-width-2 {
  border-radius: 10px;
  width: 100%;
}

.rt-overflow-hidden-3 {
  overflow: hidden;
}

.rt-advertise-content-icon-wrapper-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  flex: none;
  align-items: center;
  width: 42px;
  display: flex;
}

.rt-advertise-icon-wrapper-2 {
  color: var(--radiant-ui-components-library-marketplace--color--heading-dark);
  border: 1px solid #0000004d;
  border-radius: 100%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-weight: 600;
  position: relative;
}

.rt-advertise-icon-wrapper-2.rticon-two {
  background-color: var(--radiant-ui-components-library-marketplace--color--theme-color);
}

.rt-dotted-line-2 {
  border: 1px dashed #0003;
  flex: 1;
  width: 1px;
  height: 100%;
}

.rt-advertise-image-wrapper-2 {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.rt-advertise-content-text-wrapper-2 {
  max-width: 495px;
}

.rt-border-radius-six-2 {
  border-radius: 6px;
}

.rt-advertise-content-wrapper-2 {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.rt-advertise-content-2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: stretch;
}

.rt-body-font-color-5 {
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  transition: color .35s;
}

.rt-position-relative-4 {
  position: relative;
}

.rt-category-cards-text-5 {
  color: var(--radiant-ui-components-library-marketplace--color--heading-dark);
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 400;
  line-height: 31px;
}

.rt-category-cards-text-5.rt-margin-bottom-fifteen-4 {
  margin-bottom: 15px;
}

.rt-component-container-8 {
  width: 100%;
  max-width: 1290px;
  position: relative;
}

.rt-component-section-21 {
  background-color: var(--radiant-ui-components-library-marketplace--color--white);
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  width: 100%;
  padding: 80px 15px;
  font-family: Outfit;
  font-size: 17px;
  font-weight: 300;
  line-height: 29px;
  position: relative;
}

.rt-right-paragraph {
  margin-bottom: 0;
}

.rt-feature-left {
  grid-column-gap: 90px;
  grid-row-gap: 90px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.rt-feature-left-content {
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  max-width: 330px;
  display: flex;
}

.rt-cargo {
  position: absolute;
  inset: 0% auto 0% -28%;
}

.rt-feature-right-content {
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 330px;
  display: flex;
}

.rt-left-para {
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  text-align: right;
  margin-bottom: 0;
}

.rt-feature-main-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.rt-feature-middle {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.rt-feature-overlay {
  background-image: linear-gradient(180deg, #13141400, var(--radiant-ui-components-library-marketplace--color--white));
  position: absolute;
  inset: 0%;
}

.rt-feature-right {
  grid-column-gap: 90px;
  grid-row-gap: 90px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.rt-image-overlay-box {
  position: relative;
}

.rt-body-small-text-4 {
  letter-spacing: .15625rem;
  font-size: .875rem;
  line-height: 1.375rem;
}

.rt-body-small-text-4.rt-capitalized {
  text-transform: uppercase;
  flex: none;
}

.rt-body-small-text-4.rt-capitalized.rt-feature-text-small {
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.625rem;
}

.rt-margin-bottom-fifteen-4 {
  margin-bottom: 15px;
}

.rt-body-font-color-6 {
  color: var(--radiant-ui-components-library-marketplace--color--body-font-dark);
  transition: color .35s;
}

.rt-tabs-menu-2 {
  flex-direction: column;
  flex: 0 50%;
  margin-right: 20px;
  padding-bottom: 32px;
  display: flex;
}

.rt-tabs-menu-2.rt-with-border {
  border-right: 1px solid #79797999;
  flex-basis: 40%;
  align-self: stretch;
  margin-right: 15px;
  padding-bottom: 0;
  padding-right: 50px;
}

.rt-home-one-industries-btn-block {
  margin-top: 30px;
  display: flex;
}

.rt-tabs-content-2 {
  flex: 0 50%;
  margin-left: 20px;
  overflow: visible;
}

.rt-tabs-content-2.rt-service-one-tab-content {
  flex-basis: 60%;
  margin-left: 60px;
}

.rt-home-one-hero-button-2 {
  background-color: var(--radiant-ui-components-library-marketplace--color--theme-color);
  border: 0 solid #0000;
  border-radius: 10px;
  position: relative;
}

.rt-service-one-tabs {
  justify-content: center;
  align-items: center;
  font-family: Lato, sans-serif;
  display: flex;
}

.rt-autofit-10 {
  object-fit: cover;
}

.rt-autofit-10.rt-border-radious {
  border-radius: 10px;
}

.rt-tab-link-three {
  color: var(--radiant-ui-components-library-marketplace--color--heading-dark);
  background-color: #0000;
  border-bottom: 1px solid #0000001a;
  padding-top: 30px;
  padding-bottom: 30px;
  font-size: 1.3125rem;
  font-weight: 400;
  line-height: 100%;
}

.rt-tab-link-three.w--current {
  border-bottom-style: solid;
  border-bottom-color: var(--radiant-ui-components-library-marketplace--color--theme-color);
  background-color: var(--bg-brand);
  color: var(--radiant-ui-components-library-marketplace--color--white);
  border-radius: 9px;
}

.rt-hero-button-background-2 {
  background-color: var(--radiant-ui-components-library-marketplace--color--white);
  border: 1px solid #0000;
  border-radius: 10px;
  position: absolute;
  inset: 0%;
}

.rt-button-main-6 {
  color: #060f1a;
  background-color: #0000;
  border: 1px solid #0000;
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  height: 54px;
  padding: 0 35px;
  font-size: .9375rem;
  line-height: 1rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.testimonial-stack {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-11 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card-three {
  text-align: center;
  background-color: #f5f7fa;
  padding: 64px 42px;
}

.testimonial-card-content {
  flex-direction: column;
  align-items: center;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.testimonial-card-heading {
  margin-bottom: 24px;
}

.testimonial-text-three {
  font-size: 24px;
  line-height: 32px;
}

.testimonial-info-four {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.testimonial-image {
  object-fit: cover;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-right: 16px;
}

.testimonial-image.centered {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
  margin-right: 0;
}

.testimonial-author-name-three {
  margin-bottom: 10px;
}

.features-list-2 {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.features-wrapper-two-2 {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.features-left-2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 40%;
  display: flex;
}

.features-paragraph-2 {
  margin-bottom: 24px;
}

.text-link-arrow-2 {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed-2 {
  margin-left: 2px;
  display: flex;
}

.features-right-2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  margin-bottom: -16px;
  display: flex;
}

.features-block-two-2 {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.features-image-2 {
  object-fit: cover;
  width: 80px;
  height: 80px;
  margin-right: 16px;
}

@media screen and (min-width: 1280px) {
  .section {
    background-color: #ac8e8e00;
  }

  .hero-header-component {
    margin-bottom: -100px;
  }

  .rt-category-cards-text.rt-margin-bottom-fifteen {
    font-family: Lato, sans-serif;
    font-weight: 700;
  }

  .rt-component-section {
    background-color: var(--bright-orange);
    border-radius: 15px;
    margin-left: 0;
    margin-right: 155px;
    padding-left: 15px;
    font-family: Lato, sans-serif;
  }

  .rt-home-one-progress-wrapper {
    justify-content: flex-start;
    align-items: flex-end;
  }

  .container-4 {
    background-color: #f58a6b;
    background-image: linear-gradient(270deg, #f58a6b, #ee3073);
    border-radius: 15px;
    line-height: 1.5px;
  }

  .grid {
    grid-template-areas: "Area";
  }

  .image-2 {
    vertical-align: baseline;
    display: block;
    position: absolute;
    inset: 22% -19px auto 50%;
  }

  .cell-2 {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .rt-body-font-color {
    color: var(--bg-primary);
  }

  .rt-number-img-bg-inner {
    color: var(--text-secondary);
  }

  .rt-arrow-circle-block {
    max-width: 1290px;
    margin-left: auto;
    margin-right: auto;
  }

  .column {
    background-color: #ee3073;
    border-radius: 17px;
    padding-left: 9px;
    padding-right: 0;
  }

  .columns {
    padding-left: 12px;
    padding-right: 12px;
  }

  .rt-home-one-service-bottom-block {
    justify-content: flex-start;
    align-items: center;
  }

  .rt-home-one-tab-link {
    border-radius: 8px;
  }

  .rt-heading-five-39 {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }

  .rt-button-font-nav.rt-position-absolute {
    position: absolute;
  }

  .rt-component-section-21 {
    padding-left: 30px;
    padding-right: 30px;
    font-family: Lato, sans-serif;
  }

  .rt-tab-link-three.w--current {
    background-color: var(--bg-brand);
  }

  .heading-13 {
    color: var(--bg-brand);
  }
}

@media screen and (min-width: 1440px) {
  .section {
    padding-top: 100px;
  }

  .hero-header-component {
    margin-left: 15px;
    margin-right: 15px;
  }

  .footer-top-wrapper {
    display: flex;
  }

  .team-member-image {
    width: 270px;
    height: 270px;
    max-height: none;
  }

  .rt-home-three-cta-contain-wrap {
    padding-left: 40px;
    padding-right: 40px;
  }

  .rt-component-section-14 {
    padding-bottom: 20px;
  }

  .rt-component-container-5 {
    font-family: Lato, sans-serif;
  }

  .hero-heading-center-2 {
    background-color: #f58a6b;
    background-image: linear-gradient(#f58a6b, #fff);
  }

  .centered-heading-3.margin-bottom-32px {
    color: var(--bg-brand);
    font-size: 64px;
    font-weight: 400;
  }

  .margin-bottom-24px-3 {
    color: var(--text-primary);
  }

  .button-primary-4 {
    background-color: #402260;
  }

  .hero-heading-left {
    background-color: #f1eff3;
  }

  .button-primary-5 {
    background-color: #402260;
  }

  .button-primary-5:hover {
    background-color: var(--bright-orange);
  }

  .heading-11 {
    font-size: 64px;
  }

  .heading-12 {
    color: var(--bg-brand);
  }

  .rt-tabs-menu-2 {
    margin-right: 50px;
  }

  .rt-tabs-content-2 {
    margin-left: 50px;
  }

  .heading-14, .heading-15, .heading-16, .heading-17, .testimonial-card-heading {
    color: var(--bg-brand);
  }

  .features-paragraph-2 {
    color: var(--bg-primary);
  }

  .section-5 {
    background-image: linear-gradient(#402260, #67459b);
  }

  .heading-18, .paragraph-11, .paragraph-12, .paragraph-13 {
    color: var(--bg-primary);
  }
}

@media screen and (min-width: 1920px) {
  .rt-number-img-bg-inner {
    width: 220px;
    height: 220px;
    font-size: 40px;
  }

  .rt-wrapper-image.rt-team-member-one {
    width: 30%;
  }

  .rt-wrapper-image.rt-team-member-one.rt-blank {
    width: 15%;
  }

  .rt-advertise-image-wrapper {
    border-radius: 6px;
  }

  .rt-overflow-off {
    align-self: center;
  }

  .rt-overflow-off.rt-change-margin {
    margin-left: -50px;
  }

  .rt-agent-overlay {
    display: flex;
  }

  .rt-heading-five-39 {
    letter-spacing: -.04rem;
  }

  .rt-pricing-two-banner-design-two {
    display: block;
    position: absolute;
    inset: auto -10% -10% auto;
  }

  .rt-pricing-two-banner-design {
    display: block;
    inset: auto auto -10% -10%;
  }

  .rt-advertise-image-wrapper-2 {
    border-radius: 6px;
  }

  .rt-tabs-menu-2.rt-with-border {
    flex-basis: 35%;
  }

  .rt-tabs-content-2.rt-service-one-tab-content {
    flex-basis: 65%;
  }

  .rt-tab-link-three {
    font-size: 1.5625rem;
  }

  .heading-14, .heading-15, .heading-16, .heading-17 {
    color: var(--bg-brand);
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 76px;
  }

  h2 {
    font-size: 52px;
  }

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

  .button-primary {
    justify-content: center;
  }

  .nav-menu {
    background-color: var(--bg-secondary);
    padding: 40px;
  }

  .hero-header-floating-image-wrapper {
    bottom: -12%;
    left: -2%;
  }

  .features-item-list, .pricing-components {
    grid-row-gap: 24px;
  }

  .pricing-plan {
    width: 100%;
    margin-top: 16px;
  }

  .pricing-plan.popular {
    transform: none;
  }

  .features-stack {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .footer-menu-wrapper {
    grid-column-gap: 64px;
  }

  .footer-link-list {
    min-width: 100px;
  }

  .h1 {
    font-size: 76px;
  }

  .h2 {
    font-size: 52px;
  }

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

  .nav-link {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-link.last {
    margin-bottom: 16px;
  }

  .form {
    min-width: 300px;
  }

  .menu-button {
    color: var(--text-primary);
  }

  .menu-button.w--open {
    background-color: var(--bg-primary);
    color: var(--text-secondary);
  }

  .pricing-title-wrapper {
    margin-bottom: 32px;
  }

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

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

  .features-wrapper-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .features-left {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .features-right {
    max-width: 100%;
  }

  .rt-category-cards-text.rt-text-white {
    max-width: none;
  }

  .rt-home-one-progress-text-main {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    width: 100%;
  }

  .rt-home-one-progress-text {
    width: 100%;
  }

  .rt-home-one-progress-text-item {
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .rt-home-one-progress-text-item.rt-top-mergin {
    margin-top: 0;
  }

  .rt-home-one-progress-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .rt-home-one-progress-text-wrapper {
    width: 100%;
  }

  .rt-home-one-progress-image {
    padding-top: 0;
    padding-left: 0;
  }

  .rt-home-one-progress-heading {
    max-width: 100%;
  }

  .rt-auto-fit-8.rt-radius-ten.rt-position-relative.rt-responsive-image-full-width {
    width: 100%;
    height: 100%;
  }

  .rt-home-one-client-image-background {
    display: none;
  }

  .rt-number-img-bg-inner {
    width: 150px;
    height: 150px;
    font-size: 30px;
    line-height: 40px;
  }

  .rt-arrow-img-left {
    display: none;
  }

  .rt-number-block-2 {
    grid-column-gap: 20px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }

  .rt-arrow-down-img {
    display: none;
  }

  .rt-number-text-block-outer {
    align-self: center;
    align-items: flex-start;
  }

  .rt-arrow-circle-block {
    grid-column-gap: 10px;
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
  }

  .container-5 {
    max-width: 728px;
  }

  .team-grid {
    grid-column-gap: 40px;
  }

  .team-member-image {
    width: 190px;
    height: 190px;
  }

  .container-6 {
    max-width: 728px;
  }

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .rt-large-text-marquee-text-wrap, .rt-large-text-marquee-text-wrap-2 {
    font-size: 4.6rem;
  }

  .rt-sticky.rt-tab-sticky-off {
    position: static;
  }

  .rt-team-two-work-process-block {
    height: auto;
    display: block;
  }

  .rt-service-step-info {
    padding: 2rem 6%;
  }

  .rt-team-two-process-block-left {
    max-width: 100%;
    height: auto;
    position: static;
  }

  .container-9 {
    max-width: 728px;
  }

  .hero-wrapper-2 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split-2 {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .rt-home-one-team-block {
    flex-direction: column;
    height: auto;
  }

  .rt-wrapper-image.rt-team-member-one {
    background-image: none;
    background-position: 0%;
    background-repeat: no-repeat;
    background-size: 40px;
    width: 100%;
  }

  .rt-wrapper-image.rt-team-member-one:hover {
    background-image: none;
    background-position: 0%;
    background-repeat: no-repeat;
    background-size: 40px;
  }

  .rt-wrapper-image.rt-team-member-one.rt-blank {
    width: 1%;
  }

  .rt-home-one-tab-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 0;
  }

  .rt-home-one-service-bottom-block {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .rt-home-one-tab-contain {
    width: 100%;
    max-width: none;
  }

  .rt-tab-full-width {
    width: 100%;
  }

  .rt-home-one-tab-menu {
    max-width: none;
  }

  .rt-home-one-tabe-image-block-two {
    width: 100%;
    position: static;
    transform: none;
  }

  .rt-home-one-tab-image-block-one {
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .rt-tab-description, .rt-advertise-content-text-wrapper {
    max-width: none;
  }

  .rt-advertise-content-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-direction: column;
    align-items: stretch;
  }

  .rt-autofit-3.rt-responsive-full-width-two {
    width: 100%;
    height: 100%;
  }

  .rt-accordion-main {
    max-width: 100%;
  }

  .rt-home-three-benefits-main {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-flow: column;
    align-items: stretch;
  }

  .rt-home-three-benefits-image {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .rt-home-three-benefits-text {
    min-width: 100%;
  }

  .rt-home-three-business-flex {
    grid-row-gap: 60px;
    flex-direction: column;
  }

  .rt-home-three-business-image-block {
    width: 100%;
  }

  .rt-button {
    padding: 15px 30px;
    font-size: 17px;
    line-height: 27px;
  }

  .rt-service-two-cta {
    padding-top: 62px;
    padding-bottom: 70px;
  }

  .rt-heading-three {
    font-size: 27px;
    line-height: 37px;
  }

  .rt-home-three-cta-contain-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
    align-items: flex-start;
  }

  .rt-home-three-cta-main-box {
    padding: 60px 30px 70px;
  }

  .rt-home-three-cta-contain-text-wrap, .rt-icon-content-box-content {
    max-width: none;
  }

  .rt-second-section-icon-box {
    width: 100%;
  }

  .rt-second-section-icon-hover-out.rt-one-icon-hover-out {
    transform: none;
  }

  .rt-second-icon-box-second-section {
    width: 100%;
    max-width: none;
    margin-top: 20px;
  }

  .rt-second-icon-box-section-heading {
    max-width: 100%;
    margin-bottom: 28px;
  }

  .rt-second-icon-box-first-section {
    width: 100%;
    max-width: none;
  }

  .rt-second-icon-box-image {
    width: 100%;
    height: auto;
  }

  .rt-home-three-second-icon-box-section {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    max-width: none;
    margin-top: 70px;
  }

  .rt-home-three-card-line {
    display: none;
  }

  .rt-heading-five-45.rt-home-three-power-text-block {
    max-width: none;
  }

  .rt-autofit-11.rt-white-img {
    opacity: 0;
  }

  .rt-home-three-icon-block {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-top: 40px;
    display: grid;
  }

  .container-10 {
    max-width: 728px;
  }

  .hero-wrapper-3 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split-3 {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .rt-home-one-pricing-option {
    flex-direction: column;
    grid-template-columns: 1fr 1fr;
  }

  .rt-advertise-content-text-wrapper-2 {
    max-width: none;
  }

  .rt-advertise-content-wrapper-2 {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-direction: column;
    align-items: stretch;
  }

  .rt-feature-left {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex: 1;
  }

  .rt-feature-left-content {
    justify-content: flex-start;
    align-items: flex-start;
    max-width: none;
  }

  .rtcargo-image {
    display: none;
  }

  .rt-feature-right-content {
    max-width: none;
  }

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

  .rt-feature-main-wrapper {
    justify-content: center;
    align-items: center;
  }

  .rt-feature-middle, .rt-black-ship {
    display: none;
  }

  .rt-feature-right {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex: 1;
  }

  .rt-tabs-menu-2 {
    margin-right: 0;
  }

  .rt-tabs-menu-2.rt-with-border {
    margin-right: 10px;
  }

  .rt-tabs-content-2 {
    margin-left: 0;
  }

  .rt-tabs-content-2.rt-service-one-tab-content {
    margin-left: 10px;
  }

  .rt-service-one-tabs {
    margin-top: 30px;
  }

  .rt-tab-link-three {
    margin-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .features-wrapper-two-2 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .features-left-2 {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .features-right-2 {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 22px;
  }

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

  .features-item-list {
    grid-row-gap: 16px;
  }

  .button-group {
    flex-direction: column-reverse;
    width: 100%;
  }

  .pricing-components {
    grid-row-gap: 16px;
  }

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

  .features-stack {
    grid-row-gap: 16px;
  }

  .footer-top-wrapper {
    flex-wrap: wrap;
  }

  .footer-right-wrapper {
    width: 100%;
  }

  .footer-menu-wrapper {
    grid-column-gap: 64px;
  }

  .footer-link:hover {
    color: #667085;
  }

  .h1 {
    font-size: 58px;
  }

  .h2 {
    font-size: 40px;
  }

  .h3 {
    font-size: 22px;
  }

  .card {
    width: 100%;
  }

  .features-list {
    padding: 60px 15px;
  }

  .rt-number-img-bg-inner {
    width: 100px;
    height: 100px;
    font-size: 25px;
    line-height: 35px;
  }

  .rt-number-block-2 {
    text-align: left;
    margin-top: 20px;
  }

  .rt-number-text-block-outer {
    align-self: center;
    align-items: flex-start;
  }

  .rt-arrow-circle-block {
    flex-direction: column;
  }

  .team-circles {
    padding: 60px 15px;
  }

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

  .hero-heading-center {
    padding: 60px 15px;
  }

  .rt-service-step-number-2 {
    font-size: 4rem;
  }

  .hero-heading-right {
    padding: 60px 15px;
  }

  .rt-home-one-team-block {
    clear: both;
    flex-direction: column;
    display: block;
  }

  .rt-wrapper-image.rt-team-member-one {
    flex: none;
    width: 100%;
    height: auto;
    position: static;
  }

  .rt-home-one-tab-wrap {
    height: 500px;
  }

  .rt-tab-full-width {
    width: 100%;
  }

  .rt-home-one-tabe-image-block-two {
    display: none;
  }

  .rt-autofit {
    height: auto;
  }

  .rt-home-three-benefits-image {
    grid-template-rows: auto auto;
  }

  .rt-home-three-benefits-text {
    min-width: auto;
  }

  .rt-solutions-card-icons-col {
    max-width: 14%;
  }

  .rt-button {
    padding: 12px 28px;
    font-size: 16px;
    line-height: 26px;
  }

  .rt-heading-three {
    font-size: 24px;
    line-height: 34px;
  }

  .rt-autofit-4 {
    height: auto;
  }

  .rt-icon-box-divider {
    display: none;
  }

  .rt-second-section-icon-box {
    margin-bottom: 10px;
  }

  .rt-home-three-second-icon-box-section {
    margin-top: 62px;
  }

  .rt-home-three-power-box {
    padding: 30px 20px;
  }

  .rt-heading-five-45 {
    font-size: 1.375rem;
    line-height: 2rem;
  }

  .rt-autofit-11 {
    height: auto;
  }

  .rt-home-three-icon-block {
    grid-template-columns: 1fr;
  }

  .hero-heading-center-2 {
    padding: 60px 15px;
  }

  .rt-agent-collection-grid {
    grid-template-columns: 1fr;
  }

  .hero-heading-left {
    padding: 60px 15px;
  }

  .rt-home-one-pricing-option {
    grid-template-columns: 1fr;
  }

  .rt-home-one-pricing-price {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-end;
  }

  .rt-feature-left {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
  }

  .rt-feature-left-content {
    max-width: none;
    margin-bottom: 30px;
  }

  .rt-feature-right-content {
    max-width: none;
  }

  .rt-feature-main-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .rt-feature-right {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .rt-tabs-menu-2.rt-with-border {
    border-right-style: none;
  }

  .rt-tabs-content-2.rt-service-one-tab-content {
    margin-left: 0;
  }

  .rt-service-one-tabs {
    flex-direction: column;
  }

  .rt-autofit-10 {
    height: auto;
  }

  .rt-tab-link-three {
    padding-left: 10px;
    padding-right: 10px;
  }

  .testimonial-stack {
    padding: 60px 15px;
  }

  .testimonial-text-three {
    font-size: 20px;
    line-height: 28px;
  }

  .features-list-2 {
    padding: 60px 15px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 32px;
  }

  .button-primary {
    width: 100%;
  }

  .nav-menu {
    background-color: #fff;
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-header-floating-image-wrapper {
    width: 60%;
  }

  .pricing-plan {
    margin-top: 0;
  }

  .cta-component {
    padding: 16px;
  }

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

  .h1 {
    font-size: 54px;
  }

  .h2 {
    font-size: 32px;
  }

  .footer-section {
    margin-top: 20px;
  }

  .features-item-wrapper {
    flex-direction: column;
  }

  .nav-link {
    padding-left: 0;
    padding-right: 0;
  }

  .card {
    padding: 16px;
  }

  .form {
    min-width: auto;
  }

  .text-field {
    padding-left: 16px;
  }

  .form-wrapper {
    min-width: auto;
  }

  .menu-button {
    background-color: var(--bg-primary);
  }

  .menu-button.w--open {
    background-color: var(--text-color-brand);
    color: var(--text-primary);
  }

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

  .container-3 {
    max-width: none;
  }

  .features-right {
    margin-bottom: -30px;
  }

  .features-block-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .features-image {
    margin-bottom: 10px;
  }

  .rt-home-one-progress-text-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  .rt-number-block-2 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
  }

  .rt-number-block-2.rt-number-block-revers {
    flex-direction: column-reverse;
  }

  .container-5 {
    max-width: none;
  }

  .centered-heading {
    margin-bottom: 24px;
  }

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

  .container-6 {
    max-width: none;
  }

  .centered-heading-2 {
    margin-bottom: 24px;
  }

  .rt-service-step-info {
    padding-bottom: 0;
    padding-left: 1%;
    padding-right: 1%;
  }

  .rt-service-process-step-2 {
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: block;
  }

  .rt-service-process-step-2.rt-team-two {
    display: block;
  }

  .rt-service-step-number-block-2 {
    box-shadow: none;
    justify-content: flex-start;
    margin-top: 2rem;
    margin-bottom: 0;
    overflow: visible;
  }

  .rt-service-step-process-3 {
    display: none;
  }

  .container-9 {
    max-width: none;
  }

  .rt-home-one-team-block {
    flex-direction: column;
    display: flex;
  }

  .rt-wrapper-image.rt-team-member-one, .rt-wrapper-image.rt-team-member-one:hover {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .rt-mobile-team-person-responsive {
    text-align: center;
    margin-bottom: 40px;
    display: block;
  }

  .rt-home-one-tab-wrap {
    align-items: stretch;
  }

  .rt-home-one-service-bottom-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .rt-home-one-tab-link {
    padding-left: 30px;
  }

  .rt-home-one-tabe-image-block-two {
    position: static;
    transform: none;
  }

  .rt-home-one-tab-image-block-one {
    margin-left: 0;
    transform: none;
  }

  .rt-dotted-line {
    display: none;
  }

  .rt-advertise-content {
    flex-direction: column;
  }

  .rt-home-three-benefits-image {
    width: 100%;
  }

  .rt-home-three-benefits-text {
    max-width: 100%;
  }

  .rt-left-right-effect {
    display: none;
  }

  .rt-solutions-card, .rt-solutions-card-flex {
    flex-direction: column;
  }

  .rt-solutions-card-icons-col {
    max-width: 30%;
  }

  .rt-solutions-card-caption-col {
    max-width: 100%;
  }

  .rt-button {
    padding-left: 24px;
    padding-right: 24px;
  }

  .rt-home-three-cta-contain-text-wrap {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .rt-icon-content-box-content {
    text-align: center;
  }

  .rt-icon-content-box {
    justify-content: flex-start;
    align-items: center;
  }

  .rt-second-section-icon-box.rt-two-icon-box, .rt-second-section-icon-box.rt-one-icon-box {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
  }

  .rt-second-icon-box-section-heading {
    text-align: center;
  }

  .rt-heading-five-45 {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }

  .container-10 {
    max-width: none;
  }

  .centered-heading-3 {
    margin-bottom: 24px;
  }

  .rt-heading-five-39 {
    font-size: 1rem;
  }

  .rt-heading-five-39.rt-padding-top-bottom {
    padding-top: 0;
    padding-bottom: 0;
  }

  .rt-home-one-pricing-price {
    flex-direction: row;
    align-items: flex-end;
  }

  .rt-dotted-line-2 {
    display: none;
  }

  .rt-advertise-content-2 {
    flex-direction: column;
  }

  .rt-tabs-menu-2.rt-with-border {
    margin-bottom: 30px;
  }

  .rt-service-one-tabs {
    display: block;
  }

  .container-11 {
    max-width: none;
  }

  .testimonial-card-three {
    padding-left: 24px;
    padding-right: 24px;
  }

  .testimonial-info-four {
    text-align: center;
    flex-direction: column;
  }

  .features-right-2 {
    margin-bottom: -30px;
  }

  .features-block-two-2 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .features-image-2 {
    margin-bottom: 10px;
  }
}

#w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc1f-304285fa {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc20-304285fa, #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc21-304285fa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_63b8e8f4-2c49-117b-8903-bd1ecbaf3679-304285fa {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc1f-59228d45 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc20-59228d45, #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc21-59228d45 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc1f-b8d11429 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc20-b8d11429, #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc21-b8d11429, #w-node-_2d6bf70e-d2d4-94a4-1228-b467f39aff6f-b8d11429, #w-node-_2d6bf70e-d2d4-94a4-1228-b467f39aff7a-b8d11429 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc1f-406dde65 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc20-406dde65, #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc21-406dde65 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc1f-0fa5a6ef {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc20-0fa5a6ef, #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc21-0fa5a6ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e4575814-18ae-ce9d-870f-12c10e16714b-0fa5a6ef {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc1f-6ed4b819 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc20-6ed4b819, #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc21-6ed4b819 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1440px) {
  #w-node-_2d6bf70e-d2d4-94a4-1228-b467f39aff7a-b8d11429 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (min-width: 1280px) {
  #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc20-59228d45, #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc20-b8d11429, #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc20-406dde65, #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc20-0fa5a6ef, #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc20-6ed4b819 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc1f-304285fa {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc20-304285fa, #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc21-304285fa {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_63b8e8f4-2c49-117b-8903-bd1ecbaf3679-304285fa {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_63b8e8f4-2c49-117b-8903-bd1ecbaf367a-304285fa, #w-node-_63b8e8f4-2c49-117b-8903-bd1ecbaf367b-304285fa, #w-node-_2b2dbf00-28df-7942-1b00-15dd5c237d6c-304285fa {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc1f-59228d45 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc20-59228d45, #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc21-59228d45 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc1f-b8d11429 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc20-b8d11429, #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc21-b8d11429 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc1f-406dde65 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc20-406dde65, #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc21-406dde65 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc1f-0fa5a6ef {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc20-0fa5a6ef, #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc21-0fa5a6ef {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-e4575814-18ae-ce9d-870f-12c10e16714a-0fa5a6ef {
    grid-column-end: 2;
    justify-self: stretch;
  }

  #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc1f-6ed4b819 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc20-6ed4b819, #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc21-6ed4b819 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_63b8e8f4-2c49-117b-8903-bd1ecbaf3679-304285fa {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_63b8e8f4-2c49-117b-8903-bd1ecbaf367a-304285fa, #w-node-_63b8e8f4-2c49-117b-8903-bd1ecbaf367b-304285fa, #w-node-_2b2dbf00-28df-7942-1b00-15dd5c237d6c-304285fa {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-e4575814-18ae-ce9d-870f-12c10e16714b-0fa5a6ef {
    grid-column-end: 3;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_63b8e8f4-2c49-117b-8903-bd1ecbaf3679-304285fa {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_63b8e8f4-2c49-117b-8903-bd1ecbaf367a-304285fa, #w-node-_63b8e8f4-2c49-117b-8903-bd1ecbaf367b-304285fa, #w-node-_2b2dbf00-28df-7942-1b00-15dd5c237d6c-304285fa {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Social Icons Font';
  src: url('../fonts/fa-brands-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Icons Font';
  src: url('../fonts/MaterialIconsOutlined-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}