:root {
  --white: white;
  --black: black;
}

.body {
  background-color: #f8f8f8;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  transition: transform .5s;
  display: flex;
}

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

.menu-logo {
  pointer-events: none;
  align-self: center;
  max-width: 12rem;
  margin-left: 0;
  margin-right: 0;
  transition: transform .5s;
  position: relative;
}

.menu-logo:hover {
  transform: rotate(-45deg);
}

.menu-link {
  color: #000;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  min-width: 75px;
  margin-left: 0;
  margin-right: 0;
  padding: 1rem 0;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1rem;
  transition: transform .5s, color .5s;
  display: flex;
}

.menu-link:hover {
  opacity: .7;
  color: #00091d;
  transform: translate(0, -2px);
}

.menu-link.w--current {
  color: #00091d;
}

.super-nav {
  z-index: 999;
  align-self: center;
  min-width: 100%;
  max-width: none;
  margin-top: 20px;
  position: sticky;
  top: 1rem;
}

.logo-home-link {
  display: flex;
}

.menu-button-primary {
  color: #fff;
  background-color: #00091d;
  border: 3px solid #00091d;
  border-radius: 10px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  min-width: 7rem;
  max-height: none;
  margin-left: 1rem;
  margin-right: .5rem;
  padding: .7rem 0;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1rem;
  transition: opacity .5s, transform .5s;
  display: flex;
}

.menu-button-primary:hover {
  opacity: .7;
  color: #fff;
  background-color: #00091d;
  transform: translate(0, -2px);
}

.menu-button-secondary {
  color: #00091d;
  background-color: #00091d00;
  border: 3px solid #00091d;
  border-radius: 10px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  min-width: 7rem;
  max-height: none;
  margin-left: 0;
  margin-right: 0;
  padding: .7rem 0;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1rem;
  transition: opacity .5s, transform .5s;
  display: flex;
}

.menu-button-secondary:hover {
  opacity: .7;
  color: #00091d;
  border-color: #00091d;
  transform: translate(0, -2px);
}

.hero-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-left: 1rem;
  margin-right: 1rem;
  padding-top: 15rem;
  display: flex;
}

.heading-1 {
  color: #fff;
  margin-top: 0;
  font-family: Outfit, sans-serif;
  font-size: 4rem;
  line-height: 5rem;
}

.heading-1.center {
  color: #202020;
  text-align: center;
  margin-top: 0;
  font-family: Montserrat, sans-serif;
  font-size: 4rem;
  line-height: 5rem;
}

.grey-text {
  color: #666b77;
}

.body-text {
  color: #202020;
  padding-left: 0;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
}

.body-text.center {
  color: #202020;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.body-text.bold {
  font-weight: 700;
}

.body-text.dark-blue {
  color: #00091d;
}

.div-buttons {
  flex-direction: row;
  max-width: 25rem;
  margin-top: 1rem;
  display: flex;
}

.bold-text {
  font-weight: 700;
}

.primary-button {
  color: #fefefe;
  background-color: #546fd4;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 7rem;
  margin-left: .25rem;
  margin-right: .25rem;
  padding: .7rem 1rem;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1rem;
  transition: transform .5s, opacity .5s;
  display: flex;
}

.primary-button:hover {
  opacity: .7;
  transform: translate(0, -2px);
}

.primary-button.padding {
  margin-top: 1rem;
  padding-left: .7rem;
  padding-right: .7rem;
}

.div-body-text {
  flex-direction: column;
  align-items: center;
  max-width: 35rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
}

.secondary-button {
  color: #202020;
  background-color: #d9d9d9;
  border: 3px #7475d2;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 7rem;
  margin-left: .25rem;
  margin-right: .25rem;
  padding: .7rem 1rem;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1rem;
  transition: transform .5s, opacity .5s;
  display: flex;
}

.secondary-button:hover {
  opacity: .7;
  transform: translate(0, -2px);
}

.secondary-button.padding {
  justify-content: center;
  align-items: center;
  min-width: auto;
  margin-top: 0;
  display: flex;
}

.trust-icon-section {
  margin-left: 1rem;
  margin-right: 1rem;
}

.trust-item {
  display: flex;
}

.tick {
  max-width: 1.5rem;
  margin-right: .5rem;
}

.work-section {
  min-width: 60rem;
  max-width: 60rem;
  margin-top: 0;
  padding-top: 8rem;
}

.heading-2 {
  color: #202020;
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: Montserrat, sans-serif;
  font-size: 2.5rem;
  line-height: 2.5rem;
}

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

.about-me-div {
  background-color: #202839;
  border-radius: 1rem;
  margin-top: 0;
  margin-bottom: 0;
  padding: 3rem 2rem;
}

.work-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 1.5rem;
  display: grid;
}

.work-card {
  transition: opacity .3s, transform .3s;
}

.work-card:hover {
  opacity: .8;
  transform: skew(.7deg, .7deg);
}

.work-image {
  margin-bottom: 1rem;
}

.work-link {
  align-items: center;
  display: flex;
}

.arrow {
  max-width: 100%;
  max-height: .75rem;
  margin-left: .25rem;
}

.about-section {
  min-width: 60rem;
  max-width: 60rem;
  margin-top: 1rem;
}

.skills-section {
  min-width: 60rem;
  max-width: 60rem;
  margin-top: 0;
  padding-top: 8rem;
}

.list-item {
  color: #fff;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
}

.list {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  margin-bottom: 2rem;
  margin-left: .25rem;
  display: flex;
}

.expandable-box-trigger {
  justify-content: space-between;
  align-items: center;
  margin-top: .5rem;
  margin-bottom: .5rem;
  display: flex;
}

.blog-section {
  max-width: 60rem;
  margin-top: 0;
  padding-top: 8rem;
}

.blog-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  display: grid;
}

.blog-link {
  color: #fff;
  text-decoration: none;
}

.blog-card {
  transition: opacity .3s, transform .3s;
}

.blog-card:hover {
  opacity: .8;
  transform: skew(.7deg, .7deg);
}

.blog-image {
  margin-bottom: 1rem;
}

.blog-date {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.work-with-me-section {
  min-width: 60rem;
  max-width: 60rem;
  margin-top: 8rem;
  padding-top: 0;
}

.social-media-icon {
  max-width: 2rem;
  margin-right: .5rem;
  padding-top: 1rem;
  transition: transform .5s, opacity .5s;
}

.social-media-icon:hover {
  opacity: .7;
  transform: translate(0, -2px);
}

.email-list-section {
  background-color: #202839;
  justify-content: center;
  min-width: 100%;
  max-width: none;
  margin-top: 8rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
}

.email-list-div {
  min-width: 60rem;
  max-width: 60rem;
}

.field-label {
  color: #fff;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.text-field {
  border: 3px solid #7475d2;
  border-radius: .5rem;
  margin-bottom: 0;
  margin-right: .5rem;
  padding: 1.2rem 1rem;
}

.email-form-div {
  max-width: 30rem;
  margin-bottom: .5rem;
  display: flex;
}

.submit-button {
  color: #000;
  background-color: #7475d2;
  border-radius: .5rem;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  transition: transform .5s, opacity .5s;
}

.submit-button:hover {
  opacity: .7;
  transform: translate(0, -2px);
}

.email-form {
  margin-top: 1rem;
}

.footer-section {
  background-color: #7475d2;
  justify-content: center;
  min-width: 100%;
  max-width: none;
  margin-top: 0;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
}

.footer-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center;
  place-items: center;
  min-width: 60rem;
  max-width: 60rem;
  margin-bottom: 6rem;
  display: grid;
}

.footer-div {
  min-width: 60rem;
  max-width: 60rem;
}

.footer-right-col {
  justify-content: flex-end;
  align-items: flex-start;
  min-width: 100%;
  display: flex;
}

.footer-button-primary {
  color: #fff;
  background-color: #00091d;
  border: 3px solid #00091d;
  border-radius: 10px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  min-width: 7rem;
  max-height: none;
  margin-left: 0;
  margin-right: .5rem;
  padding: .7rem 0;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1rem;
  transition: opacity .5s, transform .5s;
  display: flex;
}

.footer-button-primary:hover {
  opacity: .7;
  color: #fff;
  background-color: #00091d;
  transform: translate(0, -2px);
}

.footer-link {
  color: #00091d;
  background-color: #00091d00;
  border: 3px #00091d;
  border-radius: 10px;
  flex-wrap: nowrap;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  min-width: auto;
  max-height: none;
  margin-left: 0;
  margin-right: 1.5rem;
  padding: 0 0;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1rem;
  transition: opacity .5s, transform .5s;
  display: block;
}

.footer-link:hover {
  opacity: .7;
  color: #00091d;
  background-color: #00091d00;
  transform: translate(0, -2px);
}

.footer-link-div {
  display: flex;
}

.text-link-div {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.text-link {
  color: #fff;
  -webkit-text-stroke-color: #3f3f3f;
  background-color: #00091d00;
  border: 3px #00091d;
  border-radius: 10px;
  flex-wrap: nowrap;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  min-width: auto;
  max-height: none;
  margin-left: 0;
  margin-right: 0;
  padding: 0 0;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1rem;
  text-decoration: underline;
  transition: opacity .5s, transform .5s;
  display: flex;
}

.text-link:hover {
  opacity: .7;
  color: #fff;
  background-color: #00091d00;
  transform: translate(0, -2px);
}

.navigation-bar {
  background-color: #7475d2;
  border-radius: 1rem;
  justify-content: center;
  margin-bottom: 0;
  margin-left: 1rem;
  margin-right: 1rem;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.menu-right-column {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.mobile-menu-link {
  color: #00091d;
  background-color: #00091d00;
  border: 3px #00091d;
  border-radius: 10px;
  flex-wrap: nowrap;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  min-width: auto;
  max-height: none;
  margin-left: 0;
  margin-right: 1.5rem;
  padding: 0 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1rem;
  transition: opacity .5s, transform .5s;
  display: block;
}

.mobile-menu-link:hover {
  opacity: .7;
  color: #00091d;
  background-color: #00091d00;
  transform: translate(0, -2px);
}

.mobile-button-secondary {
  color: #00091d;
  background-color: #00091d00;
  border: 3px solid #00091d;
  border-radius: 10px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  min-width: 7rem;
  max-height: none;
  margin-left: 0;
  margin-right: 0;
  padding: .7rem 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1rem;
  transition: opacity .5s, transform .5s;
  display: flex;
}

.mobile-button-secondary:hover {
  opacity: .7;
  color: #00091d;
  border-color: #00091d;
  transform: translate(0, -2px);
}

.menu_line {
  background-color: #ededed;
  width: 16px;
  height: 2px;
}

.haburger-menu-icon {
  grid-row-gap: 4px;
  cursor: pointer;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 8px;
  transition: background-color .2s;
  display: flex;
}

.haburger-menu-icon:hover {
  background-color: #1a1d22;
  align-items: center;
}

.trust-icon-div-2 {
  border-radius: 1rem;
  margin-top: 0;
}

.carousel-container {
  border-radius: 1rem;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
}

.logo-container {
  background-color: #202839;
  border-radius: 0;
  justify-content: space-around;
  min-width: 100.1%;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.logo-container._2 {
  margin-left: -.1%;
}

.mobile-nav-div {
  flex: 1;
  padding-left: 5rem;
  padding-right: 5rem;
}

.navigation-grid {
  grid-column-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  align-items: center;
  display: grid;
}

.mobile-navigation-bar {
  display: none;
}

.mobile-nav-container {
  justify-content: space-between;
  align-self: center;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.logo {
  width: 2.25rem;
  height: 2.5rem;
}

.nav-menu {
  justify-content: flex-end;
  display: flex;
}

.mobile-button-primary {
  color: #fff;
  background-color: #00091d;
  border: 3px solid #00091d;
  border-radius: 10px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  min-width: 7rem;
  max-height: none;
  margin-left: 0;
  margin-right: .5rem;
  padding: .7rem 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1rem;
  transition: opacity .5s, transform .5s;
  display: flex;
}

.mobile-button-primary:hover {
  opacity: .7;
  color: #fff;
  background-color: #00091d;
  transform: translate(0, -2px);
}

.logo-wrapper {
  flex: 1;
}

.logo-wrapper.mobile-menu {
  display: none;
}

.expandable-box {
  background-color: #00091d;
  border-top: 2px #000;
  border-radius: 20px;
  margin-top: .75rem;
  margin-bottom: 0;
  padding: 1rem 2rem;
  transition: transform .5s;
}

.expandable-box:hover {
  transform: scale(1.02);
}

.expandable-box-animation {
  justify-content: space-between;
  align-items: center;
  margin-top: .5rem;
  margin-bottom: .5rem;
  text-decoration: none;
  display: flex;
}

.expandable-box-heading {
  align-items: center;
  padding: 0;
  display: flex;
}

.expandable-box-heading:active, .expandable-box-heading:focus {
  border: 3px #fff;
  border-radius: 10px;
}

.expandable-box-heading:focus-visible, .expandable-box-heading[data-wf-focus-visible] {
  border-style: solid;
}

.expandable-box-icon {
  max-width: 2rem;
  max-height: 2rem;
  margin-right: .5rem;
}

.expandable-box-content {
  margin-top: 0;
  margin-right: 0;
  overflow: hidden;
}

.blog-hero-section {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 40rem;
  height: auto;
  margin-top: 8rem;
  margin-left: 1rem;
  margin-right: 1rem;
  display: flex;
}

.blog-main-image {
  min-width: 100%;
  margin-top: 1rem;
}

.blog-content-section {
  min-width: 40rem;
  max-width: 40rem;
  margin-top: 8rem;
  padding-top: 0;
}

.skip-link {
  color: #fff;
  border: 2px #fff;
  border-radius: 3px;
  margin-top: -1.1rem;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1rem;
}

.skip-link:focus-visible, .skip-link[data-wf-focus-visible] {
  border: 2px solid #fff;
  border-radius: 5px;
  margin-top: 0;
}

.blog-content-image {
  border-radius: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

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

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

.arrow-icon.accordion-icon {
  color: #fff9;
  cursor: pointer;
  max-width: 15px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 32px;
  line-height: 30px;
}

.button_text-small {
  color: #8b86e6;
  padding-top: .1rem;
  padding-bottom: .09rem;
  font-size: .88rem;
  font-weight: 400;
}

.button_text-small.hide-tablet {
  color: #8b86e6;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.portfolio_image-overlay-layer {
  z-index: 0;
  background-color: #fff0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.icon-1x1-small {
  color: #8b86e6;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.button {
  z-index: 0;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #61d180b3;
  border: 2px solid #61d180b3;
  border-radius: .5rem;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  position: relative;
}

.button.is-portfolio {
  z-index: 1;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: #202839;
  border-style: solid;
  border-color: #8b86e6;
  border-radius: 10px;
  align-items: center;
  padding-top: .88rem;
  padding-bottom: .88rem;
  display: flex;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.portfolio_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  object-fit: fill;
  background-color: #00091d;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  place-items: stretch center;
  margin-top: 8rem;
  display: grid;
}

.portfolio_image {
  width: 100%;
  height: auto;
}

.portfolio_item {
  z-index: 0;
  cursor: pointer;
  border-radius: .5rem;
  width: 32vw;
  height: 21vw;
  position: relative;
  overflow: hidden;
}

.portfolio_item.hide-tablet {
  display: block;
}

.portfolio_list-wrapper {
  justify-content: center;
  align-items: center;
  margin-left: 5vw;
  display: flex;
}

.portfolio_component {
  background-color: #14141400;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

.portfolio_list-2 {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  background-color: #00091d;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-items: center;
  display: grid;
}

.portfolio-images {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.portfolio-image {
  border-radius: 1rem;
}

.portfilio-image-section {
  max-width: 60rem;
  margin-top: 8rem;
  display: block;
}

.progress-bar {
  z-index: 1000;
  transform-origin: 0%;
  background-color: #7475d2;
  height: .4rem;
  position: fixed;
  inset: 0% 0% auto;
}

.chain-image {
  margin-top: 0;
}

.image-section {
  margin-top: 15rem;
}

.menu-section {
  background-color: #fefefe;
  justify-content: space-between;
  align-items: center;
  min-width: 100%;
  height: 5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  position: fixed;
}

.pricing-section {
  background-color: #fefefe;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10rem 2rem 15rem;
  display: flex;
}

.price-heading {
  color: #fff;
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Outfit, sans-serif;
  font-size: 40px;
  font-weight: 700;
}

.feature-item-2 {
  color: #fff;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 400;
}

.wpp-col-no-button {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #202839;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 480px;
  margin-top: 10px;
  padding: 20px 1rem;
  text-decoration: none;
  display: flex;
  box-shadow: 0 4px 130px #96a3b51f;
}

.icon-7 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.heading-3 {
  color: #202020;
  text-align: left;
  align-self: center;
  margin: 5px 5px 10px 0;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  display: flex;
  position: static;
}

.heading-3.purple {
  color: #7475d2;
  margin-bottom: 10px;
}

.heading-3.blue {
  color: #00091d;
}

.body-text-2 {
  color: #fff;
  font-family: Roboto, sans-serif;
  font-size: 14px;
}

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

.name {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.wpp-col-mp-no-button {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #7475d2;
  border-radius: 10px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: 260px;
  max-width: 270px;
  height: 500px;
  padding: 32px 0;
  text-decoration: none;
  display: flex;
  box-shadow: 0 4px 130px #96a3b51f;
}

.pricing-grid-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 990px;
  margin-top: 50px;
  margin-bottom: 50px;
  display: grid;
}

.pricing-feature-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 210px;
  display: flex;
}

.pricing-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  margin-top: 0;
  margin-bottom: 10px;
  display: flex;
}

.description {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.intro {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.icon-wrapper-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.features {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.pricing-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 60rem;
  height: auto;
  margin-top: 5rem;
  display: grid;
}

.pricing-card {
  background-color: #f8f8f8;
  border: 1px solid #202020;
  border-radius: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 2rem;
  display: flex;
}

.pricing-div {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-start;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: .5rem;
  display: flex;
}

.heading-2-copy {
  color: #202020;
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: Montserrat, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5rem;
}

.heading-2-copy.center {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.5rem;
}

.heading-2-copy.center.no-padding {
  margin-bottom: 0;
}

.heading-2-copy.center.no-padding.left {
  text-align: left;
}

.div-block {
  background-color: #99aae5;
  justify-content: center;
  align-items: center;
  max-width: none;
  max-height: none;
  display: flex;
  position: absolute;
}

.how-work-section {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 8rem 2rem 10rem;
  display: flex;
}

.how-work-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 90rem;
  margin-top: 5rem;
  margin-bottom: 10rem;
  display: grid;
}

.how-works-div {
  flex-flow: column;
  display: flex;
}

.how-work-heading {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: .5rem;
  display: flex;
}

.cta-card {
  background-color: #fefefe;
  border: 1px solid #202020;
  border-radius: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  display: flex;
}

.footer {
  border-top: 1px solid #202020;
  justify-content: space-between;
  align-items: center;
  min-width: 100%;
  min-height: 5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
}

.footer-logo {
  pointer-events: none;
  align-self: center;
  max-width: 8rem;
  margin-left: 0;
  margin-right: 0;
  transition: transform .5s;
  position: relative;
}

.footer-logo:hover {
  transform: rotate(-45deg);
}

.image {
  display: none;
}

.bullet {
  max-width: 1rem;
}

@media screen and (max-width: 991px) {
  .menu {
    grid-template-columns: .25fr 1fr;
  }

  .menu-logo {
    max-width: 8rem;
  }

  .super-nav {
    align-self: stretch;
  }

  .trust-icon-section {
    max-width: 100%;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .work-section {
    min-width: 0;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .heading-2.center {
    line-height: 3rem;
  }

  .about-section, .skills-section {
    min-width: 0;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .blog-section {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .blog-link {
    color: #fff;
    text-decoration: none;
  }

  .work-with-me-section {
    min-width: auto;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .email-list-section {
    justify-content: flex-start;
    margin-left: 1rem;
    margin-right: 1rem;
    padding-left: 1rem;
  }

  .email-list-div {
    min-width: 0;
  }

  .footer-section {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .footer-grid {
    grid-template-rows: auto;
    min-width: 0;
  }

  .footer-div {
    min-width: 0;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .navigation-bar {
    display: block;
  }

  .mobile-navigation-bar {
    display: none;
  }

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

  .menu-button-2 {
    margin-right: -20px;
    padding: 2px 0 0;
  }

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

  .expandable-box {
    text-align: left;
  }

  .expandable-box-content {
    margin-right: 0;
  }

  .blog-content-section {
    min-width: auto;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .skip-link {
    display: none;
  }

  .arrow-icon.accordion-icon {
    max-width: 15px;
  }

  .button.is-portfolio {
    display: flex;
  }

  .portfolio_list {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }

  .portfolio_item {
    width: 55vw;
    height: 36vw;
  }

  .portfolio_item.hide-tablet {
    position: relative;
  }

  .portfolio_list-wrapper {
    display: none;
  }

  .portfolio_list-2 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }

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

  .portfolio-image {
    border-radius: 1rem;
  }

  .portfilio-image-section {
    margin-top: 8rem;
    margin-left: 1rem;
    margin-right: 1rem;
    display: block;
  }

  .pricing-section {
    padding-bottom: 10rem;
  }

  .wpp-col-no-button {
    height: 540px;
  }

  .heading-3 {
    padding-top: 0;
    font-size: 20px;
    line-height: 24px;
  }

  .wpp-col-mp-no-button {
    min-width: 180px;
    max-width: none;
    height: 560px;
  }

  .pricing-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    max-width: 30rem;
  }

  .heading-2-copy {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }

  .how-work-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .footer-logo {
    max-width: 6rem;
  }
}

@media screen and (max-width: 767px) {
  .menu-logo {
    max-width: 8rem;
  }

  .super-nav {
    margin-top: 0;
    position: sticky;
    top: 0;
  }

  .hero-section {
    height: 40rem;
  }

  .heading-1, .heading-1.center {
    font-size: 3rem;
    line-height: 4rem;
  }

  .trust-icon-section {
    max-width: 94%;
  }

  .work-section {
    margin-top: 0;
    padding-top: 5.5rem;
  }

  .heading-2 {
    line-height: 3rem;
  }

  .about-me-div {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .about-section {
    margin-top: 1rem;
  }

  .skills-section, .blog-section {
    margin-top: 0;
    padding-top: 5.5rem;
  }

  .blog-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .work-with-me-section {
    margin-top: 5.5rem;
  }

  .email-list-section {
    margin-top: 5.5rem;
    padding-left: 0;
  }

  .email-list-div {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .text-link-div {
    flex-direction: column;
    align-items: flex-start;
  }

  .navigation-bar {
    display: none;
  }

  .mobile-menu-link {
    margin-right: 0;
  }

  .haburger-menu-icon:hover {
    background-color: #00091d;
  }

  .logo-container {
    min-width: 150%;
  }

  .mobile-nav-div {
    background-color: #7475d2;
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .navigation-grid {
    grid-row-gap: 2rem;
    grid-template-rows: auto auto auto auto auto;
    grid-auto-flow: row;
    padding-left: .5rem;
  }

  .mobile-navigation-bar {
    z-index: 999;
    background-color: #ddd0;
    border-radius: 0;
    height: 4.75rem;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    display: block;
    position: static;
    inset: 0% 0% auto;
  }

  .mobile-nav-container {
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .mobile-navigation-content {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: #7475d200;
    border-top: 0 solid #000;
    border-radius: 0 0 1rem 1rem;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .logo, .logo.w--current {
    padding-left: 0;
  }

  .nav-menu {
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    background-color: #7475d2;
    border-right: 1px solid #00000014;
    flex-direction: column;
    justify-content: space-between;
    width: 18rem;
    height: 100vh;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 1rem 4rem 1rem 2rem;
  }

  .menu-icon-2 {
    width: 100%;
    height: 0;
  }

  .menu-button-2 {
    margin-right: 0;
    padding: 0;
  }

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

  .mobile-button-primary {
    margin-bottom: 1rem;
    margin-right: 0;
  }

  .logo-wrapper {
    display: flex;
  }

  .logo-wrapper.mobile-menu {
    margin-bottom: 5rem;
    display: flex;
  }

  .expandable-box-content {
    margin-right: 0;
  }

  .blog-hero-section {
    max-width: none;
    height: auto;
  }

  .blog-content-section {
    margin-top: 5.5rem;
  }

  .link-block {
    color: #fff;
    text-decoration: none;
  }

  .arrow-icon.accordion-icon {
    padding-top: 0;
  }

  .button.is-portfolio {
    padding: .5rem 1rem;
    inset: auto auto 0% 0%;
    transform: translate(10%, -10%);
  }

  .portfolio_list, .portfolio_list-2 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .portfilio-image-section {
    margin-top: 5.5rem;
  }

  .progress-bar {
    background-color: #fff;
    border: 0 solid #00091d;
    top: 5.8rem;
  }

  .feature-item-2 {
    font-size: 14px;
  }

  .wpp-col-no-button {
    max-width: none;
    height: 500px;
    margin-top: 0;
  }

  .heading-3 {
    text-align: left;
    margin-top: 10px;
    margin-left: 0;
    font-size: 20px;
    line-height: 24px;
  }

  .body-text-2 {
    text-align: left;
  }

  .wpp-col-mp-no-button {
    height: 500px;
  }

  .pricing-grid-2 {
    grid-template-columns: 1fr;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .pricing-feature-2 {
    min-width: 300px;
    max-width: 300px;
  }

  .heading-2-copy {
    line-height: 3rem;
  }

  .footer-logo {
    max-width: 6rem;
  }
}

@media screen and (max-width: 479px) {
  .menu {
    margin-bottom: 50px;
  }

  .menu-logo {
    max-width: 8rem;
    margin-top: 6px;
  }

  .hero-section {
    height: 40rem;
  }

  .heading-1 {
    margin-top: 0;
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .heading-1.center {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .div-buttons {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: column;
  }

  .primary-button {
    line-height: 1.5rem;
  }

  .secondary-button {
    display: none;
  }

  .trust-icon-section {
    max-width: 100%;
  }

  .heading-2.center {
    font-size: 2rem;
    line-height: 2.5rem;
  }

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

  .list {
    padding-left: 0;
  }

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

  .footer-right-col {
    justify-content: flex-start;
  }

  .navigation-bar {
    overflow: hidden;
  }

  .carousel-container {
    border-radius: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .logo-container {
    min-width: 300%;
  }

  .mobile-nav-div {
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
  }

  .navigation-grid {
    grid-column-gap: 2.5rem;
  }

  .mobile-navigation-content {
    border-top-width: 0;
    padding-top: 0;
  }

  .nav-menu {
    width: 14rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .logo-wrapper.mobile-menu {
    margin-bottom: 3rem;
  }

  .expandable-box {
    padding-left: 20px;
    padding-right: 20px;
  }

  .blog-hero-section {
    max-width: none;
    height: auto;
    margin-top: 4rem;
  }

  .arrow-icon.accordion-icon {
    max-width: 15px;
    padding-top: 0;
  }

  .button.is-portfolio {
    padding: .5rem 1rem;
  }

  .portfolio_list {
    grid-template-columns: 1fr;
    min-width: auto;
  }

  .portfolio_item, .portfolio_item.hide-tablet {
    width: 80vw;
    height: 50vw;
  }

  .portfolio_list-wrapper {
    justify-content: center;
    min-width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .portfolio_component {
    min-width: auto;
  }

  .portfolio_list-2 {
    grid-template-columns: 1fr;
    min-width: auto;
  }

  .portfolio-images {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .progress-bar {
    top: 5.2rem;
  }

  .feature-item-2 {
    font-size: 14px;
  }

  .wpp-col-no-button {
    max-width: 100%;
  }

  .heading-3 {
    text-align: left;
    flex: 1;
    padding-right: 0;
    font-size: 20px;
    line-height: 24px;
    display: block;
    position: static;
  }

  .wpp-col-mp-no-button {
    min-width: 0;
    max-width: 100%;
    height: 500px;
  }

  .pricing-feature-2 {
    justify-content: space-between;
    min-width: auto;
    max-width: none;
  }

  .features {
    align-items: center;
  }

  .pricing-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .heading-2-copy {
    line-height: 2rem;
  }

  .how-work-grid {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .footer {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: column;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .footer-logo {
    max-width: 8rem;
    margin-top: 6px;
  }

  .image {
    max-width: 1.8rem;
    display: block;
  }
}

#w-node-_28ec98b0-3b4e-e59e-4071-faf3a4b1995c-f14dbd2e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28ec98b0-3b4e-e59e-4071-faf3a4b1995f-f14dbd2e {
  align-self: center;
}

#w-node-_28ec98b0-3b4e-e59e-4071-faf3a4b1997e-f14dbd2e, #w-node-_8cb15221-df6d-f561-370c-2572512a6318-f14dbd2e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_92a4cdf5-ccf3-c4dd-f0e6-fe31565df3e4-f14dbd2e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start center;
}

#w-node-_271a28f4-1266-e8fb-2d2a-57238fe37496-f14dbd2f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_271a28f4-1266-e8fb-2d2a-57238fe37499-f14dbd2f {
  align-self: center;
}

#w-node-_271a28f4-1266-e8fb-2d2a-57238fe374b8-f14dbd2f, #w-node-_8cb15221-df6d-f561-370c-2572512a6318-f14dbd2f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_92a4cdf5-ccf3-c4dd-f0e6-fe31565df3e4-f14dbd2f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start center;
}

#w-node-_99baf3b4-58cb-9504-e0ad-a0d233fabcd4-f14dbd30 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_99baf3b4-58cb-9504-e0ad-a0d233fabcd7-f14dbd30 {
  align-self: center;
}

#w-node-_99baf3b4-58cb-9504-e0ad-a0d233fabcf6-f14dbd30, #w-node-_8cb15221-df6d-f561-370c-2572512a6318-f14dbd30 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_92a4cdf5-ccf3-c4dd-f0e6-fe31565df3e4-f14dbd30 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start center;
}

#w-node-_53b55bca-f346-6454-f582-13d86de65664-f14dbd32 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_53b55bca-f346-6454-f582-13d86de65667-f14dbd32 {
  align-self: center;
}

#w-node-_53b55bca-f346-6454-f582-13d86de65686-f14dbd32, #w-node-_8cb15221-df6d-f561-370c-2572512a6318-f14dbd32 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_92a4cdf5-ccf3-c4dd-f0e6-fe31565df3e4-f14dbd32 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start center;
}

#w-node-_42626cac-3132-10e2-51ef-178fa780ca19-f14dbd33 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_42626cac-3132-10e2-51ef-178fa780ca1c-f14dbd33 {
  align-self: center;
}

#w-node-_42626cac-3132-10e2-51ef-178fa780ca3b-f14dbd33, #w-node-_8cb15221-df6d-f561-370c-2572512a6318-f14dbd33 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_92a4cdf5-ccf3-c4dd-f0e6-fe31565df3e4-f14dbd33 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start center;
}

#w-node-_7c2aece4-d018-9ab5-5979-8352272eb66a-f14dbd34 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7c2aece4-d018-9ab5-5979-8352272eb66d-f14dbd34 {
  align-self: center;
}

#w-node-_7c2aece4-d018-9ab5-5979-8352272eb68c-f14dbd34, #w-node-_8cb15221-df6d-f561-370c-2572512a6318-f14dbd34 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_92a4cdf5-ccf3-c4dd-f0e6-fe31565df3e4-f14dbd34 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start center;
}

#w-node-a2b4f9d9-b704-e4f3-31c5-ef98ddc81dfa-f14dbd35 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a2b4f9d9-b704-e4f3-31c5-ef98ddc81dfd-f14dbd35 {
  align-self: center;
}

#w-node-a2b4f9d9-b704-e4f3-31c5-ef98ddc81e1c-f14dbd35, #w-node-_8cb15221-df6d-f561-370c-2572512a6318-f14dbd35 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_92a4cdf5-ccf3-c4dd-f0e6-fe31565df3e4-f14dbd35 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start center;
}

#w-node-_3e1e48c6-95ff-8a4c-6a6b-fdaae4a9a1ab-f14dbd36 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3e1e48c6-95ff-8a4c-6a6b-fdaae4a9a1ae-f14dbd36 {
  align-self: center;
}

#w-node-_3e1e48c6-95ff-8a4c-6a6b-fdaae4a9a1cd-f14dbd36, #w-node-_8cb15221-df6d-f561-370c-2572512a6318-f14dbd36 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_92a4cdf5-ccf3-c4dd-f0e6-fe31565df3e4-f14dbd36 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start center;
}

#w-node-_8a12abdf-1cfb-a247-5617-4b9830984798-f14dbd37 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8a12abdf-1cfb-a247-5617-4b983098479b-f14dbd37 {
  align-self: center;
}

#w-node-_8a12abdf-1cfb-a247-5617-4b98309847ba-f14dbd37, #w-node-ff9196cf-a68a-53ab-7f2d-8896a273145c-f14dbd37 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff9196cf-a68a-53ab-7f2d-8896a2731467-f14dbd37 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start center;
}

#w-node-f6d77c44-2dc0-5ffe-0fd5-a69bb2fdf9a9-f14dbd38 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f6d77c44-2dc0-5ffe-0fd5-a69bb2fdf9ac-f14dbd38 {
  align-self: center;
}

#w-node-f6d77c44-2dc0-5ffe-0fd5-a69bb2fdf9cb-f14dbd38, #w-node-_8cb15221-df6d-f561-370c-2572512a6318-f14dbd38 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_92a4cdf5-ccf3-c4dd-f0e6-fe31565df3e4-f14dbd38 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start center;
}

#w-node-_7a4bdf43-679c-e62d-e2b5-3ab3cdf02c60-f14dbd3a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7a4bdf43-679c-e62d-e2b5-3ab3cdf02c63-f14dbd3a {
  align-self: center;
}

#w-node-_7a4bdf43-679c-e62d-e2b5-3ab3cdf02c82-f14dbd3a, #w-node-_8cb15221-df6d-f561-370c-2572512a6318-f14dbd3a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_92a4cdf5-ccf3-c4dd-f0e6-fe31565df3e4-f14dbd3a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start center;
}

#w-node-f6d77c44-2dc0-5ffe-0fd5-a69bb2fdf9a9-f14dbd3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f6d77c44-2dc0-5ffe-0fd5-a69bb2fdf9ac-f14dbd3b {
  align-self: center;
}

#w-node-f6d77c44-2dc0-5ffe-0fd5-a69bb2fdf9cb-f14dbd3b, #w-node-_8cb15221-df6d-f561-370c-2572512a6318-f14dbd3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_92a4cdf5-ccf3-c4dd-f0e6-fe31565df3e4-f14dbd3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start center;
}

@media screen and (max-width: 991px) {
  #w-node-_28ec98b0-3b4e-e59e-4071-faf3a4b1995f-f14dbd2e, #w-node-_271a28f4-1266-e8fb-2d2a-57238fe37499-f14dbd2f, #w-node-_99baf3b4-58cb-9504-e0ad-a0d233fabcd7-f14dbd30, #w-node-_53b55bca-f346-6454-f582-13d86de65667-f14dbd32, #w-node-_42626cac-3132-10e2-51ef-178fa780ca1c-f14dbd33, #w-node-_7c2aece4-d018-9ab5-5979-8352272eb66d-f14dbd34, #w-node-a2b4f9d9-b704-e4f3-31c5-ef98ddc81dfd-f14dbd35, #w-node-_3e1e48c6-95ff-8a4c-6a6b-fdaae4a9a1ae-f14dbd36, #w-node-_8a12abdf-1cfb-a247-5617-4b983098479b-f14dbd37, #w-node-f6d77c44-2dc0-5ffe-0fd5-a69bb2fdf9ac-f14dbd38, #w-node-_7a4bdf43-679c-e62d-e2b5-3ab3cdf02c63-f14dbd3a, #w-node-f6d77c44-2dc0-5ffe-0fd5-a69bb2fdf9ac-f14dbd3b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_28ec98b0-3b4e-e59e-4071-faf3a4b19976-f14dbd2e, #w-node-_28ec98b0-3b4e-e59e-4071-faf3a4b19978-f14dbd2e, #w-node-_28ec98b0-3b4e-e59e-4071-faf3a4b1997a-f14dbd2e, #w-node-_28ec98b0-3b4e-e59e-4071-faf3a4b1997c-f14dbd2e {
    place-self: center start;
  }

  #w-node-_28ec98b0-3b4e-e59e-4071-faf3a4b1997e-f14dbd2e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_271a28f4-1266-e8fb-2d2a-57238fe374b0-f14dbd2f, #w-node-_271a28f4-1266-e8fb-2d2a-57238fe374b2-f14dbd2f, #w-node-_271a28f4-1266-e8fb-2d2a-57238fe374b4-f14dbd2f, #w-node-_271a28f4-1266-e8fb-2d2a-57238fe374b6-f14dbd2f {
    place-self: center start;
  }

  #w-node-_271a28f4-1266-e8fb-2d2a-57238fe374b8-f14dbd2f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_99baf3b4-58cb-9504-e0ad-a0d233fabcee-f14dbd30, #w-node-_99baf3b4-58cb-9504-e0ad-a0d233fabcf0-f14dbd30, #w-node-_99baf3b4-58cb-9504-e0ad-a0d233fabcf2-f14dbd30, #w-node-_99baf3b4-58cb-9504-e0ad-a0d233fabcf4-f14dbd30 {
    place-self: center start;
  }

  #w-node-_99baf3b4-58cb-9504-e0ad-a0d233fabcf6-f14dbd30 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_53b55bca-f346-6454-f582-13d86de6567e-f14dbd32, #w-node-_53b55bca-f346-6454-f582-13d86de65680-f14dbd32, #w-node-_53b55bca-f346-6454-f582-13d86de65682-f14dbd32, #w-node-_53b55bca-f346-6454-f582-13d86de65684-f14dbd32 {
    place-self: center start;
  }

  #w-node-_53b55bca-f346-6454-f582-13d86de65686-f14dbd32 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_42626cac-3132-10e2-51ef-178fa780ca33-f14dbd33, #w-node-_42626cac-3132-10e2-51ef-178fa780ca35-f14dbd33, #w-node-_42626cac-3132-10e2-51ef-178fa780ca37-f14dbd33, #w-node-_42626cac-3132-10e2-51ef-178fa780ca39-f14dbd33 {
    place-self: center start;
  }

  #w-node-_42626cac-3132-10e2-51ef-178fa780ca3b-f14dbd33 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_7c2aece4-d018-9ab5-5979-8352272eb684-f14dbd34, #w-node-_7c2aece4-d018-9ab5-5979-8352272eb686-f14dbd34, #w-node-_7c2aece4-d018-9ab5-5979-8352272eb688-f14dbd34, #w-node-_7c2aece4-d018-9ab5-5979-8352272eb68a-f14dbd34 {
    place-self: center start;
  }

  #w-node-_7c2aece4-d018-9ab5-5979-8352272eb68c-f14dbd34 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a2b4f9d9-b704-e4f3-31c5-ef98ddc81e14-f14dbd35, #w-node-a2b4f9d9-b704-e4f3-31c5-ef98ddc81e16-f14dbd35, #w-node-a2b4f9d9-b704-e4f3-31c5-ef98ddc81e18-f14dbd35, #w-node-a2b4f9d9-b704-e4f3-31c5-ef98ddc81e1a-f14dbd35 {
    place-self: center start;
  }

  #w-node-a2b4f9d9-b704-e4f3-31c5-ef98ddc81e1c-f14dbd35 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_3e1e48c6-95ff-8a4c-6a6b-fdaae4a9a1c5-f14dbd36, #w-node-_3e1e48c6-95ff-8a4c-6a6b-fdaae4a9a1c7-f14dbd36, #w-node-_3e1e48c6-95ff-8a4c-6a6b-fdaae4a9a1c9-f14dbd36, #w-node-_3e1e48c6-95ff-8a4c-6a6b-fdaae4a9a1cb-f14dbd36 {
    place-self: center start;
  }

  #w-node-_3e1e48c6-95ff-8a4c-6a6b-fdaae4a9a1cd-f14dbd36 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_8a12abdf-1cfb-a247-5617-4b98309847b2-f14dbd37, #w-node-_8a12abdf-1cfb-a247-5617-4b98309847b4-f14dbd37, #w-node-_8a12abdf-1cfb-a247-5617-4b98309847b6-f14dbd37, #w-node-_8a12abdf-1cfb-a247-5617-4b98309847b8-f14dbd37 {
    place-self: center start;
  }

  #w-node-_8a12abdf-1cfb-a247-5617-4b98309847ba-f14dbd37 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-f6d77c44-2dc0-5ffe-0fd5-a69bb2fdf9c3-f14dbd38, #w-node-f6d77c44-2dc0-5ffe-0fd5-a69bb2fdf9c5-f14dbd38, #w-node-f6d77c44-2dc0-5ffe-0fd5-a69bb2fdf9c7-f14dbd38, #w-node-f6d77c44-2dc0-5ffe-0fd5-a69bb2fdf9c9-f14dbd38 {
    place-self: center start;
  }

  #w-node-f6d77c44-2dc0-5ffe-0fd5-a69bb2fdf9cb-f14dbd38 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_7a4bdf43-679c-e62d-e2b5-3ab3cdf02c7a-f14dbd3a, #w-node-_7a4bdf43-679c-e62d-e2b5-3ab3cdf02c7c-f14dbd3a, #w-node-_7a4bdf43-679c-e62d-e2b5-3ab3cdf02c7e-f14dbd3a, #w-node-_7a4bdf43-679c-e62d-e2b5-3ab3cdf02c80-f14dbd3a {
    place-self: center start;
  }

  #w-node-_7a4bdf43-679c-e62d-e2b5-3ab3cdf02c82-f14dbd3a {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-f6d77c44-2dc0-5ffe-0fd5-a69bb2fdf9c3-f14dbd3b, #w-node-f6d77c44-2dc0-5ffe-0fd5-a69bb2fdf9c5-f14dbd3b, #w-node-f6d77c44-2dc0-5ffe-0fd5-a69bb2fdf9c7-f14dbd3b, #w-node-f6d77c44-2dc0-5ffe-0fd5-a69bb2fdf9c9-f14dbd3b {
    place-self: center start;
  }

  #w-node-f6d77c44-2dc0-5ffe-0fd5-a69bb2fdf9cb-f14dbd3b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_92a4cdf5-ccf3-c4dd-f0e6-fe31565df3e4-f14dbd2e, #w-node-_92a4cdf5-ccf3-c4dd-f0e6-fe31565df3e4-f14dbd2f, #w-node-_92a4cdf5-ccf3-c4dd-f0e6-fe31565df3e4-f14dbd30, #w-node-_92a4cdf5-ccf3-c4dd-f0e6-fe31565df3e4-f14dbd32, #w-node-_92a4cdf5-ccf3-c4dd-f0e6-fe31565df3e4-f14dbd33, #w-node-_92a4cdf5-ccf3-c4dd-f0e6-fe31565df3e4-f14dbd34, #w-node-_92a4cdf5-ccf3-c4dd-f0e6-fe31565df3e4-f14dbd35, #w-node-_92a4cdf5-ccf3-c4dd-f0e6-fe31565df3e4-f14dbd36, #w-node-ff9196cf-a68a-53ab-7f2d-8896a2731467-f14dbd37, #w-node-_92a4cdf5-ccf3-c4dd-f0e6-fe31565df3e4-f14dbd38, #w-node-_92a4cdf5-ccf3-c4dd-f0e6-fe31565df3e4-f14dbd3a, #w-node-_92a4cdf5-ccf3-c4dd-f0e6-fe31565df3e4-f14dbd3b {
    justify-self: center;
  }
}


