:root {
  --dark-slate-gray: #282b30;
  --white: white;
  --black: #1e2024;
  --lime: #5ee744;
  --steel-blue: #2284bd;
  --dark-slate-gray-2: #35373b;
  --red: #e00;
  --magenta: magenta;
  --deep-pink: #ec008c;
}

.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;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: #2284bd;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: 25px;
  font-weight: 100;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  color: #77818c;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  color: #77818c;
  margin-top: 0;
  margin-bottom: 5px;
  font-family: Roboto, sans-serif;
  font-size: 13px;
  line-height: 22px;
}

.button {
  color: #fff;
  text-align: center;
  background-color: #000;
  border: 2px solid #000;
  border-radius: 3px;
  margin-top: 15px;
  padding: 4px 15px;
  font-family: Roboto, sans-serif;
  text-decoration: none;
  display: inline-block;
}

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

.button.white-lined {
  background-color: rgba(0, 0, 0, 0);
  border-color: #fff;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  transition: background-color .5s, border-color .5s;
}

.button.white-lined:hover {
  background-color: #5ee744;
  border-color: rgba(0, 0, 0, 0);
}

.button.pricing-button {
  border-color: #5ee744;
  transition: background-color .5s, border-color .5s;
}

.button.pricing-button:hover {
  background-color: #5ee744;
  border-color: #5ee744;
}

.button.pricing-button.active {
  background-color: #5ee744;
  border-width: 2px;
  border-color: #5ee744;
}

.button.pricing-button.active:hover {
  background-color: #000;
  border-color: #000;
}

.button.divider-button {
  width: 120px;
  background-color: #5ee744;
  border-color: #5ee744;
  margin-top: 44px;
  margin-left: auto;
  margin-right: auto;
  transition: background-color .5s, border-color .5s;
  display: block;
}

.button.divider-button:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.button.faded {
  color: #77818c;
  background-color: #ebeced;
  border-style: solid;
  border-color: #ebeced;
  transition: background-color .5s, border-color .5s;
}

.button.faded:hover {
  opacity: 1;
  color: #fff;
  background-color: #5ee744;
  border-color: #2284bd;
}

.top-section {
  height: auto;
  background-color: #5c5c5c;
}

.navbar {
  z-index: 900;
  background-color: #000;
  border-bottom: 1px solid #dbdbdb;
  padding-top: 12px;
  padding-bottom: 12px;
  transition: background-color .5s, padding-bottom .5s, padding-top .5s;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

.navbar:hover {
  background-color: #000;
  padding-top: 20px;
  padding-bottom: 20px;
}

.page-content {
  background-color: #f5f5f5;
  border: 0 solid #5ee744;
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-content.intro {
  background-color: rgba(0, 0, 0, 0);
  border-width: 0;
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-content.intro:hover {
  background-color: rgba(0, 0, 0, 0);
}

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

.slider-2 {
  height: 750px;
}

.text-block {
  height: 250px;
  background-color: #fff;
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px #dbdbdb;
  padding: 25px 50px 20px;
  transition: background-color .5s, border-color .5s;
}

.text-block:hover {
  background-color: #35373b;
  border-top-color: #1e2024;
}

.text-block.end {
  border-bottom-style: solid;
}

.text-block.right-aligned {
  text-align: right;
}

.map {
  height: 750px;
}

.contact-column {
  height: 750px;
  background-color: #ededed;
  padding: 100px 50px 50px;
  transition: background-color .5s;
}

.contact-column:hover {
  background-color: #35373b;
}

.nav-link {
  background-color: var(--dark-slate-gray);
  opacity: .4;
  color: var(--white);
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 3px;
  margin-top: 5px;
  margin-right: 3px;
  padding: 5px 15px;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  transition: background-color .5s;
}

.nav-link:hover {
  opacity: 1;
  color: #fff;
  background-color: #5ee744;
  border: 2px solid rgba(0, 0, 0, 0);
}

.nav-link.w--current {
  color: #000;
}

.nav-link.w--current:hover {
  color: #fff;
}

.top-slider {
  width: 100%;
  height: 100%;
  background-color: #4d4d4d;
}

.top-slide {
  background-image: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)), url('../images/desktop03.jpg');
  background-position: 0 0, 50% -60px;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  padding-top: 120px;
}

.top-slide._2 {
  background-image: url('../images/IMG_3785.png');
  background-position: 0 0;
  background-size: cover;
  background-attachment: scroll;
}

.top-slide._3 {
  background-color: var(--black);
  background-image: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)), url('../images/Mac-4.jpg');
  background-position: 0 0, 50% 100%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  border-top: 0 solid #2284bd;
  top: 0;
}

.top-slide-container {
  text-align: center;
  padding-left: 100px;
  padding-right: 100px;
}

.slider-title {
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 0 4px rgba(0, 0, 0, .4);
  border-top: 0 solid #fff;
  border-bottom: 0 solid #fff;
  margin-bottom: 40px;
  padding-top: 25px;
  padding-bottom: 25px;
  font-family: Roboto, sans-serif;
  font-size: 45px;
}

.slider-subtitle {
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 1px 1px 6px #000;
  font-family: Roboto, sans-serif;
  font-size: 13px;
}

.info-block {
  width: 100%;
  height: 240px;
  color: #000;
  text-align: center;
  background-color: #fff;
  border: 2px solid #f2f2f2;
  border-radius: 3px;
  padding: 30px 20px;
  text-decoration: none;
  transition: background-color .5s, border-color .5s;
}

.info-block:hover {
  background-color: rgba(0, 0, 0, 0);
  border-color: #5ee744;
}

.icon-block {
  width: 90px;
  height: 90px;
  border: 2px solid var(--lime);
  background-color: #fff;
  border-radius: 100px;
  margin-top: -65px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
  box-shadow: 0 0 0 3px #f2f2f2;
}

.slider-2-slide {
  background-image: url('../images/carmonious-kenna.jpg');
  background-position: 100%;
  background-size: cover;
}

.slider-2-slide._2 {
  background-image: url('../images/Screen-Shot-2022-06-29-at-3.21.05-PM.png'), url('../images/LOVE.jpg'), url('../images/Mac-4.jpg');
  background-position: 0 45%, 50%, 100%;
  background-size: contain, cover, cover;
  background-attachment: scroll, scroll, scroll;
}

.slider-2-slide._3 {
  background-image: url('../images/monster.jpg'), url('../images/Desk-2.jpg');
  background-position: 50% 100%, 100%;
  background-size: cover, cover;
}

.text-container {
  width: 500px;
  float: left;
}

.text-container.right-aligned {
  float: right;
}

.pricing-box {
  min-height: 500px;
  opacity: .85;
  color: #fff;
  text-align: center;
}

.pricing-box:hover {
  opacity: .95;
}

.pricing-box.active {
  opacity: 1;
}

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

.pricing-title {
  color: #fff;
  letter-spacing: 0;
  text-transform: uppercase;
  background-color: #5ee744;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-weight: 700;
}

.pricing-title.price {
  color: #5ee744;
  background-color: #363b40;
  padding-bottom: 10px;
  font-size: 34px;
  font-weight: 900;
}

.pricing-title.price-description {
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  background-color: #363b40;
  padding-top: 0;
  padding-bottom: 10px;
  font-size: 10px;
}

.pricing-box-list-item {
  background-color: #fff;
  border: 1px solid #cfcfcf;
  border-top-style: none;
  padding-top: 5px;
  padding-bottom: 5px;
}

.pricing-box-list-item:hover {
  background-color: rgba(237, 240, 242, .9);
}

.pricing-box-list-item.end {
  padding-top: 30px;
  padding-bottom: 45px;
}

.pricing-box-list-item.end:hover {
  background-color: rgba(237, 240, 242, .9);
}

.pricing-feature-text {
  color: #9c9da6;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.section-intro-block {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  text-transform: uppercase;
  border-top: 3px solid #ededed;
  border-bottom: 3px solid #ededed;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: 40px;
  font-weight: 300;
}

.section-title._2 {
  color: #5ee744;
  text-transform: uppercase;
  border-top-style: none;
  border-bottom-style: none;
  margin-bottom: 0;
  padding-top: 10px;
  font-size: 13px;
  font-weight: 700;
}

.bottom-footer {
  text-align: center;
  background-color: #000;
  padding: 30px 50px;
}

.some-block {
  width: 40px;
  height: 40px;
  float: left;
  background-color: #35373b;
  border-radius: 30px;
  margin-right: 8px;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  transition: background-color .5s;
}

.some-block:hover {
  background-color: #2284bd;
}

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

.footer-right {
  text-align: right;
}

.slider-navigation {
  opacity: .4;
  padding-top: 50px;
  padding-bottom: 50px;
  transition: opacity .5s;
}

.slider-navigation:hover {
  opacity: 1;
}

.slider-arrow {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, .2);
  border-radius: 3px;
  padding-top: 8px;
  font-size: 22px;
  transition: background-color .5s, border-radius .5s, font-size .5s;
}

.slider-arrow:hover {
  background-color: rgba(0, 0, 0, .9);
  border-radius: 30px;
}

.slider-arrow.testimonials {
  margin-top: 110px;
}

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

.testimonial-slider {
  height: 500px;
  background-color: #fff;
}

.testimonial-slide {
  background-color: #fff;
  padding-top: 60px;
}

.testimonial-photos-row {
  margin-bottom: 50px;
}

.testimonial-photo {
  opacity: .5;
}

.testimonial-photo.active {
  opacity: 1;
}

.testimonial-text-block {
  text-align: center;
  padding-left: 100px;
  padding-right: 100px;
}

.testimonial-title {
  font-family: Roboto, sans-serif;
  font-size: 22px;
  display: inline-block;
}

.testimonial-text {
  margin-bottom: 25px;
  font-size: 20px;
  line-height: 25px;
}

.contact-title {
  color: #77818c;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 38px;
  padding-top: 15px;
  font-family: Roboto, sans-serif;
  font-size: 45px;
  font-weight: 300;
}

.contact-title._2 {
  text-transform: uppercase;
  margin-bottom: 0;
  padding-left: 3px;
  font-size: 13px;
  font-weight: 700;
}

.field {
  height: 50px;
  border: 2px solid #fff;
  font-family: Roboto, sans-serif;
  box-shadow: inset 0 0 rgba(255, 255, 255, .5), 0 0 #000;
}

.field:hover {
  background-color: #e6e6e6;
}

.field:active {
  border-color: #359edb;
}

.field:focus {
  color: #000;
  border-color: #359edb;
}

.field.area {
  height: 150px;
  padding-top: 14px;
}

.submit-button {
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  background-color: #77818c;
  border: 2px solid #77818c;
  font-family: Roboto, sans-serif;
  font-size: 13px;
  font-weight: 900;
  transition: background-color .5s;
}

.submit-button:hover {
  color: #fff;
  background-color: #5ee744;
  border-color: #2284bd;
}

.divider-with-symbol {
  width: 100%;
  height: 1px;
  background-color: #e3e3e3;
}

.divider-symbol {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 50px;
  margin-bottom: -24px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 11px;
  padding-left: 13px;
  padding-right: 13px;
  display: block;
  position: relative;
}

.divider-container {
  height: auto;
  margin-top: 50px;
}

.slider-3-slide {
  background-image: url('../images/JustAsk.jpg');
  background-position: 50%;
  background-size: cover;
}

.slider-3-slide._2 {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/StyleGuideExample.jpg');
  background-position: 0 0, 50% 0;
  background-size: auto, cover;
}

.slider-3-slide._3 {
  background-image: url('../images/WIX-ScreenShot.jpg');
  background-position: 0 0;
}

.divider-icon {
  opacity: .2;
}

.pricing-row {
  margin-bottom: 70px;
}

.important-text {
  color: #5ee744;
  font-weight: 900;
}

.intro-title {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 400;
}

.intro-title:hover {
  color: #5ee744;
}

.link {
  color: #396491;
  font-family: Roboto, sans-serif;
  font-size: 13px;
  text-decoration: none;
}

.link:hover {
  color: #006fe6;
}

.link.testimonial-url {
  color: #b4c2d1;
  text-align: center;
  display: block;
}

.link.testimonial-url:hover {
  color: #5ee744;
}

.footer-bottom-text {
  opacity: .5;
  color: #fff;
  letter-spacing: 1px;
  margin-top: 12px;
  font-size: 12px;
}

.important-text-white {
  color: var(--lime);
}

.important-text-grey {
  color: #5ee744;
}

.top-column {
  display: flex;
}

.success-bg {
  text-align: center;
  background-color: #2284bd;
  border-radius: 3px;
  padding-top: 13px;
}

.success-text {
  color: #fff;
  font-size: 16px;
}

.error-bg {
  text-align: center;
  background-color: #1e2024;
  padding-top: 14px;
}

.fixed-nav {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header {
  z-index: 4000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.heading {
  color: #fff;
}

.bold-text, .bold-text-2 {
  font-weight: 400;
}

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

.bold-text-4 {
  color: #5ee744;
}

.bold-text-5 {
  color: #fff;
}

.image {
  margin-top: -10px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.image-2 {
  text-align: center;
  margin: -6px 0 1px;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.image-3, .image-4 {
  margin-top: -10px;
}

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

.image-5 {
  text-align: left;
}

.container {
  text-align: center;
}

.image-6 {
  margin-top: 56px;
}

.grid {
  background-color: #282b30;
  grid-template: "Area"
                 "."
                 "."
                 "."
                 / 1fr 1fr 1fr 1fr;
}

.image-7 {
  transition: opacity .2s;
}

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

.image-8 {
  background-color: #282b30;
}

.paragraph {
  direction: ltr;
  color: var(--dark-slate-gray);
  letter-spacing: normal;
  text-indent: 10px;
  background-color: rgba(255, 255, 255, .6);
  margin-top: -6px;
  padding: 10px;
  font-weight: 500;
}

.gallery {
  padding-top: 100px;
  padding-bottom: 100px;
}

.centered-container {
  text-align: center;
  flex: 1;
}

.gallery-grid-container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template: "."
                 "."
                 / 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: center;
  margin-top: 40px;
  display: grid;
}

.gallery-lightbox {
  position: relative;
  overflow: hidden;
}

.gallery-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.right-arrow {
  background-color: rgba(0, 0, 0, 0);
}

.grid-2 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-areas: "Area";
}

.image-9 {
  background-color: #111;
  padding-top: 10px;
  padding-bottom: 10px;
}

.columns {
  margin-top: 20px;
}

.brain-box {
  width: 100%;
  height: 240px;
  color: #000;
  text-align: center;
  background-color: #000;
  border: 2px solid #f2f2f2;
  border-radius: 3px;
  padding: 30px 20px;
  text-decoration: none;
  transition: background-color .5s, border-color .5s;
}

.brain-box:hover {
  background-color: rgba(0, 0, 0, 0);
  border-color: #5ee744;
}

.columns-2 {
  background-color: #fff;
}

.image-10 {
  max-width: 100%;
  position: static;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

html.w-mod-js [data-ix="nav-display-none"] {
  opacity: 0;
  display: none;
}

@media screen and (max-width: 991px) {
  h3 {
    color: #aab4bf;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 25px;
  }

  .button.faded {
    color: #fff;
    background-color: #2284bd;
    border-color: #2284bd;
  }

  .button.faded:hover {
    background-color: rgba(0, 0, 0, 0);
  }

  .page-content {
    padding: 70px 30px;
  }

  .page-content.intro {
    padding-top: 90px;
    padding-bottom: 70px;
  }

  .slider-2 {
    height: 600px;
  }

  .text-block {
    height: 200px;
    padding-top: 25px;
    padding-left: 30px;
  }

  .text-block:hover {
    background-color: #282b30;
    border-top-color: #dbdbdb;
  }

  .text-block.right-aligned {
    padding-right: 30px;
  }

  .map {
    height: 600px;
  }

  .contact-column {
    height: 600px;
    padding-top: 50px;
    padding-right: 30px;
  }

  .logo-container {
    padding-top: 7px;
  }

  .nav-link {
    width: 100%;
    max-width: 991px;
    opacity: 1;
    color: #b8b8b8;
    background-color: #000;
    border-style: none none solid;
    border-color: #000 #000 #262626;
    border-bottom-width: 1px;
    border-radius: 0;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 22px;
    padding-bottom: 22px;
    padding-left: 25px;
    font-size: 16px;
  }

  .nav-link:hover {
    color: #fff;
    background-color: #2284bd;
    border-width: 0 0 1px;
    border-bottom-style: solid;
    border-bottom-color: #000;
  }

  .nav-link.w--current {
    width: 100%;
    color: #b8b8b8;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .nav-link.w--current:hover {
    color: #fff;
  }

  .top-slide-container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .info-block {
    height: auto;
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .text-container {
    width: 330px;
  }

  .pricing-box-list-item.end {
    padding-top: 15px;
  }

  .section-title {
    font-size: 36px;
  }

  .section-title._2 {
    padding-bottom: 10px;
  }

  .some-block {
    background-color: #2284bd;
  }

  .some-block:hover {
    background-color: #35373b;
  }

  .slider-arrow.testimonials {
    margin-top: 160px;
  }

  .testimonials-section {
    padding-top: 70px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .testimonial-slider {
    height: 370px;
  }

  .testimonial-slide {
    padding-top: 0;
  }

  .menu-icon {
    float: right;
    font-size: 25px;
  }

  .menu-button {
    padding-top: 14px;
    padding-bottom: 12px;
    padding-right: 20px;
  }

  .menu-button:hover {
    background-color: #f0f0f0;
    border-radius: 3px;
  }

  .menu-button.w--open {
    background-color: #000;
    border-radius: 3px;
  }

  .menu-text {
    float: right;
    color: #cfcfcf;
    margin-top: -4px;
    margin-bottom: 0;
    margin-right: 13px;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
  }

  .contact-title {
    font-size: 35px;
  }

  .submit-button {
    background-color: #2284bd;
    border-color: #2284bd;
  }

  .submit-button:hover {
    background-color: rgba(0, 0, 0, 0);
  }

  .pricing-row {
    margin-bottom: 0;
  }

  .intro-title {
    margin-top: 15px;
    font-size: 16px;
  }

  .important-text-white, .important-text-grey {
    color: #4e5a61;
  }

  .top-column {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-menu-container {
    background-color: #f0f0f0;
    border-top: 1px solid #bdbdbd;
    padding-bottom: 20px;
    padding-left: 0;
  }

  .gallery-grid-container {
    align-self: stretch;
  }

  .brain-box {
    height: auto;
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .top-section {
    height: 480px;
  }

  .navbar {
    padding-left: 10px;
    padding-right: 18px;
  }

  .page-content {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .page-content.intro {
    padding-top: 60px;
    padding-bottom: 50px;
  }

  .slider-2 {
    height: 350px;
  }

  .text-block {
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 30px;
  }

  .text-block.right-aligned {
    text-align: left;
  }

  .map {
    height: 300px;
  }

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

  .nav-link {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .top-slide {
    padding-top: 70px;
  }

  .top-slide-container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .slider-title {
    font-size: 33px;
  }

  .info-block {
    margin-bottom: 15px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .text-container {
    width: 100%;
  }

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

  .pricing-box-list-item {
    padding-top: 3px;
    padding-bottom: 3px;
  }

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

  .some-block {
    float: none;
  }

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

  .slider-arrow.testimonials {
    margin-top: 75px;
  }

  .testimonials-section {
    padding-top: 50px;
  }

  .testimonial-slider {
    height: 250px;
  }

  .testimonial-photo {
    height: 100px;
    margin-bottom: 30px;
  }

  .testimonial-photo-column {
    text-align: center;
  }

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

  .intro-title {
    font-size: 25px;
  }

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

  .testimonial-navigation {
    opacity: .1;
    padding-bottom: 40px;
  }

  .gallery {
    padding: 40px 20px;
  }

  .gallery-grid-container {
    max-width: none;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .brain-box {
    margin-bottom: 15px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (max-width: 479px) {
  h3 {
    font-size: 30px;
    line-height: 28px;
  }

  .button.pricing-button {
    margin-top: 5px;
  }

  .button.divider-button {
    width: 100%;
  }

  .top-section {
    height: 350px;
  }

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

  .page-content {
    padding: 30px 25px 5px;
  }

  .page-content.intro {
    padding: 50px 25px 30px;
  }

  .slider-2 {
    height: 250px;
  }

  .text-block {
    padding-left: 25px;
    padding-right: 25px;
  }

  .contact-column {
    height: auto;
    padding: 30px 25px 20px;
  }

  .top-slide {
    padding-top: 50px;
  }

  .top-slide-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .slider-title {
    margin-top: 10px;
    margin-bottom: 25px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 19px;
  }

  .slider-subtitle {
    margin-bottom: 0;
    font-size: 10px;
  }

  .info-block {
    margin-bottom: 20px;
    padding-bottom: 25px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .pricing-box {
    min-height: 0;
  }

  .pricing-title {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .pricing-title.price-description {
    padding-bottom: 5px;
  }

  .pricing-box-list-item.end {
    padding-bottom: 20px;
  }

  .pricing-feature-text {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 13px;
  }

  .section-intro-block {
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 25px;
    line-height: 25px;
  }

  .slider-navigation {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .slider-arrow.testimonials {
    margin-left: 0;
  }

  .slider-arrow.testimonials.right {
    margin-left: 40px;
  }

  .testimonials-section {
    padding-top: 30px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .testimonial-slider {
    height: 230px;
  }

  .testimonial-text-block {
    padding-left: 10px;
    padding-right: 10px;
  }

  .testimonial-title {
    margin-bottom: 3px;
  }

  .testimonial-text {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 22px;
  }

  .menu-button {
    margin-top: -3px;
    padding-top: 16px;
  }

  .menu-button.w--open {
    margin-top: 0;
  }

  .contact-title {
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 25px;
  }

  .link.testimonial-url {
    color: #2284bd;
  }

  .link.testimonial-url:hover {
    color: #000;
  }

  .footer-bottom-text {
    line-height: 18px;
  }

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

  .centered-container {
    text-align: left;
  }

  .gallery-grid-container {
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
  }

  .brain-box {
    margin-bottom: 20px;
    padding-bottom: 25px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

#w-node-e53e161d-63c6-80af-33b9-1e3b3ec1f94e-92ed015f, #w-node-bff66494-ec34-8b24-4f7d-5ab7a970dee7-92ed015f, #w-node-dc858b65-5b06-f855-812b-3a3729a69660-92ed015f, #w-node-f360e1e3-76dd-8935-cd70-c92cdd9a6208-92ed015f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1ed26509-df2b-3afc-94f2-6d64963f43e4-7f007d03 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

@media screen and (max-width: 479px) {
  #w-node-_1ed26509-df2b-3afc-94f2-6d64963f43e4-7f007d03 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


