:root {
  --black: #141414;
}

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

body {
  color: #333;
  background-color: #fcfcfc;
  font-family: Manrope, sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

h1 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 32px;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.2;
}

h2 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.25;
}

strong {
  color: #000;
  font-weight: 700;
}

.navbar {
  color: #112a46;
  background-color: #fcfcfc;
  position: sticky;
  top: 0;
}

.navbar-shadow {
  position: absolute;
  inset: 0%;
  box-shadow: 0 1px 10px #0003;
}

.logo-group {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  display: flex;
}

.logo-name {
  color: #1768e1;
  font-weight: 700;
}

.logo-name.footer-logo-name {
  color: #c7ddff;
  font-weight: 500;
}

.navigation {
  color: #112a46;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  margin-left: 40px;
  margin-right: 40px;
  font-family: Manrope, sans-serif;
  display: flex;
}

.nav-menu {
  display: flex;
}

.nav-link {
  color: var(--black);
  font-size: 16px;
}

.nav-link:hover {
  color: #1768e1;
}

.nav-link.w--current {
  color: var(--black);
}

.nav-link.footer-link {
  color: #fffc;
  text-decoration: none;
}

.nav-link.footer-link:hover {
  color: #f2f7ff;
  font-weight: 400;
}

.nav-link.footer-link.w--current {
  font-weight: 400;
}

.section {
  background-color: #fcfcfc;
  justify-content: flex-start;
  padding: 100px 40px;
  display: flex;
}

.section.margin-top-60px {
  transition: box-shadow .2s;
}

.section.team-background {
  background-color: #f5f5f5;
  padding-top: 0;
  padding-bottom: 0;
}

.section.footer-section {
  background-color: var(--black);
  color: #f2f7ff;
  justify-content: flex-start;
  padding-bottom: 20px;
  display: block;
}

.section.contact-section {
  background-color: #f5f5f5;
  justify-content: center;
}

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

.container.horizontal-container {
  grid-column-gap: 80px;
  display: flex;
}

.container.horizontal-container.grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  margin-top: 80px;
  display: grid;
}

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

.heading-h1 {
  color: #112a46;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.2;
}

.heading-h1.margin-bottom-24px {
  margin-bottom: 24px;
}

.primary-button {
  background-color: #1768e1;
  padding: 12px 24px;
}

.primary-button.margin-bottom-40px {
  margin-bottom: 40px;
  font-size: 16px;
  transition: box-shadow .25s cubic-bezier(.47, 0, .745, .715);
}

.primary-button.margin-bottom-40px:hover {
  background-color: #0043a7;
  box-shadow: 0 7px 20px -10px #0003;
}

.primary-button.contact-cta {
  width: 100%;
}

.hero-image {
  object-fit: cover;
  width: 100%;
  height: 500px;
}

.hero-image.hide {
  display: none;
}

.know-team-block {
  margin-top: 100px;
  margin-bottom: 100px;
}

.know-team-block.no-margins {
  margin-top: 0;
  margin-bottom: 0;
}

.paragraph {
  color: #696969;
  text-align: left;
  margin-bottom: 16px;
  font-family: Manrope, sans-serif;
  font-size: 16px;
}

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

.paragraph.left-align-text {
  text-align: left;
}

.paragraph.left-align-text.text-white {
  color: #fff;
}

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

.paragraph.text-align-center.margin-bottom-8px {
  margin-bottom: 8px;
}

.paragraph.text-align-center.contact-title {
  color: var(--black);
  margin-bottom: 10px;
  font-weight: 700;
}

.secondary-button {
  color: #1768e1;
  background-color: #0000;
  border: 1px solid #1768e1;
  padding: 12px 24px;
  font-size: 16px;
  transition: border 1s cubic-bezier(.68, -.55, .265, 1.55);
}

.secondary-button:hover {
  color: #fff;
  background-color: #1768e1;
  border: 1px solid #0000;
}

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

.expertise-grid {
  grid-column-gap: 40px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 42px;
}

.icon-holder {
  background-color: #f2f7ff;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
}

.icon-holder.expertise-icon-holder {
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
}

.single-expertise-block {
  background-color: #141414cc;
  padding: 24px;
}

.materialicon {
  color: #1768e1;
  font-size: 32px;
}

.heading-h5 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
}

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

.heading-h5.footer-heading {
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
}

.heading-h5.text-white {
  color: #fff;
}

.heading-h5.text-white.no-margins {
  margin-bottom: 0;
}

.footer-elements {
  display: flex;
}

.footer-elements.margin-bottom-40px {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  margin-bottom: 40px;
}

.grid-6 {
  grid-row-gap: 40px;
  flex: 1;
  grid-template-rows: .25fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: start;
}

.contact-address {
  color: #fffc;
  font-size: 16px;
}

.horizontal-ruler {
  background-color: #ffffff26;
  height: 1px;
}

.contact-number {
  color: #fffc;
  font-size: 16px;
}

.assist-text {
  justify-content: space-between;
  display: flex;
}

.assist-text.margin-bottom-40px {
  align-items: center;
  margin-bottom: 40px;
}

.map {
  width: 35%;
}

.footer-links-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  display: flex;
}

.copyright-holder {
  width: 100%;
}

.copyright {
  color: #fff;
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
}

.contact-field {
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
}

.services-select {
  color: #7e7e7e;
  background-color: #0000;
  border: 1px #dbdbdb;
  border-bottom: 2px solid #dbdbdb;
  height: 48px;
  padding-left: 0;
}

.textarea {
  font-size: 16px;
  line-height: 1.25;
}

.textarea.input-field {
  margin-bottom: 24px;
}

.textarea.input-field.padding-top-12px {
  padding-top: 12px;
  padding-left: 0;
}

.input-field {
  color: var(--black);
  background-color: #0000;
  border: 1px #dbdbdb;
  border-bottom: 2px solid #dbdbdb;
  height: 48px;
  margin-bottom: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 0;
  font-size: 16px;
  line-height: 1.25;
}

.input-field::placeholder {
  color: #7e7e7e;
  font-size: 14px;
}

.contact-form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #112a46;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: .75fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  display: flex;
}

.success-message {
  background-color: #efc;
}

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

.contact-details-flex {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  width: 100%;
  max-width: 750px;
  margin-top: 42px;
  margin-bottom: 80px;
  display: grid;
}

.h2-small {
  font-size: 28px;
}

.whatsapp-profile-image {
  display: none;
}

.accordion-wrapper {
  margin-top: 60px;
}

.accordion-item {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 24px 30px 14px;
  box-shadow: 0 3px 7px #00000008;
}

.accordion-item-trigger {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  display: flex;
}

.accordion-heading {
  color: var(--black);
  cursor: pointer;
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.icon-2.accordion-icon {
  color: #0009;
  cursor: pointer;
  width: 20px;
  font-size: 32px;
  line-height: 30px;
}

.accordion-item-content {
  margin-top: 10px;
  margin-right: 30px;
  overflow: hidden;
}

.dollar-sign {
  opacity: .5;
  font-size: 17px;
  font-weight: 300;
  line-height: 10px;
  position: relative;
  left: -2px;
}

.pricing-button {
  color: #fff;
  background-color: #1768e1;
  border-radius: 5px;
  margin-top: 30px;
  margin-left: 30px;
  margin-right: 30px;
  padding-top: 12px;
  padding-bottom: 7px;
  font-size: 13px;
  font-weight: 900;
  line-height: 2em;
  display: block;
}

.pricing-contain {
  float: right;
  text-align: center;
  background-color: #fff;
  border: 2px solid #0000;
  border-top-width: 10px;
  border-radius: 5px;
  flex-flow: column;
  justify-content: space-between;
  padding: 20px 32px 30px;
  display: flex;
  position: relative;
  box-shadow: 0 20px 50px -10px #2d3e501a;
}

.pricing-contain.enterprise-pricing-contain {
  z-index: 2;
}

.pricing-contain.pro-pricing-contain {
  z-index: 2;
  display: block;
  position: relative;
}

.pricing-dash {
  background-color: #2d3e501f;
  border-radius: 2px;
  width: 25%;
  height: 2px;
  margin: 30px auto;
}

.plan-name {
  letter-spacing: .5px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
}

.pricing-per-month {
  opacity: .5;
  font-size: 17px;
  font-weight: 400;
  position: relative;
}

.pricing-transaction {
  color: #393939b3;
  letter-spacing: .5px;
  margin-top: 10px;
  font-weight: 400;
  display: inline-block;
}

.pricing-feature {
  letter-spacing: .5px;
  margin-bottom: 42px;
  font-size: 16px;
  font-weight: 400;
  overflow: hidden;
}

.price-number {
  color: #393939;
  font-size: 28px;
  font-weight: 700;
}

.price-number.smaller {
  font-size: 22px;
}

.enterprise-plus {
  font-size: 28px;
  position: relative;
  top: -2px;
}

.bold {
  font-weight: 700;
}

.show-features-button {
  border-bottom: 1px dashed #909090;
  display: none;
}

.pricing-row {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  margin-top: 60px;
  display: grid;
}

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

@media screen and (min-width: 1440px) {
  .logo-group {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    align-items: center;
    display: flex;
  }

  .nav-link {
    color: #26292e;
    line-height: 1.5;
    text-decoration: none;
  }

  .nav-link:hover {
    color: #1768e1;
    font-weight: 600;
  }

  .section {
    justify-content: center;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
  }

  .section.footer-section {
    flex-direction: column;
    display: flex;
  }

  .container {
    justify-content: space-between;
    align-items: center;
    max-width: 1360px;
    margin-left: 0;
    margin-right: 0;
  }

  .heading-h1 {
    color: #112a46;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.5;
  }

  .heading-h1.margin-bottom-24px {
    line-height: 1.2;
  }

  .primary-button {
    background-color: #1768e1;
    padding: 12px 24px;
    line-height: 1.5;
  }

  .hero-image {
    object-fit: cover;
    width: 100%;
    height: 500px;
  }

  .paragraph {
    color: #3b3b3b;
    margin-bottom: 0;
    font-weight: 400;
  }

  .secondary-button {
    color: #1768e1;
    background-color: #0000;
    border: 1px solid #1768e1;
    padding: 12px 24px;
  }

  .icon-holder {
    background-color: #f2f7ff;
    border-radius: 999px;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    display: flex;
  }

  .single-expertise-block {
    padding: 42px 32px;
  }

  .heading-h5 {
    color: #f2f7ff;
    margin-top: 0;
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .heading-h5.margin-bottom-10px {
    color: #112a46;
  }

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

  .pricing-contain {
    padding: 42px 60px;
  }

  .pricing-row {
    grid-column-gap: 42px;
    grid-row-gap: 42px;
  }
}

@media screen and (min-width: 1920px) {
  .section.footer-section {
    align-items: center;
  }

  .copyright-holder {
    width: 100%;
    max-width: 1440px;
    margin-top: 100px;
  }

  .copyright {
    margin-top: 20px;
  }
}

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

  .mobile-menu-button, .mobile-menu-button.w--open, .nav-menu {
    background-color: #fcfcfc;
  }

  .icon {
    color: #112a46;
    font-size: 32px;
  }

  .nav-link.footer-link {
    font-size: 14px;
  }

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

  .container.horizontal-container {
    grid-column-gap: 80px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    display: grid;
  }

  .heading-h1, .heading-h1.margin-bottom-24px {
    font-size: 32px;
  }

  .primary-button {
    flex: 1;
  }

  .primary-button.margin-bottom-40px {
    font-size: 14px;
  }

  .primary-button.center-align-text {
    justify-content: center;
    font-size: 14px;
    display: flex;
  }

  .primary-button.contact-cta {
    font-size: 16px;
  }

  .paragraph {
    font-size: 14px;
  }

  .paragraph.margin-bottom-24px {
    text-align: left;
    font-size: 14px;
  }

  .paragraph.left-align-text {
    text-align: left;
  }

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

  .cover-image {
    height: auto;
  }

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

  .icon-holder.expertise-icon-holder {
    width: 50px;
    height: 50px;
  }

  .materialicon, .heading-h5 {
    font-size: 24px;
  }

  .heading-h5.margin-bottom-10px {
    font-size: 18px;
  }

  .heading-h5.margin-bottom-24px {
    margin-bottom: 24px;
  }

  .heading-h5.footer-heading {
    font-size: 18px;
  }

  .assist-text {
    flex-direction: column;
    display: block;
  }

  .copyright {
    font-size: 12px;
    line-height: 14px;
  }

  .hide-on-tablet {
    display: none;
  }

  .pricing-contain.enterprise-pricing-contain {
    width: 100%;
    margin-top: 20px;
    padding-left: 20%;
    padding-right: 20%;
    display: block;
  }

  .pricing-contain.pro-pricing-contain {
    margin-top: 0;
    margin-bottom: 0;
  }

  .pricing-row {
    flex-flow: wrap-reverse;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

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

@media screen and (max-width: 767px) {
  .container.horizontal-container {
    grid-template-columns: 1fr;
  }

  .know-team-block {
    margin-top: 60px;
  }

  .accordion-item-content {
    margin-right: 0;
  }

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

  .pricing-contain {
    font-size: 12px;
  }

  .pricing-contain.enterprise-pricing-contain {
    width: 350px;
    margin-top: 5px;
    margin-left: 3px;
    padding-left: 0%;
    padding-right: 0%;
  }

  .pricing-contain.scale-pricing-contain {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }

  .pricing-contain.pro-pricing-contain {
    margin: 5px 2px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .plan-name {
    margin-bottom: 0;
  }

  .pricing-feature {
    display: none;
  }

  .price-number {
    height: 42px;
  }

  .show-features-button {
    color: #393939b3;
    margin-bottom: 5px;
    padding-top: 5px;
    padding-left: 5px;
    padding-right: 5px;
    font-weight: 400;
    display: inline-block;
  }

  .pricing-row {
    flex-flow: row-reverse wrap;
    grid-template-columns: 1fr;
  }
}

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

  h2 {
    font-size: 36px;
  }

  .mobile-menu-button {
    padding: 8px;
  }

  .navigation {
    margin-left: 0;
    margin-right: 0;
  }

  .nav-link.footer-link:hover {
    font-weight: 400;
  }

  .section {
    padding: 40px 16px 24px;
  }

  .section.team-background {
    padding-top: 60px;
  }

  .section.footer-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .container.horizontal-container {
    grid-column-gap: 40px;
    flex-direction: column;
    padding-bottom: 40px;
  }

  .heading-h1.margin-bottom-24px {
    font-size: 32px;
  }

  .primary-button.margin-bottom-40px {
    justify-content: center;
    display: flex;
  }

  .know-team-block {
    margin-bottom: 24px;
  }

  .paragraph {
    text-align: left;
    margin-bottom: 10px;
  }

  .secondary-button {
    justify-content: center;
    display: flex;
  }

  .expertise-grid {
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .single-expertise-block {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .footer-elements.margin-bottom-40px {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .grid-6 {
    grid-template-rows: .25fr auto auto auto;
  }

  .assist-text {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column;
  }

  .assist-text.margin-bottom-40px.mobile-custom {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
  }

  .map {
    width: 100%;
  }

  .services-select {
    background-color: #0000;
    border-color: #cecece;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.25;
  }

  .textarea {
    padding-left: 10px;
    padding-right: 10px;
  }

  .input-field {
    background-color: #0000;
    border-color: #cecece;
    font-size: 14px;
  }

  .contact-form {
    flex-direction: column;
    margin-right: 0;
    display: flex;
  }

  .contact-form.margin-right-16px {
    margin-right: 16px;
  }

  .success-text {
    color: #114622;
  }

  .error-text {
    color: #461111;
    font-size: 16px;
    line-height: 1.25;
  }

  .success-message {
    background-color: #efc;
    font-size: 16px;
    line-height: 1.25;
  }

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

  .contact-details-flex {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .pricing-contain {
    padding: 42px 24px;
  }

  .pricing-contain.enterprise-pricing-contain {
    z-index: 2;
    position: relative;
  }

  .pricing-contain.scale-pricing-contain {
    z-index: 1;
    position: relative;
  }
}

#w-node-b968baaa-0d88-35fc-94b7-ccfb1a33bd36-0de98fa4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b968baaa-0d88-35fc-94b7-ccfb1a33bd3d-0de98fa4 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-e9c65a71-b314-d67c-ffc5-7c28a274617f-0de98fa4 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_2b6a3447-dbac-08b8-20ac-70e78c2bdfcf-0de98fa4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a3f7ed68-4cb0-097d-d1a8-107690385a63-0de98fa4, #w-node-a3f7ed68-4cb0-097d-d1a8-107690385a67-0de98fa4 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_8899b4ec-9bd8-ca95-cac8-d9f5c828ba86-0de98fa4 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_8899b4ec-9bd8-ca95-cac8-d9f5c828baad-0de98fa4 {
  grid-area: 3 / 1 / 4 / 5;
}

#w-node-_8899b4ec-9bd8-ca95-cac8-d9f5c828baaf-0de98fa4 {
  grid-area: 3 / 5 / 4 / 6;
  place-self: center;
}

@media screen and (max-width: 767px) {
  #w-node-b968baaa-0d88-35fc-94b7-ccfb1a33bd3d-0de98fa4 {
    grid-area: 1 / 1 / 2 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-a3f7ed68-4cb0-097d-d1a8-107690385a57-0de98fa4, #w-node-a3f7ed68-4cb0-097d-d1a8-107690385a5b-0de98fa4, #w-node-a3f7ed68-4cb0-097d-d1a8-107690385a5f-0de98fa4, #w-node-a3f7ed68-4cb0-097d-d1a8-107690385a63-0de98fa4, #w-node-a3f7ed68-4cb0-097d-d1a8-107690385a67-0de98fa4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_8899b4ec-9bd8-ca95-cac8-d9f5c828ba8a-0de98fa4 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_8899b4ec-9bd8-ca95-cac8-d9f5c828baa0-0de98fa4 {
    grid-area: 3 / 1 / 4 / 4;
  }
}


