:root {
  --royal-blue: #1f6fff;
  --medium-orchid: #b75dda;
  --lime-green: #5ec045;
}

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

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

body {
  height: 100%;
  color: #333;
  background-color: #424549;
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 23px;
  overflow-x: hidden;
}

h1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 29px;
  font-weight: 400;
  line-height: 36px;
}

h3 {
  color: #0082f3;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 30px;
}

p {
  margin-bottom: 15px;
}

a {
  color: #1f6fff;
  text-decoration: underline;
}

a:hover {
  color: #000;
}

img {
  max-width: 100%;
  border-radius: 3px;
  display: inline-block;
}

.navbar {
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  padding-bottom: 45px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.navbar.white {
  background-color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 0 33px rgba(0, 0, 0, 0.2);
}

.logo-block {
  z-index: 10;
  margin-right: 30px;
  display: flex;
  flex: 1;
}

.nav-menu {
  z-index: 1;
  border-radius: 4px;
  flex-direction: row;
  margin-top: 0;
  display: flex;
}

.nav-link {
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 5px;
  margin-right: 3px;
  padding: 11px 15px;
  font-size: 13px;
  line-height: 12px;
  transition:
    background-color 0.2s,
    border 0.2s;
}

.nav-link:hover {
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0.2);
}

.nav-link.dropdown-toggle {
  padding-right: 30px;
}

.nav-link.dropdown-toggle.light {
  padding-right: 30px;
}

.nav-link.light {
  color: #fff;
  margin-right: 2px;
  padding-top: 12px;
  padding-left: 12px;
  padding-right: 12px;
}

.nav-link.light:hover,
.nav-link.light.w--current {
  border-color: rgba(255, 255, 255, 0.2);
}

.dropdown-link {
  font-size: 13px;
  transition:
    background-color 0.2s,
    color 0.2s;
}

.dropdown-link:hover {
  color: #fff;
  background-color: #1f6fff;
}

.dropdown-link.w--current {
  color: #1f6fff;
}

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

.container {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.button {
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #0082f3;
  border-radius: 3px;
  margin-top: 20px;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 12px;
  font-weight: 600;
  transition:
    background-color 0.2s,
    background-position 0.2s,
    color 0.2s,
    border 0.2s,
    box-shadow 0.2s;
}

.button:hover {
  color: #fff;
  background-color: #0b4fc9;
  box-shadow: 0 8px 16px 4px rgba(0, 0, 0, 0.3);
}

.button.green {
  background-color: #5ec045;
}

.button.green:hover {
  background-color: #6fdd53;
}

.button.full-submit {
  width: 100%;
  margin-top: 15px;
  display: block;
}

.button.submit-newsletter {
  border-radius: 5px;
  margin-top: 0;
  padding-left: 24px;
  padding-right: 24px;
  height: 50px;
}

.button.outline {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid #fff;
}

.button._2 {
  background-color: rgba(0, 0, 0, 0.6);
  margin-left: 10px;
}

.button._2:hover {
  color: #1f6fff;
  background-color: #fff;
}

.button._2.green {
  background-color: #5ec045;
}

.button._2.green:hover {
  color: #fff;
  background-color: #73d859;
}

.button.light {
  color: #000;
  background-color: #fff;
}

.section {
  background-color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  display: flex;
}

.section.dark {
  color: #fff;
  background-color: #3b3f46;
  border: 0 solid #000;
  overflow: hidden;
}

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

.section.feature-section {
  background-color: #f5f5f5;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

.section.blue-cta-section {
  color: #fff;
  background-color: #1f6fff;
  padding-top: 0;
  padding-bottom: 0;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.section-title {
  font-size: 46px;
  font-weight: 300;
  line-height: 39px;
  margin-top: 0;
}

.section-description {
  margin-top: 0;
  font-size: 21px;
  font-weight: 300;
  line-height: 27px;
  text-wrap: balance;
}

.image-section {
  background-image: url('../images/Photo-5_2.jpg');
  background-position: 50%;
  background-size: cover;
}

.image-section.pricing {
  background-image: url('../images/Photo-1.jpg');
  background-size: cover;
}

.image-section.newsletter {
  background-image: url('../images/apple-vision-pro-8-cc-by-nc-nd-4.jpg');
}

.image-section-overlay {
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: rgba(44, 46, 49, 0.7);
  padding-top: 145px;
  padding-bottom: 105px;
}

.image-section-overlay.pricing {
  background-color: rgba(44, 46, 49, 0.6);
}

.image-section-overlay.dark {
  background-color: rgba(31, 111, 255, 0.9);
  padding-top: 115px;
  padding-bottom: 185px;
}

.simple-footer {
  background-color: #2a2d30;
  padding-top: 45px;
}

.simple-bottom-footer {
  color: #979da5;
  background-color: #424549;
  margin-top: 45px;
  padding-top: 35px;
  padding-bottom: 32px;
}

.footer-inline-link {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 5px;
  margin-right: 15px;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
}

.footer-inline-link:hover {
  color: rgba(255, 255, 255, 0.4);
}

.footer-social-icon {
  width: 35px;
  height: 35px;
  text-align: center;
  background-color: #4a4f53;
  border-radius: 100%;
  margin-top: -2px;
  margin-right: 5px;
  padding-top: 5px;
  transition: background-color 0.2s;
}

.footer-social-icon:hover {
  background-color: #1f6fff;
}

.footer-small-social-icon {
  height: 15px;
}

.hero-block-overlay {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.25);
  padding-top: 270px;
  padding-bottom: 250px;
}

.hero-block-overlay.business-2 {
  background-color: rgba(31, 111, 255, 0.7);
  padding-bottom: 64px;
  padding-top: 184px;
}

.image-hero {
  background-attachment: fixed, scroll;
  background-image: url('../images/visioncode-window.png'),
    url('../images/visioncode-mt-hood.jpg');
  background-position:
    50% 130px,
    center;
  background-repeat: no-repeat;
  background-size:
    auto min(25vw, 514px),
    cover;
}

.contact-form {
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.field {
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 0 solid #000;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.field:hover,
.field:focus {
  background-color: #fff;
}

.field.area {
  height: 200px;
  padding-top: 12px;
}

.field.email {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  min-width: 220px;
}

.field.email:focus {
  background-color: #fff;
}

.field.line {
  height: 46px;
  border-bottom-width: 2px;
  border-bottom-color: #e2e2e2;
  border-radius: 0;
  margin-bottom: 5px;
  padding-bottom: 12px;
  padding-left: 0;
  padding-right: 0;
  font-size: 13px;
  transition:
    background-color 0.2s,
    border 0.2s;
}

.field.line:hover {
  border-bottom-color: #b6b6b6;
}

.field.line:focus {
  border-bottom-color: #1f6fff;
}

.field.line.area {
  height: 95px;
}

.signup-success-message {
  color: #fff;
  background-color: #5ec045;
  border-radius: 5px;
  padding: 12px;
}

.signup-error-message {
  color: #e42121;
  text-align: center;
  border-radius: 3px;
  font-size: 12px;
  padding: 12px;
}

.footer-logo {
  color: #fff;
  text-transform: uppercase;
  font-size: 19px;
  font-weight: 700;
  line-height: 17px;
}

.footer-logo.subtitle {
  opacity: 0.5;
  text-transform: none;
  font-size: 11px;
  font-weight: 400;
}

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

.bottom-footer-paragraph {
  font-size: 12px;
  margin-bottom: 0;
  text-align: center;
}

.bottom-footer-paragraph.dark {
  color: #94979e;
}

.bottom-footer-link {
  color: #91959c;
}

.bottom-footer-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.bottom-footer-link.dark {
  color: #1f6fff;
  text-decoration: none;
}

.long-feature-block {
  margin-top: 25px;
  padding-left: 65px;
  padding-right: 20px;
  position: relative;
}

.long-feature-block.title-only {
  margin-top: 15px;
  padding-top: 3px;
  padding-left: 75px;
}

.long-feature-title {
  margin-bottom: 14px;
  font-size: 19px;
}

.long-feature-title.uppercase {
  float: none;
  text-transform: none;
  margin-bottom: 4px;
  font-size: 17px;
}

.long-feature-icon-wrapper {
  width: 50px;
  height: 50px;
  text-align: center;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  padding-top: 10px;
  position: absolute;
  top: 0;
  left: 0;
}

.long-feature-icon {
  height: 25px;
}

.overall-hero-title {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Inter, sans-serif;
  font-size: 41px;
  font-weight: 700;
}

.small-paragraph {
  color: #838383;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
}

.worldmap-left-wrapper {
  z-index: 1;
  width: 730px;
  position: absolute;
  top: 17px;
  left: -141px;
}

.map-contact-form {
  z-index: 10;
  width: 380px;
  min-height: 450px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 19px;
  position: relative;
  display: flex;
}

.field-label {
  color: #989ba2;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
}

.dark-field {
  height: 40px;
  background-color: #edeef1;
  border: 0 solid #000;
  border-radius: 2px;
  margin-bottom: 7px;
  padding-left: 20px;
  font-size: 13px;
  transition:
    box-shadow 0.2s,
    border 0.2s,
    background-color 0.2s;
}

.dark-field:hover {
  background-color: #dbdce2;
}

.dark-field:focus {
  background-color: #fff;
  box-shadow: 3px 3px 16px rgba(0, 0, 0, 0.2);
}

.dark-field.area {
  height: 148px;
  padding-top: 12px;
}

.dark-field.first {
  width: 95%;
}

.white-footer {
  background-color: #f5f5f5;
  padding-top: 80px;
  padding-bottom: 80px;
  font-size: 16px;
  display: flex;
}

.bottom-footer-block {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  padding-top: 30px;
}

.bottom-footer-block.white-footer-block {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #e1e1e4;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  padding-top: 24px;
  display: flex;
}

.dropdown-icon {
  opacity: 0.4;
  margin-right: 10px;
}

.full-hero-content-block {
  width: 80%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.subpage-header {
  color: #fff;
  text-align: center;
  background-image: linear-gradient(
      rgba(31, 111, 255, 0.9),
      rgba(31, 111, 255, 0.9)
    ),
    url('../images/Photo-5_2.jpg');
  background-position:
    0 0,
    50%;
  background-size: auto, cover;
  padding-top: 190px;
  padding-bottom: 90px;
}

.subpage-header.contact {
  color: #fff;
  background-image: linear-gradient(
      rgba(31, 111, 255, 0.9),
      rgba(31, 111, 255, 0.9)
    ),
    url('../images/Photo-5_2.jpg');
  background-position:
    0 0,
    50%;
  background-size: auto, cover;
}

.subpage-header.contact-2 {
  background-image: linear-gradient(
      135deg,
      rgba(31, 111, 255, 0.9) 24%,
      rgba(31, 174, 255, 0.9)
    ),
    url('../images/Photo-8.jpg');
  background-position:
    0 0,
    50%;
  background-size: auto, cover;
}

.subpage-header.contact-1 {
  background-image: linear-gradient(
      rgba(31, 111, 255, 0.87),
      rgba(31, 111, 255, 0.87)
    ),
    url('../images/Photo-4.jpg');
  background-position:
    0 0,
    50%;
  background-size: auto, cover;
}

.subpage-header.pricing-1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('../images/Photo-1.jpg');
  background-position:
    0 0,
    0 0;
  background-size: auto, cover;
}

.subpage-header.pricing-3 {
  background-image: linear-gradient(
      rgba(31, 111, 255, 0.7),
      rgba(31, 111, 255, 0.7)
    ),
    url('../images/Photo-12.jpg');
  background-position:
    0 0,
    50%;
  background-size: auto, cover;
}

.subpage-header.pricing-2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('../images/Photo-9.jpg');
  background-position:
    0 0,
    50% 100%;
  background-size: auto, cover;
}

.subpage-header.pricing-4 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('../images/Photo-1.jpg');
  background-position:
    0 0,
    50%;
  background-size: auto, cover;
}

.subpage-header.about-1 {
  text-align: left;
  background-image: linear-gradient(
      rgba(25, 27, 31, 0.8),
      rgba(25, 27, 31, 0.8)
    ),
    url('../images/Photo-4.jpg');
  background-position:
    0 0,
    50%;
  background-size: auto, cover;
  padding-top: 190px;
}

.subpage-header.pricing-5 {
  background-image: linear-gradient(
      rgba(31, 111, 255, 0.8),
      rgba(31, 111, 255, 0.8)
    ),
    url('../images/Photo-5_2.jpg');
  background-position:
    0 0,
    50%;
  background-size: auto, cover;
  padding-bottom: 200px;
}

.subpage-header.about-2 {
  background-image: linear-gradient(
      rgba(31, 111, 255, 0.8),
      rgba(31, 111, 255, 0.8)
    ),
    url('../images/Photo-5.jpg');
  background-position:
    0 0,
    50%;
  background-size: auto, cover;
  padding-top: 180px;
  padding-bottom: 90px;
}

.subpage-header.about-5 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/Photo-6_1.jpg');
  background-position:
    0 0,
    50%;
  background-size: auto, cover;
  padding-top: 250px;
  padding-bottom: 170px;
}

.subpage-header.ui {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/Photo-2.jpg');
  background-position:
    0 0,
    50%;
  background-size: auto, cover;
  padding-top: 210px;
}

.subpage-header.blog-1 {
  background-image: linear-gradient(
      rgba(31, 111, 255, 0.9),
      rgba(31, 111, 255, 0.9)
    ),
    url('../images/Photo-4.jpg');
  background-position:
    0 0,
    50%;
  background-size: auto, cover;
}

.subpage-header.sign-up-1 {
  background-image: linear-gradient(
      rgba(31, 111, 255, 0.9),
      rgba(31, 111, 255, 0.9)
    ),
    url('../images/Photo-4.jpg');
  background-position:
    0 0,
    50% 0;
  background-size: auto, cover;
}

.subpage-header.blog-2 {
  background-image: linear-gradient(
      rgba(28, 35, 49, 0.9),
      rgba(28, 35, 49, 0.9)
    ),
    url('../images/Photo-6_1.jpg');
  background-position:
    0 0,
    50%;
  background-size: auto, cover;
  padding-top: 125px;
  padding-bottom: 0;
}

.subpage-title {
  margin-top: 0;
  margin-bottom: 0;
  font-family:
    Source Sans Pro,
    sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 40px;
}

.page-subtitle {
  width: 65%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  font-family:
    Source Sans Pro,
    sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 27px;
  display: block;
}

.cta-column-right {
  text-align: right;
}

.cta-title {
  font-size: 26px;
}

.cta-title.subtitle {
  color: #a8a8a8;
  margin-top: 20px;
  font-size: 16px;
}

.logo {
  height: 40px;
  margin-top: 3px;
}

.logo.fixed {
  min-height: 64px;
  margin-top: 0;
}

.feature-text-block {
  max-width: 700px;
}

.main-feature-title {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 35px;
  line-height: 37px;
}

.feature-intro-title {
  color: #bebebe;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 14px;
}

.small-features-wrapper {
  margin-top: 30px;
}

.container-2 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.flex-block-2 {
  grid-column-gap: 24px;
  grid-row-gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.flex-block-3,
.flex-block-4,
.flex-block-5 {
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .navbar {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }

  .navbar.white {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-menu {
    background-color: #292c31;
    border-radius: 0;
    margin-top: 0;
  }

  .nav-link {
    width: 100%;
    max-width: 1200px;
    color: #fff;
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 35px;
  }

  .nav-link:hover {
    color: #fff;
    background-color: #000;
  }

  .nav-link.dropdown-toggle {
    color: #fff;
  }

  .nav-link.light {
    width: 100%;
    max-width: 1500px;
    border-color: rgba(0, 0, 0, 0);
    border-radius: 0;
    margin-right: 0;
    padding-left: 35px;
    padding-right: 35px;
  }

  .nav-link.light:hover {
    background-color: #000;
  }

  .nav-link.light.w--current {
    border-color: rgba(0, 0, 0, 0);
  }

  .dropdown {
    width: 100%;
    max-width: 1500px;
  }

  .dropdown-link {
    padding-left: 35px;
  }

  .section {
    padding: 45px;
  }

  .section.contact {
    padding-top: 40px;
    padding-bottom: 30px;
  }

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

  .section-title-wrapper {
    width: 85%;
    margin-bottom: 40px;
  }

  .section-title {
    margin-bottom: 4px;
    font-size: 31px;
    line-height: 30px;
  }

  .section-description {
    margin-top: 20px;
    font-size: 19px;
  }

  .image-section-overlay {
    padding: 90px 45px;
  }

  .image-section-overlay.dark {
    padding-top: 80px;
    padding-bottom: 190px;
  }

  .footer-inline-link {
    margin-right: 9px;
    font-size: 12px;
  }

  .hero-block-overlay {
    padding: 170px 45px 140px;
  }

  .hero-block-overlay.business-2 {
    padding-bottom: 48px;
    padding-left: 45px;
    padding-right: 45px;
    padding-top: 160px;
  }

  .overall-hero-title {
    font-size: 41px;
    line-height: 53px;
  }

  .worldmap-left-wrapper {
    width: 670px;
    top: 27px;
    left: -101px;
  }

  .white-footer {
    padding-left: 45px;
    padding-right: 45px;
  }

  .dropdown-icon {
    margin-right: 30px;
  }

  .full-hero-content-block {
    width: 100%;
  }

  .subpage-header {
    padding: 140px 45px 60px;
  }

  .subpage-header.contact-1 {
    padding-top: 110px;
  }

  .subpage-header.about-1 {
    padding-top: 140px;
  }

  .subpage-header.pricing-5 {
    padding-bottom: 170px;
  }

  .subpage-header.about-2 {
    padding-top: 150px;
    padding-bottom: 50px;
  }

  .subpage-header.about-5 {
    padding-top: 180px;
    padding-bottom: 80px;
  }

  .subpage-header.ui {
    padding: 150px 45px 50px;
  }

  .subpage-header.blog-1 {
    padding-bottom: 50px;
  }

  .subpage-header.blog-2 {
    padding-top: 90px;
  }

  .page-subtitle {
    width: 80%;
  }

  .cta-column-right {
    padding-top: 30px;
  }

  .cta-title {
    font-size: 28px;
    line-height: 24px;
  }

  .transparant-menu-button {
    width: 50px;
    height: 50px;
    color: #fff;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    margin-right: 20px;
    padding-top: 14px;
    padding-left: 0;
    padding-right: 0;
  }

  .transparant-menu-button:hover {
    background-color: rgba(0, 0, 0, 0.3);
  }

  .fixed-nav-menu-button {
    width: 50px;
    height: 50px;
    color: #fff;
    text-align: center;
    background-color: #1f6fff;
    border-radius: 4px;
    margin-right: 10px;
    padding-top: 14px;
    padding-left: 0;
    padding-right: 0;
  }

  .fixed-nav-menu-button:hover {
    background-color: #1859cf;
  }

  .feature-text-block {
    width: 510px;
  }

  .container-2 {
    justify-content: space-between;
  }
}

@media screen and (max-width: 767px) {
  .navbar {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
  }

  .navbar.white {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-link {
    padding-left: 25px;
  }

  .nav-link.light {
    padding-left: 25px;
    padding-right: 25px;
  }

  .dropdown-link {
    padding-left: 25px;
  }

  .section {
    padding: 25px;
  }

  .section.feature-section {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .section-title-wrapper {
    width: 95%;
    margin-bottom: 40px;
  }

  .section-title {
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 30px;
  }

  .footer-row {
    padding-left: 25px;
    padding-right: 25px;
  }

  .image-section-overlay {
    padding: 60px 25px;
  }

  .image-section-overlay.pricing {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .image-section-overlay.dark {
    padding-top: 60px;
  }

  .simple-bottom-footer {
    text-align: left;
    margin-top: 25px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .hero-block-overlay {
    padding-top: 120px;
    padding-bottom: 90px;
  }

  .hero-block-overlay.business-2 {
    padding-bottom: 48px;
    padding-top: 140px;
  }

  .contact-form {
    width: 100%;
  }

  .field.email {
    margin-bottom: 10px;
  }

  .footer-social-col-right {
    text-align: left;
    padding-top: 10px;
    padding-left: 0;
  }

  .bottom-footer-paragraph {
    float: none;
    margin-bottom: 7px;
  }

  .bottom-footer-paragraph.right,
  .bottom-footer-paragraph.dark {
    float: none;
  }

  .footer-logo-column-left {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-menu-column {
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .overall-hero-title {
    font-size: 30px;
    line-height: 33px;
  }

  .worldmap-left-wrapper {
    width: 420px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    top: 0;
    left: 0;
  }

  .map-contact-form {
    width: 100%;
    margin-bottom: 0;
    padding: 0;
  }

  .white-footer {
    padding: 25px;
  }

  .bottom-footer-block.white-footer-block {
    margin-top: 0;
  }

  .subpage-header {
    padding: 110px 25px 40px;
  }

  .subpage-header.contact-1 {
    padding-top: 90px;
  }

  .subpage-header.about-1 {
    padding-top: 100px;
  }

  .subpage-header.about-2 {
    padding-top: 130px;
    padding-bottom: 30px;
  }

  .subpage-header.about-3 {
    padding-top: 90px;
  }

  .subpage-header.about-5 {
    padding-top: 140px;
    padding-bottom: 70px;
  }

  .subpage-header.ui {
    padding-top: 110px;
    padding-left: 35px;
    padding-right: 35px;
  }

  .subpage-header.blog-1 {
    padding-bottom: 30px;
  }

  .subpage-header.sign-up-1 {
    padding-top: 120px;
  }

  .subpage-header.blog-2 {
    padding-top: 80px;
  }

  .subpage-title {
    font-size: 30px;
  }

  .page-subtitle {
    width: 100%;
    margin-top: 10px;
  }

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

  .cta-column-right {
    text-align: center;
    padding-top: 0;
  }

  .logo {
    height: 30px;
    margin-top: 10px;
  }

  .transparant-menu-button {
    width: 40px;
    height: 40px;
    padding-top: 8px;
  }

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

  .feature-text-block {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 31px;
    line-height: 37px;
  }

  h2 {
    font-size: 24px;
    line-height: 29px;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
  }

  .navbar.white {
    padding-bottom: 10px;
  }

  .button {
    margin-top: 10px;
    padding-left: 19px;
    padding-right: 19px;
    font-size: 11px;
    line-height: 21px;
  }

  .button._2 {
    margin-left: 4px;
  }

  .section {
    padding: 25px;
  }

  .section.contact {
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .section.blue-cta-section {
    text-align: center;
  }

  .section-title-wrapper {
    width: 100%;
    margin-bottom: 30px;
  }

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

  .section-description {
    margin-top: 14px;
    font-size: 15px;
    line-height: 23px;
  }

  .footer-row {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-section-overlay {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .image-section-overlay.dark {
    padding-top: 30px;
  }

  .simple-footer {
    padding-top: 35px;
  }

  .simple-bottom-footer {
    padding: 20px 20px 13px;
  }

  .footer-inline-link {
    margin-top: -1px;
    margin-right: 7px;
  }

  .hero-block-overlay {
    padding: 90px 25px 40px;
  }

  .hero-block-overlay.business-2 {
    padding-bottom: 32px;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 120px;
  }

  .bottom-footer-paragraph.right.dark {
    margin-top: 10px;
  }

  .footer-logo-column-left {
    padding-bottom: 10px;
  }

  .long-feature-block {
    padding-left: 55px;
    padding-right: 10px;
  }

  .long-feature-block.title-only {
    padding-top: 0;
    padding-left: 65px;
    padding-right: 0;
  }

  .long-feature-title {
    margin-bottom: 7px;
  }

  .long-feature-title.uppercase {
    font-size: 16px;
    line-height: 21px;
  }

  .overall-hero-title {
    font-size: 27px;
    line-height: 31px;
  }

  .worldmap-left-wrapper {
    width: 260px;
  }

  .dark-field.area {
    height: 98px;
  }

  .subpage-header {
    padding-top: 90px;
    padding-bottom: 20px;
  }

  .subpage-header.contact,
  .subpage-header.contact-2 {
    padding-top: 80px;
  }

  .subpage-header.contact-1 {
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .subpage-header.pricing-2 {
    padding-bottom: 30px;
  }

  .subpage-header.about-2 {
    padding: 90px 20px 20px;
  }

  .subpage-header.about-3 {
    padding-top: 80px;
  }

  .subpage-header.about-5 {
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .subpage-header.ui {
    padding: 94px 25px 30px;
  }

  .subpage-header.blog-1 {
    padding-top: 80px;
    padding-bottom: 15px;
  }

  .subpage-header.sign-up-1 {
    padding-top: 80px;
  }

  .subpage-header.blog-2 {
    padding-top: 60px;
  }

  .subpage-title {
    font-size: 20px;
    line-height: 20px;
  }

  .page-subtitle {
    margin-top: 10px;
    font-size: 15px;
    line-height: 23px;
  }

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

  .cta-title {
    font-size: 21px;
    font-weight: 700;
    line-height: 22px;
  }

  .cta-title.subtitle {
    margin-top: 12px;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
  }

  .logo {
    margin-top: 5px;
  }

  .logo.fixed {
    margin-top: 6px;
  }

  .transparant-menu-button {
    margin-right: 0;
  }

  .fixed-nav-menu-button {
    width: 40px;
    height: 40px;
    margin-right: 0;
    padding-top: 9px;
  }

  .main-feature-title {
    margin-bottom: 20px;
    font-size: 29px;
    line-height: 32px;
  }

  .w-layout-hflex {
    flex-direction: column;
  }
}

p:last-child {
  margin-bottom: 0;
}

.product-description {
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* margin: 24px; */
}

.signup-container {
  align-items: flex-start;
  display: flex;
  display: flex;
  flex-direction: row;
  gap: 48px;
  justify-content: space-between;
  position: relative;
}

@media screen and (max-width: 767px) {
  .signup-container {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

.signup-container::after,
.signup-container::before {
  display: none;
}

.signup-heading {
  flex-grow: 1;
  text-wrap: balance;
}

.signup-form-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 12px;
}

.signup-form-container .section-description {
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  .signup-form-container .section-description {
    justify-content: center;
  }
}

.signup-form {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.long-feature-icon-wrapper svg {
  color: #0082f3;
}

.map-and-form-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  background-image: url('../images/worldmap-portland.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position-y: 56px;
  min-height: 300px;
}

.map-and-form-wrapper > * {
  flex-basis: 50%;
}

.contact-headquarters {
}

.contact-headquarters p {
  text-shadow:
    -1px -1px 0px white,
    1px 1px 0px white,
    1px -1px 0px white,
    -1px 1px 0px white;
}

@media screen and (max-width: 767px) {
  .map-and-form-wrapper {
    flex-direction: column;
  }

  .contact-headquarters {
    padding-bottom: 150px;
  }

  .map-and-form-wrapper > * {
    flex-basis: auto;
  }

  .contact-container {
    flex-direction: column;
  }
}

@media screen and (max-width: 479px) {
  .map-and-form-wrapper {
    background-position-y: 100px;
  }
}

.email-form {
  width: 100%;
}
