:root {
  --blue: #2752f9;
  --grey: #86868b;
  --dark: #01012c;
  --smoke: #e6e6eb;
  --light: #fafafa;
  --white: white;
  --black: black;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

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

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

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.body {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.hero-container {
  z-index: 1;
  justify-content: center;
  align-items: center;
  max-width: 1440px;
  min-height: 100vh;
  padding-left: 56px;
  padding-right: 56px;
  display: flex;
  position: relative;
}

.hero-section {
  background-image: linear-gradient(rgba(255, 255, 255, 0) 75%, #fff), url('../images/2x_Hero-bg-low.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  min-height: 100vh;
}

.hero-box {
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 656px;
  margin-top: 80px;
  margin-bottom: auto;
  padding-bottom: 64px;
}

.motto {
  color: var(--blue);
  text-align: right;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 32px;
  margin-bottom: 0;
  font-size: 37px;
  font-style: italic;
  font-weight: 700;
  line-height: 40px;
}

.make-container {
  align-self: flex-end;
  width: 100%;
}

.hero-grey {
  color: var(--grey);
  text-shadow: 0 0 6px #fff;
  margin-top: 64px;
  font-size: 24px;
  line-height: 38px;
}

.hero-button {
  background-color: var(--blue);
  background-image: linear-gradient(180deg, var(--blue), var(--blue));
  letter-spacing: .2px;
  cursor: pointer;
  border-radius: 40px;
  margin-top: 56px;
  padding: 12px 32px;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  transition: all .2s cubic-bezier(.165, .84, .44, 1);
  box-shadow: 0 10px 30px rgba(104, 66, 255, .2), 0 4px 20px 5px rgba(39, 82, 249, .3);
}

.hero-button:hover {
  padding-left: 36px;
  padding-right: 36px;
  box-shadow: 0 6px 25px rgba(104, 66, 255, .3), 0 4px 20px 5px rgba(39, 82, 249, .3);
}

.hero-darker {
  color: var(--dark);
}

.section {
  flex-flow: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.section.gradiented {
  background-image: linear-gradient(180deg, white, var(--smoke));
  padding-bottom: 80px;
}

.section.contact {
  background-color: var(--dark);
  justify-content: space-between;
  min-height: 100vh;
  position: relative;
}

.section.our {
  padding-bottom: 48px;
}

.container {
  max-width: 1440px;
  min-height: 100%;
  margin-left: 56px;
  margin-right: 56px;
}

.whatwedo {
  background-color: var(--blue);
  border-radius: 16px;
  justify-content: space-between;
  min-height: 560px;
  display: flex;
  overflow: hidden;
}

.right {
  flex-flow: column;
  justify-content: center;
  width: 50%;
  display: flex;
  position: relative;
}

.left {
  width: 50%;
  position: relative;
}

.wwd {
  z-index: 2;
  background-image: url('../images/server.png');
  background-position: 50%;
  background-size: auto;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.wwd.blurred {
  background-position: 0%;
}

.overblur {
  z-index: 5;
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.wwd-text {
  z-index: 6;
  color: var(--light);
  font-size: 21px;
  font-weight: 400;
  line-height: 36px;
}

.wwd-header {
  color: var(--white);
  font-size: 44px;
  line-height: 80px;
}

.wwd-content {
  z-index: 6;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: center;
  padding-bottom: 32px;
  padding-left: 64px;
  padding-right: 64px;
  display: flex;
  position: relative;
}

.wwd-bolder {
  color: var(--white);
  font-weight: 600;
}

.pi-content {
  margin-top: 96px;
}

.pi-header {
  text-align: center;
  font-size: 54px;
  line-height: 54px;
}

.pi-blocks {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 56px;
}

.pi-block {
  background-color: var(--white);
  border-radius: 16px;
  width: 100%;
  min-height: 100px;
  overflow: hidden;
  box-shadow: 0 8px 24px -15px rgba(0, 0, 0, .2);
}

.our {
  background-color: var(--smoke);
}

.pi-image {
  background-image: url('../images/business.png');
  background-position: 50%;
  background-size: cover;
  min-height: 240px;
}

.pi-image._2 {
  background-image: url('../images/phone.png');
}

.pi-image._3 {
  background-image: url('../images/process.png');
}

.pi-image._4 {
  background-image: url('../images/hardware.png');
}

.pi-texts {
  padding: 8px 24px 32px;
}

.pi-name {
  font-size: 24px;
  line-height: 32px;
}

.pi-words {
  color: var(--grey);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.our-block {
  background-color: var(--white);
  border-radius: 24px;
  justify-content: space-between;
  min-height: 540px;
  margin-bottom: 56px;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 72px;
  overflow: hidden;
  box-shadow: 0 -6px 20px -16px rgba(0, 0, 0, .2), 0 -10px 54px -16px rgba(60, 60, 80, .16);
}

.approach-pic {
  background-image: url('../images/approach.png');
  background-position: 50%;
  background-size: 740px;
  width: 50%;
  min-height: 400px;
}

.our-content {
  width: 50%;
  padding: 40px 64px 32px 56px;
}

.our-text {
  color: var(--grey);
  padding-top: 24px;
  font-size: 22px;
  font-weight: 400;
  line-height: 34px;
}

.our-header {
  font-size: 46px;
  line-height: 48px;
}

.our-container {
  max-width: 1440px;
  margin-left: 56px;
  margin-right: 56px;
}

.contact-header {
  color: #fff;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-size: 48px;
  line-height: 48px;
  display: flex;
}

.contact-form {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 32px;
  flex-flow: column;
  min-width: 600px;
  margin-top: -32px;
  margin-bottom: 56px;
  padding: 32px;
  display: flex;
}

.contact-input {
  background-color: rgba(1, 1, 44, .4);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  height: 40px;
}

.contact-input.textfield {
  justify-content: center;
  align-items: center;
  height: 160px;
  display: block;
}

.contact-label {
  opacity: .6;
  color: var(--light);
  margin-left: 16px;
  font-weight: 400;
  line-height: 40px;
}

.contacts {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  justify-content: center;
  align-items: flex-end;
  min-width: 970px;
  margin-bottom: 5vh;
}

.contact-button {
  background-color: var(--blue);
  text-align: center;
  cursor: pointer;
  border-radius: 48px;
  flex: 1;
  align-self: center;
  height: 48px;
  margin-top: 16px;
  padding: 12px 32px;
  font-size: 18px;
  transition: all .2s;
}

.contact-button:hover {
  padding-left: 36px;
  padding-right: 36px;
}

.contact-text {
  color: #fff;
  font-size: 16px;
  line-height: 32px;
  display: inline-flex;
}

.contact-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
}

.contact-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  opacity: .7;
  cursor: pointer;
  justify-content: center;
  transition: opacity .2s;
  display: flex;
}

.contact-block:hover {
  opacity: 1;
}

.accent {
  color: var(--dark);
  font-weight: 500;
}

.mission-pic {
  background-image: url('../images/mission.png');
  background-position: 50%;
  background-size: 740px;
  width: 50%;
  min-height: 400px;
}

.vision-pic {
  background-image: url('../images/vision.png');
  background-position: 50%;
  background-size: 740px;
  width: 50%;
  min-height: 400px;
}

.team-pic {
  background-image: url('../images/team.png');
  background-position: 50%;
  background-size: 740px;
  width: 50%;
  min-height: 400px;
}

.contact-container {
  flex-flow: column;
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: center;
  height: 20vh;
  display: flex;
}

.discover-header {
  text-align: center;
  margin-bottom: 64px;
  font-size: 54px;
  line-height: 54px;
}

.div-block {
  justify-content: center;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.paragraph {
  color: var(--white);
  text-align: center;
  font-size: 18px;
}

.success {
  background-color: rgba(1, 1, 44, .4);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  height: 40px;
}

.success.textfield {
  justify-content: center;
  align-items: center;
  height: 160px;
  display: flex;
}

@media screen and (max-width: 991px) {
  .section.gradiented {
    padding-bottom: 80px;
  }

  .container {
    margin-left: 32px;
    margin-right: 32px;
  }

  .right {
    width: 100%;
  }

  .wwd-content {
    padding-left: 56px;
  }

  .pi-blocks {
    flex-flow: wrap;
    justify-content: center;
  }

  .pi-block, .pi-block._2, .pi-block._1 {
    width: 48%;
  }

  .our-block {
    flex-flow: column;
    top: 40px;
  }

  .approach-pic {
    width: 100%;
    min-height: 360px;
  }

  .our-content {
    width: 100%;
    padding-top: 16px;
    padding-left: 48px;
    padding-right: 48px;
  }

  .our-text {
    padding-top: 8px;
  }

  .our-header {
    margin-top: 10px;
    font-size: 40px;
  }

  .our-container {
    margin-left: 32px;
    margin-right: 32px;
  }

  .contacts {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: wrap;
    min-width: 768px;
  }

  .contact-block {
    align-items: center;
  }

  .mission-pic, .vision-pic, .team-pic {
    width: 100%;
    min-height: 360px;
  }

  .contact-container {
    min-height: 160px;
  }

  .discover {
    padding-bottom: 16px;
  }
}

@media screen and (max-width: 767px) {
  .hero-container {
    min-height: auto;
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-section {
    min-height: auto;
    padding-bottom: 56px;
  }

  .hero-box {
    margin-top: 40px;
  }

  .motto {
    margin-top: 24px;
    font-size: 24px;
  }

  .logo {
    align-self: flex-end;
    max-width: 80%;
  }

  .hero-grey {
    align-self: center;
    max-width: 100%;
    margin-top: 40px;
    font-size: 20px;
    line-height: 32px;
  }

  .hero-button {
    margin-top: 32px;
    font-size: 18px;
  }

  .section.gradiented {
    padding-bottom: 64px;
  }

  .section.contact {
    min-height: 100vh;
  }

  .section.our {
    padding-bottom: 24px;
  }

  .container {
    margin-left: 24px;
    margin-right: 24px;
  }

  .whatwedo {
    flex-flow: column;
    min-height: auto;
  }

  .right {
    order: 1;
  }

  .left {
    order: -1;
  }

  .wwd-text {
    font-size: 20px;
    line-height: 34px;
  }

  .wwd-header {
    text-align: center;
    margin-top: 24px;
    font-size: 40px;
  }

  .wwd-content {
    padding-bottom: 40px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .pi-content {
    margin-top: 64px;
  }

  .pi-header {
    font-size: 40px;
  }

  .pi-blocks {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    margin-top: 40px;
  }

  .pi-block._2, .pi-block._1, .pi-block._3, .pi-block._4 {
    width: 100%;
  }

  .pi-image {
    min-height: 200px;
  }

  .pi-words {
    line-height: 26px;
  }

  .our-block {
    justify-content: flex-start;
    align-items: stretch;
    min-height: auto;
    margin-bottom: 40px;
    position: relative;
    top: auto;
  }

  .approach-pic {
    min-height: 200px;
  }

  .our-content {
    padding-left: 24px;
    padding-right: 24px;
  }

  .our-text {
    padding-top: 0;
    font-size: 16px;
    line-height: 26px;
  }

  .our-header {
    margin-top: 0;
    font-size: 24px;
  }

  .our-container {
    margin-left: 24px;
    margin-right: 24px;
  }

  .contact-header {
    font-size: 36px;
  }

  .contact-form {
    border-radius: 16px;
    width: 90%;
    min-width: auto;
    margin: 16px 32px 32px;
  }

  .contacts {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    min-width: 100%;
    margin-top: 24px;
    margin-bottom: 40px;
  }

  .contact-text {
    font-size: 14px;
  }

  .contact-block {
    padding-right: 16px;
  }

  .mission-pic, .vision-pic, .team-pic {
    min-height: 200px;
  }

  .contact-container {
    width: 100%;
    height: 15vh;
    min-height: 120px;
    margin-top: 0;
    padding-bottom: 16px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .discover {
    padding-bottom: 0;
  }

  .discover-header {
    margin-bottom: 48px;
    font-size: 40px;
  }
}

@media screen and (max-width: 479px) {
  .hero-container {
    height: 800px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-section {
    padding-bottom: 32px;
  }

  .hero-box {
    justify-content: space-between;
    width: 100%;
    max-width: 320px;
    min-height: 700px;
    margin-bottom: 40px;
  }

  .motto {
    font-size: 20px;
    line-height: 32px;
  }

  .hero-grey {
    text-align: left;
    margin-top: 32px;
    font-size: 18px;
    line-height: 30px;
  }

  .hero-button {
    margin-top: 24px;
  }

  .hero-button:hover {
    margin-top: 22px;
    margin-bottom: -2px;
    padding: 14px 36px;
  }

  .section.gradiented {
    padding-bottom: 56px;
  }

  .section.contact {
    min-height: 100vh;
  }

  .section.our {
    padding-bottom: 24px;
  }

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

  .whatwedo {
    border-radius: 0;
  }

  .wwd-text {
    text-align: left;
    font-size: 18px;
    line-height: 30px;
  }

  .wwd-header {
    margin-bottom: 0;
    font-size: 32px;
  }

  .wwd-content {
    padding: 24px 24px 72px;
  }

  .pi-header {
    font-size: 32px;
    line-height: 40px;
  }

  .pi-blocks {
    margin-top: 40px;
  }

  .pi-block._2, .pi-block._1, .pi-block._3, .pi-block._4 {
    margin-left: 16px;
    margin-right: 16px;
  }

  .pi-texts {
    padding-bottom: 24px;
  }

  .our-block {
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 8px 24px -16px rgba(0, 0, 0, .2);
  }

  .our-content {
    padding-bottom: 24px;
  }

  .our-header {
    margin-bottom: 0;
  }

  .our-container {
    margin-left: 16px;
    margin-right: 16px;
  }

  .contact-header {
    margin-bottom: 0;
    font-size: 32px;
  }

  .contact-form {
    border-radius: 16px;
    margin: 32px 24px 16px;
    padding: 16px 16px 24px;
  }

  .contact-input.textfield {
    height: 130px;
  }

  .contacts {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    justify-content: flex-start;
    align-items: center;
    min-width: auto;
    margin-top: 24px;
    margin-bottom: 40px;
    margin-left: 32px;
  }

  .contact-button {
    cursor: pointer;
    margin-top: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
    transition: all .2s;
  }

  .contact-button:hover {
    margin-top: 6px;
    margin-bottom: -2px;
    padding: 10px 28px;
  }

  .contact-text {
    line-height: 24px;
  }

  .contact-block {
    position: relative;
  }

  .mail {
    margin-right: 32px;
  }

  .contact-container {
    justify-content: center;
    align-items: center;
    margin-top: 16px;
    padding-bottom: 16px;
  }

  .discover {
    padding-bottom: 24px;
  }

  .discover-header {
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 40px;
  }

  .paragraph {
    font-size: 16px;
  }

  .success.textfield {
    height: 130px;
  }
}


