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

.dropdown-link {
  -webkit-transition: background-color 200ms ease, color 200ms ease;
  transition: background-color 200ms ease, color 200ms ease;
  font-size: 13px;
}

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

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

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

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

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

.navbar {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 40px;
  padding-bottom: 45px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
  background-color: transparent;
}

.navbar.white {
  position: static;
  left: 0px;
  top: 0px;
  right: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 30px;
  padding-bottom: 30px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0 0 33px 0 rgba(0, 0, 0, 0.2);
  text-align: left;
}

.logo-block {
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0px;
  margin-bottom: 0px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}

.nav-link {
  margin-right: 3px;
  padding: 11px 15px;
  border: 1px solid transparent;
  border-radius: 5px;
  background-color: transparent;
  -webkit-transition: background-color 200ms ease, border 200ms ease;
  transition: background-color 200ms ease, border 200ms ease;
  font-size: 13px;
  line-height: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

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

.nav-link.dropdown-toggle.w--open {
  background-color: rgba(0, 0, 0, 0.1);
}

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

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

.nav-link.light:hover {
  border-color: hsla(0, 0%, 100%, 0.2);
}

.nav-link.light.w--current {
  border-color: hsla(0, 0%, 100%, 0.2);
}

.dropdown-list.w--open {
  overflow: hidden;
  margin-top: 10px;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
}

.small-dropdown-icon {
  margin-right: 11px;
  opacity: 0.5;
  font-size: 12px;
}

.container {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin-right: 0px;
  margin-left: 0px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.overall-video-lightbox {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 230px;
  border-radius: 4px;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.3);
}

.overall-video-lightbox.large-hero {
  display: block;
  width: 90%;
  height: 330px;
  margin-right: auto;
  margin-left: auto;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

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

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

.button.outline {
  border: 1px solid #fff;
  background-color: transparent;
}

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

.video-lightbox-button {
  position: absolute;
  left: 0px;
  top: 53%;
  right: 0px;
  display: block;
  width: 60px;
  height: 60px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 16px;
  padding-left: 2px;
  border-radius: 100%;
  background-color: #5ec045;
  -webkit-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
  -webkit-transition: -webkit-transform 200ms ease;
  transition: -webkit-transform 200ms ease;
  transition: transform 200ms ease;
  transition: transform 200ms ease, -webkit-transform 200ms ease;
  text-align: center;
}

.video-lightbox-button:hover {
  box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.5);
  -webkit-transform: translate(0px, -50%) scale(1.2);
  -ms-transform: translate(0px, -50%) scale(1.2);
  transform: translate(0px, -50%) scale(1.2);
}

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

.video-lightbox-image-block {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.1))), url('../images/Photo-6.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../images/Photo-6.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
}

.video-lightbox-image-block.hero {
  background-image: url('../images/Photo-7.jpg');
  background-position: 50% 50%;
  background-size: cover;
  text-align: center;
}

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

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

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

.overall-hero-description {
  display: block;
  width: 70%;
  margin-right: auto;
  margin-left: auto;
  opacity: 0.71;
  font-size: 19px;
  line-height: 24px;
  font-weight: 300;
}

.video-lightbox-icon {
  height: 25px;
}

.text-block {
  font-size: 24px;
}

.text-block-2 {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.text-block-2.light {
  color: #fff;
}

.image-hero {
  background-color: #0f1011;
  background-image: url('../images/Photo-2.jpg');
  background-position: 50% 0px;
  background-size: cover;
}

.image-hero.busines-2 {
  background-image: url('../images/Photo-11.jpg');
  background-position: 50% 50%;
  background-size: cover;
}

.overall-hero-title-2 {
  margin-top: 0px;
  margin-bottom: 20px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 46px;
  font-weight: 700;
}

.feature-info-icon {
  height: 35px;
  margin-right: 15px;
  float: left;
}

.feature-info-block {
  position: relative;
  width: 90%;
  text-align: justify;
}

.feature-info-row {
  width: 100%;
  margin-top: 40px;
  margin-right: 0px;
  margin-left: 0px;
  padding-left: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.container-2 {
  position: relative;
  max-width: 1200px;
}

.container-2.above-image-section {
  position: static;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1000px;
  margin-bottom: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: center;
}

.container-2.above-image-section {
  max-width: 1200px;
  margin-bottom: 0px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.container-2.centered {
  text-align: center;
}

.section {
  position: static;
  height: auto;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fff;
}

.feature-info-paragraph {
  width: 100.00012%;
  opacity: 0.7;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 14px;
}

.feature-info-title {
  margin-top: 8px;
  margin-bottom: 30px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 21px;
  font-weight: 400;
}

.feature-info-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

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

.section-title {
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 40px;
  line-height: 39px;
  font-weight: 600;
}

.section-description {
  margin-top: 30px;
  font-size: 21px;
  line-height: 27px;
  font-weight: 300;
}

.small-feature-icon {
  position: absolute;
  left: 15px;
  top: 20px;
  width: 45px;
  height: 45px;
}

.small-paragraph {
  margin-bottom: 0px;
  font-family: 'Source Sans Pro', sans-serif;
  color: #838383;
  font-size: 14px;
  line-height: 20px;
}

.feature-line-block {
  position: relative;
  display: block;
  width: auto;
  height: 252px;
  padding: 25px 35px 25px 75px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  text-align: left;
}

.small-feature-title {
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.section-2 {
  position: static;
  top: 101px;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fafafa;
}

.feature-blocks-row {
  margin: 10px 0px;
}

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

.image-section-overlay.white-gradient {
  padding-top: 0px;
  padding-bottom: 240px;
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(39%, #fff), to(hsla(0, 0%, 100%, 0)));
  background-image: linear-gradient(180deg, #fff 39%, hsla(0, 0%, 100%, 0));
  color: #000;
}

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

.image-section.about-us-2 {
  background-image: url('../images/Photo-1.jpg');
}

.section-title-wrapper-2 {
  display: block;
  width: 60%;
  margin-right: auto;
  margin-bottom: 60px;
  margin-left: auto;
  text-align: center;
}

.section-title-wrapper-2.info {
  margin-bottom: 30px;
}

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

.service-image {
  width: 90%;
}

.bold-text {
  font-size: 40px;
}

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

.long-feature-block.title-only {
  height: auto;
  margin-top: 0px;
  padding: 20px 20px 20px 80px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.08);
  border-radius: 4px;
}

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

.feature-text-block {
  width: 600px;
  float: left;
}

.feature-text-block.right {
  width: 600px;
  float: right;
}

.main-feature-title {
  margin-top: 0px;
  margin-bottom: 30px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 35px;
  line-height: 37px;
}

.small-features-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}

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

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

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

.long-feature-title.uppercase {
  margin-bottom: 4px;
  float: none;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-transform: none;
}

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

.browser-mockup-left {
  position: absolute;
  left: -459px;
  top: 0%;
  right: auto;
  bottom: auto;
  width: auto;
  height: 100%;
  float: left;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  box-shadow: 4px 4px 33px 0 rgba(0, 0, 0, 0.1);
}

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

.section-3 {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fff;
}

.section-3.feature-section {
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-3.feature-section.odd {
  position: relative;
  border-top: 1px solid #ececec;
  background-color: #fff;
}

.section-3.top-line {
  border-top: 1px solid #ddd;
  background-color: #fafafa;
  outline-color: #333;
  outline-offset: 0px;
  outline-style: none;
}

.paragraph {
  font-family: 'Source Sans Pro', sans-serif;
}

.browser-mockup-right {
  position: absolute;
  top: 0px;
  right: -315px;
  width: auto;
  height: 100%;
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  box-shadow: 3px 3px 33px 0 rgba(0, 0, 0, 0.1);
}

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

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

.small-features-wrapper-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}

.long-feature-icon-wrapper-2 {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 50px;
  height: 50px;
  padding-top: 0px;
  border-style: none;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  text-align: center;
}

.bold-text-2 {
  font-size: 30px;
}

.bold-text-3 {
  font-size: 30px;
}

.pricing-paragraph {
  height: 30px;
  margin-bottom: 0px;
  font-size: 13px;
  line-height: 22px;
}

.pricing-price {
  margin-top: 10px;
  margin-bottom: 0px;
  font-size: 44px;
  line-height: 40px;
  font-weight: 700;
}

.pricing-block {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 392px;
  padding: 60px 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border-radius: 4px;
  background-color: #f0f4f7;
  text-align: center;
}

.pricing-block.image {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url('../images/Photo-9.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/Photo-9.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  color: #fff;
}

.container-3 {
  position: relative;
  max-width: 1200px;
}

.pricing-block-tag {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  display: block;
  width: 90px;
  margin-right: auto;
  margin-left: auto;
  padding: 6px 9px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  background-color: #5ec045;
  font-family: Montserrat, sans-serif;
  font-size: 9px;
  text-transform: uppercase;
}

.section-title-3 {
  margin-top: 0px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 46px;
  line-height: 39px;
  font-weight: 600;
}

.pricing-title {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.image-2 {
  max-width: 100%;
}

.div-block {
  width: 80px;
  height: 80px;
}

.portfolio-tabs-menu {
  text-align: center;
}

.portfolio-tab-pane {
  padding-top: 30px;
}

.empty-state {
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.08);
  text-align: center;
}

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

.portfolio-tab-button {
  margin-right: 3px;
  margin-left: 3px;
  border-radius: 3px;
  background-color: #f8f8f8;
  -webkit-transition: background-color 200ms ease;
  transition: background-color 200ms ease;
  color: #6f737a;
  font-size: 13px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.portfolio-tab-button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.portfolio-tab-button.w--current {
  background-color: #1f6fff;
  color: #fff;
}

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

.nav-menu-2 {
  z-index: 1;
  margin-top: 5px;
  border-radius: 4px;
}

.logo-block-2 {
  z-index: 10;
  margin-right: 30px;
}

.container-4 {
  margin-right: 0px;
  margin-left: 0px;
}

.contact-info-small-block {
  margin-bottom: 30px;
}

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

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

.error-bg {
  padding-top: 12px;
  padding-bottom: 1px;
  border-radius: 3px;
  color: #e42121;
  font-size: 12px;
  text-align: center;
}

.contact-info-block-right {
  width: 35%;
  float: right;
}

.form-title {
  margin-top: 0px;
  margin-bottom: 60px;
  line-height: 34px;
  font-weight: 600;
  text-align: center;
}

.form-title.subtitle {
  margin-top: 13px;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
}

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

.contact-info-block {
  height: 522px;
  padding: 45px 40px 0px;
  border-style: solid;
  border-width: 2px;
  border-color: hsla(0, 0%, 100%, 0.25);
  border-radius: 4px;
  text-align: left;
}

.container-5 {
  position: relative;
}

.small-contact-info-title {
  margin-bottom: 9px;
  opacity: 0.6;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.field {
  height: 50px;
  border: 0px solid #000;
  border-radius: 4px;
  background-color: hsla(0, 0%, 100%, 0.2);
  -webkit-transition: background-color 200ms ease;
  transition: background-color 200ms ease;
}

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

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

.field.rounded {
  height: 40px;
  border-radius: 4px;
  background-color: #f2f3f7;
  -webkit-transition: background-color 200ms ease, box-shadow 200ms ease;
  transition: background-color 200ms ease, box-shadow 200ms ease;
}

.field.rounded:hover {
  background-color: #dfe1e7;
}

.field.rounded:focus {
  background-color: #fff;
  box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.2);
  color: #000;
}

.field.rounded.area {
  height: 100px;
}

.white-contact-form {
  width: 60%;
  height: 522px;
  margin-bottom: 0px;
  padding: 35px 45px;
  float: left;
  border-radius: 4px;
  background-color: #fff;
  color: #000;
  text-align: left;
}

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

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

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

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

.light-footer-link {
  display: block;
  margin-bottom: 7px;
  color: #94979e;
  font-size: 13px;
  text-decoration: none;
}

.dark-footer-title {
  margin-bottom: 21px;
  font-family: 'Source Sans Pro', sans-serif;
  color: #1f6fff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.bottom-footer-link:hover {
  color: hsla(0, 0%, 100%, 0.7);
}

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

.color-social-button {
  width: 30px;
  height: 30px;
  margin-right: 2px;
  margin-bottom: 4px;
  padding-top: 3px;
  border-radius: 4px;
  background-color: #4e5f97;
  text-align: center;
}

.color-social-button:hover {
  opacity: 0.8;
}

.color-social-button.google {
  background-color: #e22047;
}

.color-social-button.twitter {
  background-color: #37a5e4;
}

.white-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 80px;
  padding-bottom: 80px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  font-size: 16px;
}

.footer-contact-info-block {
  margin-top: 0px;
  color: #94979e;
  font-size: 14px;
}

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

.bottom-footer-block.white-footer-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #e1e1e4;
}

.bottom-footer-paragraph {
  margin-bottom: 0px;
  float: left;
  font-size: 12px;
}

.bottom-footer-paragraph.right {
  float: right;
}

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

.white-footer-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.link-3 {
  color: #94979e;
  font-size: 14px;
  text-decoration: none;
}

.footer-info {
  margin-bottom: 10px;
  color: #94979e;
  font-size: 14px;
}

.footer-info.title {
  color: #4e5971;
  font-size: 14px;
  text-align: justify;
}

.div-block-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.columns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}

.footer-columns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}

.hero-section {
  overflow: hidden;
  height: 100%;
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(78, 76, 76, 0.65)), to(rgba(78, 76, 76, 0.65))), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-image: linear-gradient(180deg, rgba(78, 76, 76, 0.65), rgba(78, 76, 76, 0.65)), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0px 0px, 0px 50%;
  background-size: auto, 1440px;
}

.hero-section.homepage {
  position: relative;
  height: 675px;
  padding-top: 190px;
  padding-bottom: 80px;
  background-image: linear-gradient(135deg, rgba(42, 111, 253, 0.81) 20%, rgba(14, 179, 40, 0.55)), linear-gradient(180deg, rgba(0, 0, 0, 0.37), rgba(0, 0, 0, 0.37)), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0px 0px, 0px 0px, 50% 0px;
  background-size: auto, auto, cover;
  background-attachment: scroll, scroll, fixed;
}

.hero-section.homepage.start-up {
  height: 675px;
  background-image: linear-gradient(135deg, rgba(42, 111, 253, 0.72), rgba(19, 214, 144, 0.61)), url('../images/slider-1.jpg');
  background-position: 0px 0px, 50% 50%;
  background-attachment: scroll, fixed;
}

.hero-section.homepage.start-up.gcp {
  height: 600px;
  padding-top: 140px;
}

.hero-section.homepage.start-up.gcp {
  height: 600px;
  padding-top: 140px;
  background-image: none;
  background-position: 50% 0%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.hero-section.homepage.start-up.gcp._2 {
  background-image: url('../images/google_bg_2.png');
  background-position: 50% 0%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.hero-tittle {
  margin-top: 0px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 56px;
  line-height: 66px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 3px;
  text-transform: capitalize;
}

.hero-tittle.black {
  color: #000;
}

.hero-tittle.intro {
  display: block;
  margin-top: 50px;
  margin-bottom: 10px;
  float: none;
  font-size: 48px;
  line-height: 61px;
  text-align: right;
}

.hero-tittle.intro.center {
  margin-top: 0px;
  text-align: center;
}

.hero-tittle.intro.center.blogtitle {
  font-size: 40px;
  line-height: 48px;
}

.hero-tittle.left {
  font-weight: 500;
  text-align: left;
}

.button-blue {
  width: auto;
  padding: 20px 40px;
  border-radius: 100px;
  background-color: #00a0ff;
  -webkit-transition: background-color 300ms ease, box-shadow 300ms ease, -webkit-transform 300ms ease;
  transition: background-color 300ms ease, box-shadow 300ms ease, -webkit-transform 300ms ease;
  transition: background-color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
  transition: background-color 300ms ease, transform 300ms ease, box-shadow 300ms ease, -webkit-transform 300ms ease;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.button-blue:hover {
  background-color: #0260f9;
  box-shadow: 7px 7px 30px 0 rgba(39, 83, 109, 0.2);
  -webkit-transform: translate(0px, -3px);
  -ms-transform: translate(0px, -3px);
  transform: translate(0px, -3px);
  color: #fff;
}

.button-blue._100 {
  width: 100%;
}

.button-wrap {
  margin-top: 40px;
}

.hero-paragraph {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
  text-align: center;
}

.hero-paragraph.black {
  color: #000;
}

.hero-paragraph.left {
  width: auto;
  text-align: left;
}

.hero-paragraph.narrow {
  margin-right: 136px;
  margin-left: 136px;
}

.hero-container {
  max-width: 1200px;
  padding: 20px 0px 0px;
  text-align: center;
}

.image-wrap.l2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  padding-right: 0px;
  padding-left: 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: transparent;
  background-image: url('../images/20211026-172417.png');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.content-grid {
  display: -ms-grid;
  display: grid;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 80px;
  grid-row-gap: 45px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.content-grid.l2 {
  grid-column-gap: 40px;
  -ms-grid-columns: 1fr 0.25fr;
  grid-template-columns: 1fr 0.25fr;
}

.text {
  margin-bottom: 0px;
  font-family: 'Source Sans Pro', sans-serif;
  color: #000;
  font-weight: 400;
  text-align: left;
}

.heading {
  margin-top: 0px;
  margin-bottom: 20px;
  font-family: 'Source Sans Pro', sans-serif;
  color: #000;
  font-size: 42px;
  line-height: 1.2em;
  text-align: left;
  text-transform: none;
}

.text-column-2.l1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.text-column-2.l1.topmargin {
  width: 100%;
  margin-top: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.text-column-2.l2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.spacer {
  height: 48px;
  background-color: #dee5eb;
}

.spacer._48 {
  width: 48px;
  border-radius: 6px;
  background-color: transparent;
}

.spacer._48.line {
  border-top: 4px solid #00a0ff;
  border-radius: 0px;
}

.spacer._48.line.white {
  border-top-color: #fff;
}

.spacer._32 {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background-color: transparent;
}

.spacer._16 {
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background-color: transparent;
}

.spacer._24 {
  width: 24px;
  height: 24px;
  background-color: transparent;
  text-transform: uppercase;
}

.headingwrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.headingwrap.left {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.pricing-checkmark {
  width: 28px;
  margin-right: 10px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.bold-span {
  margin-bottom: 4px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

.checkmark-grid {
  display: -ms-grid;
  display: grid;
  margin-bottom: 20px;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 12px;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.section-4 {
  position: static;
  display: block;
  overflow: visible;
  width: auto;
  height: auto;
  padding: 70px 20px;
  background-color: #fff;
  text-align: center;
}

.section-4.smoke {
  background-color: #f8faff;
}

.section-4.dark {
  overflow: visible;
  background-color: #07132e;
  background-image: url('../images/bg_youshi.jpg');
  background-position: 0px 0px;
  background-size: auto;
  color: #fff;
}

.section-4._0 {
  padding-top: 0px;
}

.section-4.table {
  display: block;
  background-color: transparent;
  background-image: linear-gradient(135deg, #00a0ff, rgba(74, 21, 235, 0.87)), linear-gradient(135deg, #00a0ff, rgba(3, 190, 155, 0.65)), url('../images/56bf87e511eb064f4181f06d_Bg.jpg');
  background-position: 0px 0px, 0px 0px, 50% 50%;
  background-size: auto, auto, auto;
}

.container-6 {
  position: relative;
  display: block;
  height: auto;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0px;
  padding-left: 0px;
  text-align: center;
}

.container-6.center {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 0px;
  padding-bottom: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.container-6.center.single-page {
  left: 0px;
  top: 0px;
  right: 0px;
  display: block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  text-align: left;
}

.container-6.wrapper {
  padding-right: 0px;
  padding-left: 0px;
}

.div-service {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  padding: 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: none;
  border-width: 2px;
  border-color: rgba(16, 168, 189, 0.82);
  border-radius: 0px;
  background-color: transparent;
}

.div-service.msp2 {
  width: 80px;
  height: 80px;
  border-radius: 0px;
  background-image: url('../images/goujian.png');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.div-service.msp1 {
  width: 80px;
  height: 80px;
  border-radius: 0px;
  background-image: url('../images/guihua.png');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.div-service.msp4 {
  width: 80px;
  height: 80px;
  border-radius: 0px;
  background-image: url('../images/guanli.png');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.div-service.msp3 {
  width: 80px;
  height: 80px;
  border-radius: 0px;
  background-image: url('../images/yunxing.png');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.heading-2 {
  margin-top: 0px;
  margin-bottom: 20px;
  color: #000;
  font-size: 42px;
  line-height: 1.2em;
  text-align: left;
  text-transform: none;
}

.heading-2.features {
  margin-top: 10px;
  margin-bottom: 20px;
  color: #000;
  font-size: 24px;
  line-height: 1.4em;
  font-weight: 500;
  text-align: center;
  text-transform: capitalize;
}

.heading-2.features.white {
  color: #fff;
  font-size: 22px;
}

.heading-2.features.left-side {
  color: #000;
  text-align: left;
}

.heading-2.features.left-side.black {
  margin-top: 0px;
  margin-bottom: 4px;
  color: #000;
  font-weight: 400;
  text-transform: capitalize;
}

.heading-2.center {
  margin-top: 0px;
  margin-bottom: 25px;
  color: #000;
  font-size: 42px;
  line-height: 1.2em;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0px;
  text-transform: capitalize;
}

.heading-2.center.white-copy {
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
}

.heading-2.center.nocap {
  margin-bottom: 40px;
  text-transform: capitalize;
}

.heading-2.center.white {
  font-weight: 400;
  text-transform: capitalize;
}

.heading-2.left {
  margin-top: 0px;
  margin-bottom: 30px;
  font-size: 42px;
  font-weight: 500;
  text-align: left;
}

.features-block {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  margin-top: 0px;
  margin-right: 0px;
  margin-left: 0px;
  padding: 40px 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: none;
  border-width: 1px;
  border-color: rgba(36, 195, 226, 0.4);
  border-radius: 20px;
  background-color: #fff;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  text-align: center;
  text-decoration: none;
}

.features-block:hover {
  -webkit-transform: translate(0px, -5px);
  -ms-transform: translate(0px, -5px);
  transform: translate(0px, -5px);
}

.features-block.stroke {
  border-style: solid;
  border-color: #ececec;
}

.features-block.stroke:hover {
  border-color: #ececec;
}

.features-block.stroke._410 {
  height: 410px;
}

.features-block.stroke._410:hover {
  border-color: #ececec;
}

.features-block.icon {
  position: relative;
  display: block;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  padding-right: 20px;
  padding-bottom: 0px;
  padding-left: 20px;
  border-right: 1px none hsla(0, 0%, 82.7%, 0.79);
  text-align: center;
}

.features-block.icon.alternative {
  margin-bottom: 0px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  background-color: transparent;
}

.features-block.icon.alternative.top {
  padding-bottom: 0px;
}

.features-block.icon.alternative.top:hover {
  background-color: rgba(2, 2, 2, 0.6);
}

.features-block.icon.alternative.top.narrow {
  margin-bottom: 10px;
  padding-top: 20px;
}

.features-block.icon.alternative.top.narrow:hover {
  background-color: transparent;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.paragraph-2.center {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  line-height: 1.8em;
}

.paragraph-2.policy {
  margin-top: 12px;
  margin-bottom: 12px;
  color: #626a72;
  font-size: 14px;
  font-weight: 300;
}

.row-motion {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 0px;
}

.paragraph-3 {
  margin-bottom: 30px;
  color: #000;
  font-size: 16px;
  line-height: 1.8em;
  font-weight: 300;
  text-align: left;
}

.paragraph-3.center {
  display: block;
  font-family: 'Source Sans Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  text-align: center;
}

.paragraph-3.white {
  margin-bottom: 25px;
}

.paragraph-3.white.center {
  color: #fff;
}

.paragraph-3.left {
  color: #5e5e5e;
  font-weight: 400;
  text-align: left;
}

.paragraph-3.left.black {
  width: auto;
  color: #000;
  font-size: 16px;
}

.paragraph-3._140px {
  height: 140px;
}

.icon-2 {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 24px;
}

.icon-2.no-margin {
  margin-bottom: 8px;
}

.text-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 640px;
  margin-right: 10px;
  margin-left: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.list-item-blue {
  color: #00a0ff;
  font-size: 16px;
  text-align: left;
}

.grid {
  margin-bottom: 40px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

._100-image {
  border-radius: 5px;
}

.features-icon {
  width: 100px;
  margin-bottom: 0px;
  float: none;
  text-align: left;
}

.features-icon.small {
  width: 90px;
  margin-right: 0px;
  margin-bottom: 0px;
}

.list-2 {
  padding-left: 20px;
}

.list-2.height {
  height: 150px;
}

.bold-span-2 {
  margin-bottom: 4px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.content-grid-2 {
  display: -ms-grid;
  display: grid;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 45px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.content-grid-2.l1-how {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.content-grid-2.l1-how.hide {
  display: none;
}

.how-card {
  display: -ms-grid;
  display: grid;
  padding: 60px 80px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 60px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  border-radius: 20px;
  background-color: #f8faff;
}

.testimonial-wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: visible;
  width: 290px;
  height: 290px;
  margin-bottom: 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.button-white {
  width: auto;
  margin-top: 0px;
  padding: 20px 40px;
  border-radius: 100px;
  background-color: #fff;
  -webkit-transition: background-color 300ms ease, box-shadow 300ms ease, -webkit-transform 300ms ease;
  transition: background-color 300ms ease, box-shadow 300ms ease, -webkit-transform 300ms ease;
  transition: background-color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
  transition: background-color 300ms ease, transform 300ms ease, box-shadow 300ms ease, -webkit-transform 300ms ease;
  color: #00a0ff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.button-white:hover {
  background-color: #f7f9fa;
  box-shadow: 7px 7px 30px 0 rgba(39, 83, 109, 0.2);
  -webkit-transform: translate(0px, -3px);
  -ms-transform: translate(0px, -3px);
  transform: translate(0px, -3px);
  color: #0260f9;
}

.photo {
  position: relative;
  z-index: 99;
  overflow: visible;
  width: auto;
  -o-object-fit: fill;
  object-fit: fill;
}

.h2-title {
  margin-top: 13px;
  margin-bottom: 40px;
  font-size: 40px;
  letter-spacing: 0em;
}

.h2-title.white {
  margin-bottom: 20px;
  color: #fff;
  font-size: 36px;
  font-weight: 400;
}

.container-7 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.container-7.l2 {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  padding: 0px 60px;
  border-radius: 20px;
  background-color: #00a0ff;
  background-image: linear-gradient(135deg, #00a0ff, rgba(47, 71, 242, 0.92) 60%, rgba(74, 21, 235, 0.87)), url('../images/bg_contact.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}

.title-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 900px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.title-wrap.align-left {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.page-header.pricing {
  padding-top: 190px;
  padding-bottom: 100px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.61)), to(rgba(0, 0, 0, 0.61))), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.61), rgba(0, 0, 0, 0.61)), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0px 0px, 50% 34%;
  background-size: auto, cover;
}

.page-header.pricing.news {
  background-image: linear-gradient(135deg, #00a0ff, rgba(3, 190, 155, 0.65)), linear-gradient(180deg, rgba(41, 41, 41, 0.6), rgba(41, 41, 41, 0.6)), url('../images/cloud-2104829_1920.jpg');
  background-position: 0px 0px, 0px 0px, 50% 100%;
  background-size: auto, auto, cover;
  background-repeat: repeat, repeat, no-repeat;
  background-attachment: scroll, scroll, fixed;
}

.page-header.pricing.news.n1 {
  padding: 190px 20px 140px;
  background-image: linear-gradient(135deg, #00a0ff, rgba(50, 67, 242, 0.71) 60%, rgba(74, 21, 235, 0.56)), linear-gradient(135deg, #00a0ff, rgba(3, 190, 155, 0.65)), linear-gradient(180deg, rgba(41, 41, 41, 0.6), rgba(41, 41, 41, 0.6));
  background-position: 0px 0px, 0px 0px, 0px 0px;
  background-size: auto, auto, auto;
  background-repeat: repeat, repeat, repeat;
  background-attachment: scroll, scroll, scroll;
}

.page-header.pricing.xiaolv {
  padding-top: 140px;
  background-image: linear-gradient(135deg, #00a0ff, rgba(74, 21, 235, 0.56)), linear-gradient(180deg, rgba(41, 41, 41, 0.6), rgba(41, 41, 41, 0.6)), url('../images/plush_design_studio__P2NZN.jpg');
  background-position: 0px 0px, 0px 0px, 50% 50%;
  background-size: auto, auto, cover;
  background-repeat: repeat, repeat, no-repeat;
  background-attachment: scroll, scroll, fixed;
}

.news-text {
  font-style: normal;
  font-weight: 400;
  text-align: left;
  text-transform: none;
  white-space: normal;
}

.button-2 {
  margin-top: 15px;
  margin-bottom: 10px;
  padding: 20px 40px;
  float: none;
  border-radius: 100px;
  background-color: #00a0ff;
  -webkit-transition: background-color 400ms ease;
  transition: background-color 400ms ease;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.button-2:hover {
  background-color: #0260f9;
  background-image: none;
}

.columns-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.column-top-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.hero-container-2 {
  max-width: 1100px;
  padding: 20px 0px 0px;
  text-align: center;
}

.icon-block-features {
  width: 70px;
  height: 70px;
  margin-right: 15px;
  margin-bottom: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  float: left;
  border: 0px none #d1d1d1;
  border-radius: 70px;
  background-color: #dddcdc;
  background-image: linear-gradient(135deg, #00a0ff, rgba(3, 190, 155, 0.65));
  text-align: center;
}

.icon-block-features:hover {
  border-color: #d1d1d1;
  background-color: #000;
}

.icon-block-features.g {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 3px;
  border-color: #fff;
  background-color: transparent;
  background-image: none;
}

.color-block-tittle-copy {
  position: relative;
  z-index: 10;
  display: inline-block;
  margin-bottom: 0px;
  padding-right: 0px;
  padding-left: 0px;
  color: #000;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  text-align: left;
}

.column-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 5px;
  padding-left: 5px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: left;
}

.color-block {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: visible;
  width: 100%;
  height: 100px;
  max-width: 300px;
  padding: 39px 0px 27px;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border: 3px none #fff;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  text-align: left;
}

.color-block:hover {
  -webkit-transform: translate(0px, -5px) scale(1.01);
  -ms-transform: translate(0px, -5px) scale(1.01);
  transform: translate(0px, -5px) scale(1.01);
}

.color-block.color {
  padding-top: 20px;
  padding-left: 50px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  box-shadow: none;
}

.text-span-37 {
  color: #000;
  font-size: 22px;
}

.font-icon {
  position: absolute;
  left: -9%;
  top: 10%;
  right: auto;
  bottom: 0%;
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
  float: right;
  color: #00a0ff;
  font-size: 80px;
  line-height: 100%;
  font-style: normal;
  font-weight: 700;
  text-align: center;
}

.row {
  display: block;
  width: 100%;
  margin-top: 35px;
  margin-bottom: 20px;
}

.service-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.column-4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.support-icon {
  margin-bottom: 20px;
}

.support-icon._2 {
  width: 50px;
  max-height: 50px;
  margin-bottom: 10px;
}

.tablecell {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 1100px;
  height: auto;
  margin-right: 0px;
  margin-left: 0px;
  padding-top: 24px;
  padding-bottom: 24px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid rgba(220, 225, 235, 0.6);
}

.tablecell.noline {
  border-bottom-style: none;
}

.tablecell.noline.small {
  padding-top: 15px;
  padding-bottom: 15px;
}

.tablecell.tall {
  height: 140px;
}

.tablecell.tall.noline {
  height: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

.price-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #fff;
}

.tabletext {
  color: #fff;
  text-transform: capitalize;
}

.tabletext.blue {
  color: #00a0ff;
  font-weight: 700;
}

.tabletext.black {
  color: #000;
}

.tableheading {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  text-transform: capitalize;
}

.tableheading.black {
  color: #000;
}

.tableheading.small {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

.tablehead {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 1100px;
  height: 75px;
  margin-right: 0px;
  margin-left: 0px;
  padding-bottom: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 2px solid rgba(220, 225, 235, 0.6);
}

.lineheading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.columns-4 {
  padding-bottom: 20px;
}

.textgongneng {
  color: #0e285c;
  font-size: 20px;
  font-weight: 500;
}

.columns-3 {
  width: 67.5%;
}

.cardgongneng {
  width: 350px;
  height: 300px;
  padding: 40px 48px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 18px 30px 0 rgba(28, 28, 87, 0.05);
}

.container-8 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1100px;
  min-height: 30px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0px;
  padding-left: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.container-8.center-align {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.textgongneng2 {
  color: #626a72;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 300;
}

.heading-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
}

.heading-3.h3 {
  margin-bottom: 8px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-size: 26px;
  line-height: 1.4em;
  font-weight: 500;
}

.heading-3.h3.gongneng {
  margin-top: 10px;
}

.heading-3.h1 {
  margin-bottom: 18px;
  font-size: 42px;
  line-height: 1.2em;
  font-style: normal;
}

.heading-3.h1.center {
  color: #000;
  font-weight: 500;
  text-align: center;
}

.heading-3.h1.center.white {
  color: #fff;
}

.heading-3.h4 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.4em;
}

.section-5 {
  position: relative;
  z-index: 1;
  padding-top: 70px;
  padding-bottom: 70px;
}

.section-5.dark-blue {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #00394d;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url('../images/bg_youshi.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg_youshi.jpg');
  background-position: 0px 0px, 0px 0px;
  background-size: auto, cover;
  color: #fff;
  -o-object-position: 100% 100%;
  object-position: 100% 100%;
}

.section-5.secwhite {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 70px;
  padding-bottom: 70px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
}

.nav-link-2 {
  margin-right: 4px;
  margin-left: 4px;
  padding: 6px 8px;
  -webkit-transition: background-color 200ms ease, color 200ms ease, -webkit-transform 200ms ease;
  transition: background-color 200ms ease, color 200ms ease, -webkit-transform 200ms ease;
  transition: background-color 200ms ease, transform 200ms ease, color 200ms ease;
  transition: background-color 200ms ease, transform 200ms ease, color 200ms ease, -webkit-transform 200ms ease;
  color: #33383f;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
}

.nav-link-2:hover {
  color: #1b9cca;
}

.nav-link-2:active {
  color: #01658a;
}

.nav-link-2.w--current {
  border-bottom: 2px solid #bae5fa;
  color: #33383f;
}

.nav-link-2.white {
  border-bottom-color: #fff;
  color: #202020;
}

.nav-link-2.white.party {
  display: inline-block;
}

.grid-2 {
  padding: 30px;
  grid-auto-rows: 33px;
  -ms-grid-columns: minmax(200px, 1fr);
  grid-template-columns: minmax(200px, 1fr);
  -ms-grid-rows: minmax(0px, 22px);
  grid-template-rows: minmax(0px, 22px);
}

.grid-2.paddingup {
  -ms-grid-columns: minmax(165px, 1fr);
  grid-template-columns: minmax(165px, 1fr);
  -ms-grid-rows: minmax(0px, 36px);
  grid-template-rows: minmax(0px, 36px);
}

.image-25 {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  padding: 5px;
}

.div-block-102 {
  width: 100px;
  height: 120px;
  padding-top: 0px;
  background-color: #00a0ff;
  box-shadow: 1px 1px 4px 3px rgba(0, 160, 255, 0.24);
}

.nav-content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 24px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

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

.sub-text {
  margin-bottom: 24px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sub-text.yunguanpingtai {
  margin-bottom: 60px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
  text-transform: none;
}

.laptop {
  position: relative;
  left: 60px;
  z-index: 1;
  max-width: none;
  margin-right: 115px;
  margin-left: -84px;
}

.logo-whitee {
  position: absolute;
  left: auto;
  top: 0px;
  z-index: 1;
  display: block;
  width: 100px;
  max-width: none;
  margin-top: -2px;
  padding: 20px;
  opacity: 1;
}

.dropdown-list-2 {
  z-index: 1;
}

.dropdown-list-2.w--open {
  z-index: 1;
  max-width: none;
  margin-left: -130px;
  padding: 0px;
  border-style: none;
  border-width: 1px;
  border-color: #f7f9fa;
  border-radius: 0px;
  background-color: #fff;
  box-shadow: 10px 0 30px 2px rgba(0, 0, 0, 0.06);
}

.banner-2 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 90vh;
  padding-top: 90px;
  padding-right: 8%;
  padding-left: 8%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #00a0ff;
  background-image: url('../images/2021827-154315.png');
  background-position: 0px 0px;
  background-size: cover;
}

.banner-2.third {
  overflow: hidden;
  min-height: 70vh;
  padding-right: 8%;
  padding-left: 8%;
  background-color: #f7f7fc;
  background-image: url('../images/bg.svg');
  background-position: 0% 100%;
  background-size: cover;
  background-attachment: scroll;
}

.nav-menu-3 {
  padding-right: 12px;
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: left;
}

.tittle-banner {
  color: #fff;
  font-size: 62px;
  line-height: 80px;
  font-weight: 400;
  text-align: center;
}

.tittle-banner.yunguanpingtai {
  margin-bottom: 20px;
  font-size: 40px;
  line-height: 48px;
  text-align: left;
}

.menu-button.w--open {
  background-color: #fff;
  color: rgba(9, 106, 208, 0.2);
}

.left-banner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 300px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.left-banner.text-center {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.navgrid {
  grid-column-gap: 0px;
  grid-template-areas: "Area";
  -ms-grid-columns: minmax(320px, 1fr);
  grid-template-columns: minmax(320px, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.logo-div {
  display: block;
  margin-top: -17px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.nav-container {
  left: 0px;
  top: 0px;
  right: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 75px;
  max-width: 1230px;
  margin-right: 0px;
  margin-left: 0px;
  padding: 12px 50px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-logo {
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
}

.nav-logo:hover {
  opacity: 0.75;
}

.link-block-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #202020;
}

.nav-dropdown {
  position: relative;
  display: inline-block;
  margin-right: 2px;
  margin-left: 6px;
  padding: 5px 22px 5px 8px;
  border-radius: 5px;
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
  color: #33383f;
  line-height: 26px;
  font-weight: 500;
}

.nav-dropdown:hover {
  opacity: 1;
  color: #1b9cca;
}

.nav-dropdown.w--current {
  -webkit-transition-property: none;
  transition-property: none;
  color: #096ad0;
  font-weight: 700;
}

.div-block-103 {
  position: relative;
  left: 71px;
}

.banner-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 22px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.banner-grid._3 {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.dropdown-arrow {
  margin-right: 8px;
  margin-bottom: 11px;
  opacity: 0.3;
  font-size: 12px;
}

.dropdown-arrow.white {
  opacity: 0.5;
  color: #202020;
}

.container-9 {
  position: relative;
  max-width: 1100px;
  margin-top: 0px;
  padding-top: 0px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.buttonnew {
  width: auto;
  padding: 20px 40px;
  border-radius: 200px;
  background-color: #fff;
  -webkit-transition: background-color 300ms ease, box-shadow 300ms ease, -webkit-transform 300ms ease;
  transition: background-color 300ms ease, box-shadow 300ms ease, -webkit-transform 300ms ease;
  transition: background-color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
  transition: background-color 300ms ease, transform 300ms ease, box-shadow 300ms ease, -webkit-transform 300ms ease;
  color: #00a0ff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.buttonnew:hover {
  background-color: #f7f9fa;
  box-shadow: 7px 7px 30px 0 rgba(39, 83, 109, 0.2);
  -webkit-transform: translate(0px, -3px);
  -ms-transform: translate(0px, -3px);
  transform: translate(0px, -3px);
  color: #0260f9;
}

.dropdown-toggle-text.white {
  color: #202020;
  font-weight: 500;
}

.dropdown-list-cnen.w--open {
  max-width: none;
  margin-left: 0px;
  padding: 8px;
  border-style: none;
  border-width: 1px;
  border-color: #f7f9fa;
  border-radius: 0px;
  background-color: #fff;
  box-shadow: 10px 0 30px 2px rgba(0, 0, 0, 0.06);
}

.nav-bar {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 200;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px none #f7f9fa;
  background-color: #fff;
}

.nav-bar.transperant {
  position: fixed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
}

.bold-text-17 {
  font-weight: 400;
  text-align: left;
}

.text-box-2 {
  display: block;
  max-width: 650px;
}

.text-box-2.youshi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 320px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.bold-text-57 {
  font-weight: 500;
}

.textyoushi2 {
  margin-top: 20px;
  font-weight: 300;
}

.column-youshi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.columns-4-youshi {
  width: 100%;
  padding-bottom: 20px;
}

._12-columns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: -16px;
  margin-left: -16px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

._12-columns.mob-swap {
  width: 100%;
  max-width: none;
  margin-right: 0px;
  margin-left: 0px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.paragraph-36 {
  font-size: 14px;
}

.center-image-2 {
  position: relative;
  display: block;
  width: auto;
  height: auto;
  max-height: 400px;
  max-width: none;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.column-21 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 32px;
  padding-right: 16px;
  padding-left: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.column-21.desk-5 {
  width: 41.66%;
}

.column-21.desk-5.yingyongchangjing {
  width: 45%;
  margin-right: 40px;
}

.column-21.desk-6 {
  width: 50%;
}

.column-21.desk-6.tab-12 {
  padding-right: 0px;
  padding-left: 0px;
}

.column-21.desk-5 {
  width: 50%;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.column-21.desk-5.tab-12 {
  width: 40%;
}

.column-21.desk-5.tab-12.lianluo {
  width: 50%;
}

.icon-side-2 {
  width: 30px;
  height: 30px;
  margin-right: 16px;
}

.feature-horizontal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.text-area {
  min-height: 120px;
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid #eff1f3;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.01);
  font-size: 15px;
}

.text-area::-webkit-input-placeholder {
  color: #c2cdd8;
}

.text-area:-ms-input-placeholder {
  color: #c2cdd8;
}

.text-area::-ms-input-placeholder {
  color: #c2cdd8;
}

.text-area::placeholder {
  color: #c2cdd8;
}

.field-block {
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 20px;
  min-width: 50px;
  margin-bottom: 8px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: 1px solid transparent;
}

.center-image-lianxi {
  position: relative;
  display: block;
  width: auto;
  margin: 10px 40px 0px 0px;
  padding: 0px;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}

._12-columns-lianluo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: -16px;
  margin-left: -16px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

._12-columns-lianluo.mob-swap {
  width: 100%;
  margin-right: 0px;
  margin-left: 0px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.text-input {
  margin-bottom: 16px;
  padding: 21px 16px;
  border: 1px solid #eff1f3;
  border-radius: 2px;
  background-color: #fff;
  font-size: 15px;
  line-height: 1.4px;
}

.text-input:focus {
  border-color: #00a0ff;
}

.text-input::-webkit-input-placeholder {
  color: #c2cdd8;
}

.text-input:-ms-input-placeholder {
  color: #c2cdd8;
}

.text-input::-ms-input-placeholder {
  color: #c2cdd8;
}

.text-input::placeholder {
  color: #c2cdd8;
}

.form-error {
  padding: 16px;
  border-radius: 6px;
  background-color: #dee5eb;
  color: #444;
}

.form {
  margin-bottom: 8px;
}

.italic-text-2 {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
}

.white-2 {
  color: #00a0ff;
}

.form-success {
  padding: 32px;
  border-radius: 4px;
  background-color: #e6f7ff;
  color: #33383f;
  font-size: 16px;
  line-height: 1.4em;
}

.buttonnew-blue {
  position: relative;
  z-index: 4;
  width: auto;
  padding: 20px 40px;
  border-radius: 200px;
  background-color: #00a0ff;
  -webkit-transition: background-color 300ms ease, box-shadow 300ms ease, -webkit-transform 300ms ease;
  transition: background-color 300ms ease, box-shadow 300ms ease, -webkit-transform 300ms ease;
  transition: background-color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
  transition: background-color 300ms ease, transform 300ms ease, box-shadow 300ms ease, -webkit-transform 300ms ease;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.buttonnew-blue:hover {
  background-color: #0260f9;
  box-shadow: 7px 7px 30px 0 rgba(39, 83, 109, 0.2);
  -webkit-transform: translate(0px, -3px);
  -ms-transform: translate(0px, -3px);
  transform: translate(0px, -3px);
  color: #fff;
}

.image-26 {
  width: auto;
  max-width: 30%;
  margin-bottom: 0px;
}

.table-columns {
  max-width: 100%;
  margin-right: 0px;
  margin-left: 0px;
  border-bottom: 1px none #dce1eb;
}

.table-columns.border {
  border-style: none none solid;
  border-width: 1px;
  border-color: #000 #000 #dce1eb;
}

.msp-text {
  margin-left: 3px;
  color: #000;
}

.mps-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 134px;
  max-width: none;
  padding-top: 28px;
  padding-right: 20px;
  padding-bottom: 28px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
}

.mps-row.hideatdesk {
  display: none;
  padding-left: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
}

.mps-row.absolute {
  position: absolute;
  top: 80px;
}

.tablehead-big {
  margin-top: 24px;
  margin-bottom: 24px;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
}

.tableblock {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-right: 0px;
  margin-left: 0px;
  padding-right: 20px;
  padding-left: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-radius: 6px;
  background-color: #f8faff;
}

.tableborder {
  position: absolute;
  left: 5%;
  top: 0px;
  bottom: 0px;
  width: 50%;
  height: 98%;
  border-right: 1px solid #dce1eb;
  border-left: 1px solid #dce1eb;
}

.tableborder._1-1 {
  left: 32%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  height: 99%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-right-style: none;
}

.tableborder._1 {
  left: 7%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 48%;
  height: 99%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.tableborder.msp {
  left: 16.5%;
  right: 33.5%;
  width: 17%;
  height: 100%;
  border-left: 2px solid rgba(220, 225, 235, 0.6);
  border-right-width: 2px;
  border-right-color: rgba(220, 225, 235, 0.6);
}

.tableborder.msp._2 {
  left: 50%;
  width: 25%;
  border-left-style: solid;
}

.tableborder._2 {
  left: 6%;
  width: 40%;
}

.tableborder.mspcentre {
  left: 33%;
  right: 33.5%;
  width: 33%;
  height: 100%;
  border-left: 2px solid rgba(220, 225, 235, 0.6);
  border-right-width: 2px;
  border-right-color: rgba(220, 225, 235, 0.6);
}

.tableborder._3 {
  left: 6%;
  width: 40%;
  height: 99%;
}

.tablehead-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 84px;
  z-index: 2;
  margin-right: 0px;
  margin-left: 0px;
  padding-right: 0px;
  padding-left: 0px;
  border-bottom: 1px solid #dce1eb;
  background-color: #f8faff;
}

.imagearrow {
  width: 24px;
  margin-bottom: 0px;
}

.heading-28 {
  font-size: 18px;
  font-weight: 500;
}

.steptitle {
  margin-bottom: 10px;
  padding-top: 2px;
  padding-bottom: 2px;
  background-color: #00a0ff;
  color: #fff;
}

.steptitle.sub {
  margin-bottom: 0px;
  background-color: #c9ebff;
  color: #000;
}

.heading-29 {
  font-weight: 500;
}

.columns-6 {
  margin-right: 0px;
  margin-left: 0px;
}

.stepcolumn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 0px;
  padding-left: 0px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.stepblock {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.arrowblock {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  margin-bottom: 15px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0.15;
}

.arrowblock.dark {
  margin-top: 0px;
  padding-top: 10px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  opacity: 1;
}

.link-4 {
  color: #1f6fff;
  text-decoration: none;
}

@media screen and (min-width: 1280px) {
  .navbar.white {
    position: static;
  }

  .browser-mockup-left {
    left: -387px;
  }

  .browser-mockup-right {
    right: -241px;
  }

  .white-footer {
    box-shadow: 0 -5px 5px 0 rgba(0, 0, 0, 0.08);
  }

  .hero-section.homepage.start-up.gcp {
    background-image: url('../images/google_bg_2.png');
  }

  .hero-section.homepage.start-up.gcp._2 {
    background-image: url('../images/google_bg_2.png');
  }

  .image-wrap.l2 {
    height: auto;
  }

  .heading-2.features.white {
    color: #fff;
  }

  .features-block.stroke._410 {
    height: 410px;
  }

  .paragraph-3.white.center {
    color: #fff;
  }

  .list-2.height {
    height: 150px;
  }

  .heading-3.h3 {
    font-size: 24px;
  }

  .banner-2.third {
    background-position: 50% 100%;
  }

  .container-9 {
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
  }

  .column-21.desk-5.tab-12 {
    width: 50%;
  }

  .column-21.desk-5.tab-12.lianluo {
    width: 50%;
  }

  ._12-columns-lianluo.mob-swap {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1440px) {
  .browser-mockup-left {
    left: -409px;
  }

  .browser-mockup-right {
    right: -261px;
  }

  .cardgongneng {
    width: 440px;
  }

  .container-8 {
    max-width: 1360px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .container-8.gongneng {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .laptop {
    margin-right: 160px;
  }

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

  .nav-container {
    max-width: 1360px;
    padding-right: 0px;
    padding-left: 0px;
  }

  .banner-grid._3 {
    width: 1360px;
    text-align: left;
  }

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

  .text-box-2.youshi {
    max-width: 300px;
  }

  .textyoushi2 {
    width: 300px;
  }

  .column-youshi.left {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .column-youshi.right {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  ._12-columns.mob-swap {
    margin-right: 0px;
    margin-left: 0px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .column-21.desk-5.tab-12.lianluo {
    width: 50%;
  }

  ._12-columns-lianluo.mob-swap {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1920px) {
  .browser-mockup-right {
    right: -363px;
  }

  .cardgongneng {
    width: 460px;
  }

  .column-12 {
    padding-right: 50px;
  }

  .column-19 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .container-8 {
    max-width: 1440px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .heading-3.h1.center {
    font-size: 56px;
  }

  .laptop {
    margin-right: 80px;
  }

  .logo-div {
    position: static;
  }

  .nav-container {
    max-width: 1440px;
    padding-right: 0px;
    padding-left: 0px;
  }

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

  .nav-bar.transperant {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: visible;
  }

  .text-box-2.youshi {
    max-width: 320px;
  }

  .textyoushi2 {
    width: 320px;
  }

  .column-youshi.left {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .column-youshi.right {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  ._12-columns.mob-swap {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .column-21.desk-6.tab-12 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 40%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .column-21.desk-6.tab-12 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .column-21.desk-5.tab-12 {
    width: 45%;
  }

  .column-21.desk-5.tab-12.lianluo {
    margin-top: 30px;
  }

  .center-image-lianxi {
    margin-top: 10px;
    margin-right: 0px;
  }

  ._12-columns-lianluo.mob-swap {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (max-width: 991px) {
  .dropdown-link {
    padding-left: 35px;
  }

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

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

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

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

  .fixed-nav-menu-button.w--open {
    background-color: #000;
  }

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

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

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

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

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

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

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

  .nav-link.light.w--current {
    border-color: transparent;
  }

  .dropdown-list.w--open {
    margin-top: 0px;
    border-radius: 0px;
    box-shadow: 0 0 0 0 transparent;
  }

  .small-dropdown-icon {
    margin-right: 21px;
  }

  .button.pricing-button {
    padding-right: 11px;
    padding-left: 11px;
    font-size: 11px;
    line-height: 17px;
  }

  .full-hero-content-block {
    width: 100%;
    margin-bottom: 50px;
  }

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

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

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

  .overall-hero-description {
    width: 80%;
  }

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

  .section {
    padding: 45px;
  }

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

  .feature-info-title {
    margin-top: 0px;
    font-size: 17px;
  }

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

  .section-2 {
    padding: 45px;
  }

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

  .image-section-overlay.white-gradient {
    padding-bottom: 120px;
  }

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

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

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

  .browser-mockup-left {
    left: -360px;
    top: 4px;
    width: 580px;
  }

  .section-3 {
    padding: 45px;
  }

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

  .browser-mockup-right {
    top: 9px;
    right: -288px;
    width: 540px;
  }

  .pricing-price {
    font-size: 34px;
    line-height: 30px;
  }

  .pricing-block {
    padding: 50px 30px 30px;
  }

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

  .portfolio-item {
    padding-right: 5px;
    padding-left: 5px;
  }

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

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

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

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

  .transparant-menu-button.w--open {
    background-color: #000;
  }

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

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

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

  .contact-info-block {
    padding: 25px;
    font-size: 13px;
  }

  .white-contact-form {
    padding: 25px;
  }

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

  .hero-section.homepage {
    height: 600px;
    padding-top: 180px;
    padding-bottom: 100px;
  }

  .hero-section.homepage.start-up.gcp {
    height: 600px;
    background-image: none;
    background-position: 50% 0%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
  }

  .hero-section.homepage.start-up.gcp {
    height: 600px;
    background-image: none;
    background-position: 50% 0%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
  }

  .hero-section.homepage.start-up.gcp._2 {
    background-image: none;
    background-position: 50% 0%;
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: scroll;
  }

  .hero-tittle.intro {
    margin-top: 30px;
    font-size: 36px;
    line-height: 42px;
  }

  .hero-tittle.left {
    font-size: 40px;
  }

  .hero-paragraph.narrow {
    margin-right: 100px;
    margin-left: 100px;
  }

  .hero-container {
    padding-top: 0px;
    text-align: center;
  }

  .image-wrap.l2 {
    height: 240px;
    padding-top: 0px;
  }

  .content-grid {
    grid-column-gap: 50px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .content-grid.l2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .text {
    font-size: 17px;
  }

  .text-column-2.l1 {
    padding-left: 20px;
  }

  .text-column-2.l2 {
    display: none;
  }

  .pricing-checkmark {
    width: 20px;
  }

  .section-4 {
    padding-right: 20px;
    padding-left: 20px;
  }

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

  .container-6.center {
    height: auto;
  }

  .features-block {
    margin-bottom: 20px;
  }

  .features-block.icon.alternative {
    width: 80%;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    padding-top: 20px;
    padding-right: 0px;
    padding-left: 0px;
  }

  .features-block.icon.alternative.top.narrow {
    padding-right: 10px;
    padding-left: 10px;
  }

  .row-motion {
    height: auto;
  }

  .paragraph-3.left.black {
    width: auto;
  }

  .content-grid-2 {
    grid-column-gap: 50px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .how-card {
    padding: 45px 30px;
  }

  .h2-title {
    font-size: 48px;
  }

  .container-7 {
    width: 100%;
  }

  .container-7.l2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .title-wrap {
    width: 100%;
  }

  .hero-container-2 {
    padding-top: 0px;
    text-align: center;
  }

  .icon-block-features {
    margin-bottom: 30px;
  }

  .color-block-tittle-copy {
    display: inline-block;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 16px;
  }

  .color-block {
    margin-bottom: 10px;
  }

  .font-icon {
    float: right;
  }

  .row {
    margin-bottom: 10px;
  }

  .tablecell {
    width: 100%;
  }

  .tablehead {
    width: 100%;
  }

  .columns-4 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .columns-3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .cardgongneng {
    width: 600px;
    margin-bottom: 20px;
  }

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

  .nav-link-2 {
    margin-right: 0px;
    margin-left: 0px;
    font-size: 15px;
  }

  .grid-2 {
    max-width: 200px;
  }

  .nav-content {
    margin-left: 16px;
  }

  .laptop {
    left: 4px;
    max-width: 100%;
  }

  .menu-icon {
    color: #096ad0;
  }

  .dropdown-list-2.w--open {
    max-width: 700px;
    margin-left: -180px;
  }

  .banner-2 {
    min-height: 100%;
    padding-right: 3%;
    padding-bottom: 120px;
    padding-left: 3%;
  }

  .banner-2.third {
    overflow: visible;
    min-height: auto;
  }

  .tittle-banner {
    font-size: 50px;
    line-height: 60px;
  }

  .tittle-banner.yunguanpingtai {
    text-align: center;
  }

  .menu-button.w--open {
    background-color: transparent;
    color: #096ad0;
  }

  .left-banner {
    min-height: 0px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

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

  .div-block-80 {
    margin-left: 117px;
    text-align: left;
  }

  .logo-div {
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }

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

  .nav-logo {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .nav-dropdown {
    display: block;
    margin-right: 0px;
    margin-left: 0px;
    padding-right: 8px;
    padding-left: 8px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 15px;
    text-align: center;
  }

  .div-block-103 {
    left: 0px;
    margin-top: 50px;
  }

  .banner-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 45px;
    padding-right: 3%;
    padding-left: 3%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .dropdown-arrow {
    display: none;
  }

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

  .text-box-2.youshi {
    max-width: 600px;
    min-width: 600px;
  }

  .columns-4-youshi {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .horizontal-features {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  ._12-columns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  ._12-columns.mob-swap {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .column-21 {
    width: 50%;
  }

  .column-21.desk-5.yingyongchangjing {
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .column-21.desk-6.tab-12 {
    width: 100%;
  }

  .column-21.desk-6.tab-12 {
    width: 100%;
    margin-bottom: 40px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .column-21.desk-5.tab-12 {
    width: 100%;
  }

  .feature-horizontal {
    margin-bottom: 20px;
  }

  .center-image-lianxi {
    margin-right: 0px;
  }

  ._12-columns-lianluo {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .tableborder {
    left: 7%;
  }

  .tablehead-sticky {
    top: 81px;
  }

  .arrowblock.dark {
    margin-top: 10px;
    margin-bottom: 0px;
    padding-top: 0px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .dropdown-link {
    padding-left: 25px;
  }

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

  .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-right: 25px;
    padding-left: 25px;
  }

  .overall-video-lightbox.large-hero {
    height: 210px;
  }

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

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

  .hero-block-overlay.business-2 {
    padding-top: 120px;
  }

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

  .overall-hero-description {
    width: 90%;
  }

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

  .feature-info-icon {
    margin-top: -12px;
  }

  .feature-info-row {
    margin-top: 0px;
  }

  .container-2.above-image-section {
    margin-bottom: -130px;
  }

  .container-2.above-image-section {
    margin-bottom: -130px;
  }

  .section {
    padding: 25px;
  }

  .feature-info-title {
    margin-bottom: 13px;
  }

  .feature-info-column {
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
  }

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

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

  .feature-blocks-column {
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
  }

  .section-2 {
    padding: 25px;
  }

  .feature-blocks-row {
    margin-top: 0px;
    margin-bottom: 0px;
  }

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

  .image-section-overlay.white-gradient {
    padding-top: 140px;
    padding-bottom: 110px;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(12%, #fff), to(hsla(0, 0%, 100%, 0.6)));
    background-image: linear-gradient(180deg, #fff 12%, hsla(0, 0%, 100%, 0.6));
  }

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

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

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

  .browser-mockup-left {
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    margin-bottom: 30px;
  }

  .section-3 {
    padding: 25px;
  }

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

  .browser-mockup-right {
    position: relative;
    top: 0px;
    right: 0px;
    width: 100%;
    margin-bottom: 30px;
  }

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

  .pricing-price {
    margin-bottom: 20px;
  }

  .pricing-block {
    padding: 30px;
  }

  .pricing-block.image {
    padding-top: 50px;
  }

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

  .portfolio-tab-pane {
    padding-top: 20px;
  }

  .portfolio-item {
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
  }

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

  .portfolio-tab-button {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 3px;
    margin-left: 0px;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(0, 0, 0, 0.1);
    text-align: center;
  }

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

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

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

  .contact-info-block-right {
    width: 100%;
    margin-top: 20px;
  }

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

  .form-title.subtitle {
    margin-bottom: 30px;
  }

  .contact-info-block {
    height: auto;
    padding-bottom: 6px;
  }

  .white-contact-form {
    width: 100%;
    height: auto;
    text-align: left;
  }

  .light-footer-link {
    margin-bottom: 4px;
  }

  .dark-footer-title {
    margin-bottom: 10px;
  }

  .white-footer {
    padding: 25px;
  }

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

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

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

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

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

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

  .white-footer-column {
    padding-right: 0px;
    padding-bottom: 20px;
    padding-left: 0px;
  }

  .hero-section.homepage {
    height: 550px;
  }

  .hero-section.homepage.start-up.gcp {
    height: 550px;
    background-image: none;
    background-position: 50% 0%;
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: scroll;
  }

  .hero-section.homepage.start-up.gcp {
    height: 550px;
    background-image: none;
    background-position: 50% 0%;
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: scroll;
  }

  .hero-section.homepage.start-up.gcp._2 {
    height: auto;
  }

  .hero-tittle {
    font-size: 40px;
    line-height: 45px;
  }

  .hero-tittle.intro {
    text-align: center;
  }

  .hero-tittle.intro.center.blogtitle {
    font-size: 26px;
    line-height: 40px;
  }

  .hero-tittle.left {
    line-height: 54px;
    text-align: left;
  }

  .hero-paragraph {
    font-size: 15px;
  }

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

  .hero-paragraph.narrow {
    margin-right: 40px;
    margin-left: 40px;
  }

  .hero-container {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    text-align: center;
  }

  .content-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .text {
    font-size: 16px;
  }

  .text-column-2.l1 {
    max-width: none;
    padding-left: 0px;
  }

  .spacer {
    height: 32px;
  }

  .pricing-checkmark {
    width: 25px;
  }

  .checkmark-grid.no-margin {
    margin-bottom: 0px;
  }

  .section-4 {
    padding: 70px 50px;
  }

  .section-4.smoke {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .heading-2.center {
    margin-top: 0px;
    font-size: 30px;
  }

  .heading-2.center.white-copy {
    float: none;
  }

  .heading-2.center.white {
    float: none;
  }

  .features-block {
    height: auto;
  }

  .features-block.icon.alternative {
    height: 150px;
  }

  .features-block.icon.alternative.top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-left: 80px;
  }

  .features-block.icon.alternative.top.narrow {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

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

  .content-grid-2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .how-card {
    padding-right: 20px;
    padding-left: 20px;
    grid-row-gap: 25px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .h2-title {
    font-size: 42px;
  }

  .title-wrap.align-left {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .columns-2.top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .column-top-left {
    margin-bottom: 30px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .hero-container-2 {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    text-align: center;
  }

  .icon-block-features {
    margin-bottom: 20px;
  }

  .feature-block-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .column-2 {
    margin-bottom: 25px;
    padding-right: 50px;
    padding-left: 50px;
  }

  .color-block {
    margin-bottom: 25px;
  }

  .row {
    margin-bottom: 0px;
  }

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

  .service-row {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .tablecell {
    height: 60px;
  }

  .tablecell.noline {
    height: auto;
  }

  .tablecell.noline.small {
    height: auto;
  }

  .tabletext {
    font-size: 12px;
  }

  .tableheading {
    line-height: 30px;
  }

  .tableheading.small {
    font-size: 14px;
    line-height: 18px;
  }

  .cardgongneng {
    width: 100%;
  }

  .heading-3.h1 {
    font-size: 35px;
  }

  .heading-3.h4 {
    font-size: 20px;
  }

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

  .nav-link-2 {
    margin-right: 25px;
    margin-left: 25px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 16px;
    text-align: center;
  }

  .nav-link-2:hover {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .nav-link-2.white {
    color: #202020;
  }

  .grid-2 {
    width: 100%;
    max-width: none;
    -ms-grid-columns: minmax(auto, auto);
    grid-template-columns: minmax(auto, auto);
  }

  .nav-content {
    position: absolute;
    z-index: 30;
    overflow: visible;
    height: auto;
    max-height: none;
    margin-left: 0px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px none #dee5eb;
    background-color: rgba(32, 32, 32, 0.8);
    color: #202020;
  }

  .dropdown-2 {
    display: block;
  }

  .laptop {
    left: auto;
    width: auto;
    margin-right: auto;
    margin-left: -68px;
  }

  .logo-whitee {
    top: 25px;
    max-width: 40%;
  }

  .dropdown-list-2 {
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #626a72;
    text-align: center;
  }

  .dropdown-list-2.w--open {
    position: relative;
    display: block;
    margin-left: 0px;
    border-style: none;
    box-shadow: none;
    text-align: center;
  }

  .banner-2 {
    padding-right: 5%;
    padding-left: 5%;
  }

  .nav-menu-3 {
    padding-right: 0px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
  }

  .tittle-banner {
    font-size: 40px;
    line-height: 50px;
  }

  .menu-button {
    width: 56px;
    height: 56px;
    margin-right: -12px;
    padding: 16px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

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

  .logo-div {
    margin-right: auto;
  }

  .nav-container {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .link-block-2 {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .nav-dropdown {
    padding-top: 13px;
    padding-bottom: 13px;
    font-size: 16px;
  }

  .nav-dropdown:hover {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .dropdown-arrow {
    position: relative;
    display: inline-block;
    margin-right: 0px;
    margin-left: 6px;
  }

  .dropdown-arrow.white {
    color: #202020;
  }

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

  .dropdown-toggle-text {
    display: inline-block;
    margin-left: 18px;
  }

  .dropdown-toggle-text.white {
    color: #202020;
  }

  .dropdown-list-cnen {
    display: none;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #f7f9fa;
    text-align: center;
  }

  .dropdown-list-cnen.w--open {
    position: relative;
    display: block;
    border-style: none;
    box-shadow: none;
    text-align: center;
  }

  .nav-bar {
    border: 1px none #000;
  }

  .nav-bar.transperant {
    position: absolute;
    z-index: 10;
  }

  .text-box-2.youshi {
    min-width: 400px;
  }

  ._12-columns {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  ._12-columns.mob-swap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .paragraph-36 {
    font-size: 15px;
  }

  .center-image-2 {
    width: 400px;
    max-height: none;
  }

  .column-21.desk-5 {
    width: 100%;
  }

  .column-21.desk-6 {
    width: 100%;
  }

  .column-21.desk-6.tab-12 {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .column-21.desk-5 {
    width: 100%;
  }

  .field-block {
    min-height: auto;
  }

  ._12-columns-lianluo {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  ._12-columns-lianluo.mob-swap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .table-columns {
    border-bottom: 1px solid #dce1eb;
  }

  .table-columns.noborder {
    border-bottom-style: none;
  }

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

  .mps-row {
    height: auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .mps-row.hideatdesk {
    display: block;
  }

  .mps-row.absolute {
    position: static;
  }

  .tablehead-big {
    font-size: 16px;
  }

  .tableborder {
    display: none;
  }

  .tableborder._1-1 {
    display: none;
  }

  .tableborder._1 {
    display: none;
  }

  .stepblock {
    margin-bottom: 60px;
  }

  .arrowblock.dark {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .logo {
    margin-top: 5px;
  }

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

  .nav-menu {
    left: 0%;
    top: 9%;
    right: 0%;
    bottom: auto;
  }

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

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

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

  .logo-block {
    padding-left: 0px;
  }

  .overall-video-lightbox {
    height: 140px;
  }

  .overall-video-lightbox.large-hero {
    height: 130px;
  }

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

  .video-lightbox-button {
    width: 50px;
    height: 50px;
    padding-top: 13px;
  }

  .full-hero-content-block {
    margin-bottom: 30px;
  }

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

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

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

  .overall-hero-description {
    font-size: 14px;
    line-height: 22px;
  }

  .video-lightbox-icon {
    height: 20px;
  }

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

  .feature-info-icon {
    height: 25px;
    margin-top: -3px;
  }

  .container-2.above-image-section {
    margin-bottom: 0px;
  }

  .section {
    padding: 25px;
  }

  .feature-info-title {
    margin-bottom: 12px;
  }

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

  .small-feature-icon {
    left: 15px;
    top: 15px;
    width: 30px;
    height: 30px;
  }

  .feature-line-block {
    height: 300px;
    padding: 15px 25px 15px 55px;
  }

  .section-2 {
    padding: 25px;
  }

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

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

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

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

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

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

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

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

  .small-features-wrapper {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

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

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

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

  .section-3 {
    padding: 25px;
  }

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

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

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

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

  .contact-info-small-block {
    margin-bottom: 10px;
  }

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

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

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

  .form-title.subtitle {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 19px;
  }

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

  .footer-row.white-footer-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

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

  .white-footer-column {
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer-info.title {
    width: auto;
    text-align: center;
  }

  .div-block-2 {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer-columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .hero-section.homepage {
    padding-top: 145px;
  }

  .hero-section.homepage.start-up.gcp {
    height: auto;
    background-image: none;
    background-position: 0px 0px;
    background-size: auto;
    background-repeat: repeat;
    background-attachment: scroll;
  }

  .hero-section.homepage.start-up.gcp {
    height: auto;
    background-image: none;
    background-position: 0px 0px;
    background-size: auto;
    background-repeat: repeat;
    background-attachment: scroll;
  }

  .hero-tittle {
    width: auto;
    font-size: 36px;
    line-height: 40px;
  }

  .hero-tittle.intro {
    font-size: 30px;
    line-height: 44px;
    text-align: center;
  }

  .hero-tittle.intro.center {
    font-size: 30px;
    line-height: 41px;
  }

  .hero-tittle.intro.center.blogtitle {
    font-size: 22px;
    line-height: 34px;
  }

  .hero-tittle.left {
    font-size: 32px;
    line-height: 46px;
  }

  .hero-paragraph.narrow {
    margin-right: 0px;
    margin-left: 0px;
  }

  .hero-container {
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .image-wrap.l2 {
    height: 200px;
    padding-top: 0px;
  }

  .content-grid {
    grid-row-gap: 20px;
  }

  .content-grid.l2 {
    grid-column-gap: 0px;
  }

  .text-column-2 {
    max-width: 100%;
  }

  .bold-span {
    font-size: 18px;
  }

  .section-4 {
    padding-right: 20px;
    padding-left: 20px;
  }

  .heading-2.center {
    margin-top: 0px;
    font-size: 30px;
  }

  .features-block {
    height: auto;
  }

  .features-block.icon.alternative {
    width: 100%;
    height: auto;
    margin-bottom: 0px;
  }

  .features-block.icon.alternative.top.narrow {
    padding-left: 30px;
  }

  .text-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .bold-span-2 {
    font-size: 18px;
  }

  .content-grid-2 {
    grid-row-gap: 20px;
  }

  .testimonial-wrap {
    width: 180px;
    height: 180px;
  }

  .button-white {
    width: auto;
  }

  .photo {
    width: 120px;
  }

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

  .container-7.l2 {
    padding: 35px 20px;
  }

  .page-header.pricing.news.n1 {
    padding-right: 20px;
    padding-left: 20px;
  }

  .page-header.pricing.xiaolv {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-container-2 {
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .icon-block-features {
    margin-bottom: 60px;
  }

  .icon-block-features.g {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .column-2 {
    padding-right: 10px;
    padding-left: 10px;
  }

  .color-block.color {
    padding-left: 27px;
  }

  .text-span-37 {
    font-size: 22px;
  }

  .row {
    margin-bottom: 0px;
  }

  .tablecell {
    height: 72px;
  }

  .tableheading.small {
    font-size: 12px;
  }

  .tablehead {
    height: 80px;
  }

  .column-20 {
    padding-right: 0px;
    padding-left: 0px;
  }

  .cardgongneng {
    height: auto;
  }

  .column-12 {
    padding-right: 0px;
    padding-left: 0px;
  }

  .column-19 {
    padding-right: 0px;
    padding-left: 0px;
  }

  .container-8 {
    padding-right: 0px;
    padding-left: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .section-5 {
    padding-right: 30px;
    padding-left: 30px;
  }

  .section-5.secwhite {
    padding-right: 30px;
    padding-left: 30px;
  }

  .nav-link-2.white {
    color: #fff;
  }

  .grid-2 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .grid-2.paddingup {
    padding-top: 20px;
  }

  .nav-content {
    z-index: 9999;
    overflow: scroll;
    height: auto;
    max-height: 80vh;
  }

  .laptop {
    display: inline-block;
    max-width: 100%;
    margin-left: auto;
  }

  .logo-whitee {
    top: 0px;
    max-width: 40%;
  }

  .dropdown-list-2.w--open {
    overflow: hidden;
    height: auto;
    background-color: #f4f8fa;
  }

  .banner-2 {
    padding-bottom: 54px;
  }

  .tittle-banner {
    margin-top: 0px;
    margin-left: 0px;
    font-size: 40px;
    line-height: 44px;
  }

  .tittle-banner.yunguanpingtai {
    margin-left: 0px;
  }

  .menu-button {
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }

  .left-banner.text-center {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .div-block-80 {
    margin-left: 0px;
  }

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

  .nav-container {
    height: 64px;
    padding: 2px 20px;
  }

  .banner-grid._3 {
    padding-right: 0%;
    padding-left: 0%;
  }

  .dropdown-arrow.white {
    color: #fff;
  }

  .container-9 {
    max-width: 100%;
  }

  .buttonnew {
    width: auto;
  }

  .dropdown-toggle-text.white {
    color: #fff;
  }

  .dropdown-list-cnen.w--open {
    background-color: #f4f8fa;
  }

  .nav-bar.transperant {
    position: absolute;
  }

  .bold-text-17 {
    font-size: 40px;
    line-height: 60px;
  }

  .text-box-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .text-box-2.youshi {
    min-width: 200px;
    margin-bottom: 20px;
  }

  .column-youshi {
    margin-bottom: 20px;
    padding-right: 0px;
    padding-left: 0px;
  }

  ._12-columns.mob-swap {
    width: 100%;
    margin-right: 0px;
    margin-left: 0px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .center-image-2 {
    max-height: none;
    max-width: 240px;
    margin-right: 0px;
    margin-left: 0px;
  }

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

  .column-21.desk-5 {
    width: 100%;
  }

  .column-21.desk-5.yingyongchangjing {
    width: 100%;
  }

  .column-21.desk-6 {
    width: 100%;
  }

  .column-21.desk-5 {
    width: 100%;
  }

  .column-21.desk-5.tab-12 {
    padding-right: 0px;
    padding-left: 0px;
  }

  .column-21.desk-5.tab-12.lianluo {
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .feature-horizontal {
    overflow: visible;
    width: 100%;
  }

  .text-area {
    width: 100%;
  }

  .text-input {
    width: 100%;
  }

  .italic-text-2 {
    font-size: 20px;
  }

  .tablehead-big {
    line-height: 24px;
  }

  .div-block-104 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .div-block-105 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .column-22 {
    text-align: left;
  }
}

#w-node-_5bb57e70-0fa1-6936-32d0-cd15c3a96382-7c5987f2 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_9abd51bc-3ae3-0acb-90f3-e9ecb63330e7-7c5987f2 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_9abd51bc-3ae3-0acb-90f3-e9ecb63330f9-7c5987f2 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_9abd51bc-3ae3-0acb-90f3-e9ecb633310e-7c5987f2 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_9abd51bc-3ae3-0acb-90f3-e9ecb6333129-7c5987f2 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-e000ef80-5dfe-a225-99c0-3926f10ef0a2-17211bd8 {
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

#w-node-e000ef80-5dfe-a225-99c0-3926f10ef0ae-17211bd8 {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-column-align: end;
  justify-self: end;
}

@media screen and (min-width: 1280px) {
  #w-node-_5bb57e70-0fa1-6936-32d0-cd15c3a96382-7c5987f2 {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    -ms-grid-column-align: stretch;
    justify-self: stretch;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_5bb57e70-0fa1-6936-32d0-cd15c3a9636b-7c5987f2 {
    -webkit-box-ordinal-group: -9998;
    -webkit-order: -9999;
    -ms-flex-order: -9999;
    order: -9999;
  }

  #w-node-_9abd51bc-3ae3-0acb-90f3-e9ecb6333098-7c5987f2 {
    -webkit-box-ordinal-group: -9998;
    -webkit-order: -9999;
    -ms-flex-order: -9999;
    order: -9999;
  }

  #w-node-_9abd51bc-3ae3-0acb-90f3-e9ecb63330e7-7c5987f2 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #w-node-_9abd51bc-3ae3-0acb-90f3-e9ecb63330e9-7c5987f2 {
    -webkit-box-ordinal-group: -9998;
    -webkit-order: -9999;
    -ms-flex-order: -9999;
    order: -9999;
  }

  #w-node-_9abd51bc-3ae3-0acb-90f3-e9ecb63330f9-7c5987f2 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #w-node-_9abd51bc-3ae3-0acb-90f3-e9ecb63330fa-7c5987f2 {
    -webkit-box-ordinal-group: -9998;
    -webkit-order: -9999;
    -ms-flex-order: -9999;
    order: -9999;
  }

  #w-node-_9abd51bc-3ae3-0acb-90f3-e9ecb633310e-7c5987f2 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #w-node-_9abd51bc-3ae3-0acb-90f3-e9ecb6333110-7c5987f2 {
    -webkit-box-ordinal-group: -9998;
    -webkit-order: -9999;
    -ms-flex-order: -9999;
    order: -9999;
  }

  #w-node-_9abd51bc-3ae3-0acb-90f3-e9ecb6333129-7c5987f2 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #w-node-_9abd51bc-3ae3-0acb-90f3-e9ecb633312a-7c5987f2 {
    -webkit-box-ordinal-group: -9998;
    -webkit-order: -9999;
    -ms-flex-order: -9999;
    order: -9999;
  }

  #w-node-df5a244d-a68c-1751-5125-63e8144569fa-7c5987f2 {
    -ms-grid-column-align: stretch;
    justify-self: stretch;
  }

  #w-node-d26c3fb5-744f-908d-0c7f-b42bb0846daa-9ffb7ce3 {
    -ms-grid-column-align: stretch;
    justify-self: stretch;
  }

  #w-node-_57533e6f-7521-15b8-878f-95a30e3c5017-c3fb9059 {
    -ms-grid-column-align: stretch;
    justify-self: stretch;
  }

  #w-node-_267c96d4-cadc-b7be-75ee-cbf20b670905-8d421e90 {
    -ms-grid-column-align: stretch;
    justify-self: stretch;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_5bb57e70-0fa1-6936-32d0-cd15c3a96382-7c5987f2 {
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    -ms-grid-row: 1;
    grid-row-start: 1;
  }

  #w-node-_9abd51bc-3ae3-0acb-90f3-e9ecb63330e7-7c5987f2 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #w-node-_9abd51bc-3ae3-0acb-90f3-e9ecb63330f9-7c5987f2 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #w-node-_9abd51bc-3ae3-0acb-90f3-e9ecb633310e-7c5987f2 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #w-node-_9abd51bc-3ae3-0acb-90f3-e9ecb6333129-7c5987f2 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }
}

