@font-face {
  font-family: "SpaceGrotesk-Bold";
  src: url("../fonts/space-grotesk/SpaceGrotesk-Bold.ttf");
}
@font-face {
  font-family: "SpaceGrotesk-Light";
  src: url("../fonts/space-grotesk/SpaceGrotesk-Light.ttf");
}
@font-face {
  font-family: "SpaceGrotesk-Medium";
  src: url("../fonts/space-grotesk/SpaceGrotesk-Medium.ttf");
}
@font-face {
  font-family: "SpaceGrotesk-Semibold";
  src: url("../fonts/space-grotesk/SpaceGrotesk-Semibold.ttf");
}
@font-face {
  font-family: "SpaceGrotesk-Regular";
  src: url("../fonts/space-grotesk/SpaceGrotesk-Regular.ttf");
}
@font-face {
  font-family: "HND-Bold";
  src: url("../fonts/helvetica-now-display/HelveticaNowDisplay-Bold.ttf");
}
@font-face {
  font-family: "HND-Regular";
  src: url("../fonts/helvetica-now-display/HelveticaNowDisplay-Regular.ttf");
}
@font-face {
  font-family: "HND-Medium";
  src: url("../fonts/helvetica-now-display/HelveticaNowDisplay-Medium.ttf");
}
@font-face {
  font-family: "HND-Thin";
  src: url("../fonts/helvetica-now-display/HelveticaNowDisplay-Thin.ttf");
}
body {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 1.2px;
  color: #1f1f1f;
  -webkit-font-smoothing: antialiased;
  font-family: "HND-Regular", Roboto, Helvetica, Arial, sans-serif;
}
body.fixed {
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "SpaceGrotesk-Bold";
}

p {
  margin: 0;
  line-height: 1.5;
}

.content-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

.form-field {
  position: relative;
}
.form-field textarea {
  resize: none;
}
.form-field input,
.form-field textarea {
  background: none;
  font-family: "HND-Regular", Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #bcbcbc;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
}
.form-field input:focus ~ .input-label, .form-field input:valid ~ .input-label,
.form-field textarea:focus ~ .input-label,
.form-field textarea:valid ~ .input-label {
  top: -14px;
  font-size: 12px;
  color: #653780;
}
.form-field input:focus ~ .input-bar:before,
.form-field textarea:focus ~ .input-bar:before {
  width: 100%;
}
.form-field .input-label {
  color: #bcbcbc;
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  padding-left: 1rem;
  left: 5px;
  top: 10px;
  transition: 300ms ease all;
}
.form-field .input-bar {
  position: relative;
  display: block;
  width: 100%;
}
.form-field .input-bar:before {
  content: "";
  height: 2px;
  width: 0;
  bottom: 0px;
  position: absolute;
  background: #653780;
  transition: 300ms ease all;
  left: 0%;
}

.insights-posts {
  gap: 2rem;
  display: flex;
  justify-content: center;
}
.insights-posts .insight {
  flex: 1;
}
.insights-posts .insight .insight-image {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.insights-posts .insight h3 {
  margin: 1.5rem 0px 1rem;
  font-size: 1.5rem;
}
.insights-posts .insight a {
  color: #1f1f1f;
  opacity: 0.7;
  margin-top: 1rem;
  display: block;
  text-decoration: underline;
  font-family: "HND-Medium";
}

@media only screen and (max-width: 991px) {
  .insights-posts {
    gap: 1rem;
  }
  .insights-posts .insight h3 {
    font-size: 1.25rem;
  }
  .insights-posts .insight .insight-image {
    height: 140px;
  }
}
@media only screen and (max-width: 1440px) {
  .content-container {
    max-width: 1200px;
  }
}
@media only screen and (max-width: 767px) {
  .form-field .input-label {
    padding-left: 0;
  }
  .insights-posts {
    flex-direction: column;
  }
  .insights-posts .insight {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.homepage .homepage-banner {
  display: flex;
  margin-top: 10rem;
  align-items: center;
  justify-content: space-between;
}
.homepage .homepage-banner h1 {
  font-size: 5rem;
}
.homepage .homepage-banner img {
  max-width: 600px;
}
.homepage .homepage-bridge {
  margin-top: 15rem;
}
.homepage .homepage-bridge h2 {
  left: 30%;
  font-size: 3rem;
  max-width: 450px;
  margin-bottom: 5rem;
  position: relative;
}
.homepage .homepage-bridge .bridge-content {
  gap: 3rem;
  display: flex;
  justify-content: space-around;
}
.homepage .homepage-bridge .bridge-content .insight {
  flex: 1;
}
.homepage .homepage-bridge .bridge-content .insight img {
  height: 500px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.homepage .homepage-bridge .bridge-content .insight h4 {
  font-size: 1.75rem;
  margin: 3rem 0 1rem;
}
.homepage .homepage-about-us {
  margin-top: 15rem;
}
.homepage .homepage-about-us h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
}
.homepage .homepage-about-us .about-content {
  gap: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.homepage .homepage-about-us .about-content .about-features .feature {
  margin-bottom: 5rem;
}
.homepage .homepage-about-us .about-content .about-features .feature h4 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.homepage .homepage-about-us .about-content .about-features .feature:last-child {
  margin-bottom: 0;
}
.homepage .homepage-cta {
  gap: 4rem;
  display: flex;
  margin-top: 15rem;
  align-items: center;
  justify-content: space-between;
}
.homepage .homepage-cta h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}
.homepage .homepage-cta a {
  cursor: pointer;
  padding: 1rem 2rem;
  color: #fff;
  font-size: 0.875rem;
  text-transform: uppercase;
  background-color: #1f1f1f;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  justify-content: center;
  outline: none !important;
  border: 0px;
}
.homepage .homepage-testimonials {
  margin-top: 15rem;
}
.homepage .homepage-testimonials h2 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}
.homepage .homepage-testimonials .content {
  gap: 4rem;
  display: flex;
  align-items: center;
}
.homepage .homepage-testimonials .content .quote-banner {
  min-width: 50%;
  background-color: #1eae98;
  padding: 4rem;
}
.homepage .homepage-testimonials .content .quote-banner h3 {
  font-size: 3rem;
  margin-bottom: 3rem;
}
.homepage .homepage-testimonials .content .quote-banner p,
.homepage .homepage-testimonials .content .quote-banner h3 {
  color: #ffffff;
}
.homepage .homepage-testimonials .content .testimonial-swiper {
  max-width: 100%;
}
.homepage .homepage-testimonials .content .testimonial h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
  line-height: 1.625;
  position: relative;
  display: inline-block;
}
.homepage .homepage-testimonials .content .testimonial h3 span {
  font-size: 5rem;
  color: #653780;
  right: -3rem;
  top: -0.5rem;
  line-height: 1;
  position: absolute;
}
.homepage .homepage-testimonials .content .testimonial h4 {
  font-size: 1rem;
  opacity: 0.7;
}
.homepage .homepage-testimonials .content .testimonial p {
  margin: 24px 0px;
  font-size: 1.25rem;
  line-height: 1.5;
}
.homepage .homepage-testimonials .content .button-group {
  display: flex;
  gap: 2rem;
}
.homepage .homepage-testimonials .content .button-group .button {
  font-size: 3rem;
  color: #653780;
  font-family: "SpaceGrotesk-Regular";
}
.homepage .homepage-testimonials .content .button-group .button.swiper-button-disabled {
  opacity: 0.4;
}

@media only screen and (max-width: 1200px) {
  .homepage .homepage-banner h1 {
    font-size: 4rem;
  }
  .homepage .homepage-banner img {
    max-width: 500px;
  }
}
@media only screen and (max-width: 991px) {
  .homepage .homepage-banner h1 {
    font-size: 3rem;
  }
  .homepage .homepage-banner img {
    max-width: 50%;
  }
  .homepage .homepage-bridge {
    margin-top: 10rem;
  }
  .homepage .homepage-bridge h2 {
    font-size: 2.5rem;
  }
  .homepage .homepage-bridge .bridge-content {
    gap: 1rem;
  }
  .homepage .homepage-bridge .bridge-content .insight img {
    height: 300px;
  }
  .homepage .homepage-about-us {
    margin-top: 10rem;
  }
  .homepage .homepage-about-us h2 {
    font-size: 2rem;
  }
  .homepage .homepage-about-us .about-content img {
    width: 300px;
  }
  .homepage .homepage-about-us .about-content .about-features .feature h4 {
    font-size: 1.25rem;
  }
  .homepage .homepage-cta {
    margin-top: 10rem;
  }
  .homepage .homepage-cta h2 {
    font-size: 2.25rem;
  }
  .homepage .homepage-testimonials {
    margin-top: 10rem;
  }
  .homepage .homepage-testimonials .content .testimonial p {
    font-size: 1rem;
  }
  .homepage .homepage-testimonials .content .quote-banner {
    padding: 2rem;
  }
  .homepage .homepage-testimonials .content .quote-banner h3 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .homepage .homepage-banner {
    margin-top: 5rem;
    flex-direction: column;
  }
  .homepage .homepage-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  .homepage .homepage-banner img {
    width: 400px;
    max-width: 100%;
  }
  .homepage .homepage-bridge h2 {
    left: 0;
    font-size: 2rem;
  }
  .homepage .homepage-bridge .bridge-content {
    flex-direction: column;
  }
  .homepage .homepage-bridge .bridge-content .insight {
    margin-bottom: 5rem;
  }
  .homepage .homepage-bridge .bridge-content .insight h4 {
    margin-top: 1rem;
  }
  .homepage .homepage-bridge .bridge-content .insight img {
    width: 400px;
    max-width: 100%;
  }
  .homepage .homepage-bridge .bridge-content .insight:last-child {
    margin-bottom: 0;
  }
  .homepage .homepage-about-us .about-content {
    flex-direction: column;
  }
  .homepage .homepage-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .homepage .homepage-cta h2 {
    font-size: 1.75rem;
  }
  .homepage .homepage-cta img {
    width: 400px;
    max-width: 100%;
  }
  .homepage .homepage-testimonials .content {
    flex-direction: column;
  }
  .homepage .homepage-testimonials .content .testimonial h3 span {
    font-size: 4rem;
  }
  .homepage .homepage-testimonials .content .quote-banner {
    padding: 1rem;
  }
  .homepage .homepage-testimonials .content .quote-banner h3 {
    margin-bottom: 2rem;
  }
}
.services .services-insights {
  margin-top: 7rem;
}
.services .services-insights h1 {
  font-size: 2.75rem;
  margin-bottom: 2rem;
}
.services .services-listing {
  gap: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12rem 0;
}
.services .services-listing .image-side {
  display: flex;
  padding: 1rem;
  height: 450px;
  min-width: 350px;
  width: 350px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  border: 0px solid rgba(0, 0, 0, 0.125);
  box-shadow: rgba(0, 0, 0, 0.1) 0rem 0.25rem 0.375rem -0.0625rem, rgba(0, 0, 0, 0.06) 0rem 0.125rem 0.25rem -0.0625rem;
  background-image: linear-gradient(195deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("../images/services-design.png");
  background-size: cover;
  background-position: center center;
  border-radius: 0.75rem;
}
.services .services-listing .image-side h3 {
  font-size: 1.875rem;
  color: #ffffff;
}
.services .services-listing .image-side p {
  margin: 0.5rem 0 2rem;
  font-weight: 300;
  color: #ffffff;
}
.services .services-listing .image-side a {
  cursor: pointer;
  padding: 1rem 2rem;
  color: #fff;
  font-size: 0.875rem;
  text-transform: uppercase;
  background-color: #1f1f1f;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  justify-content: center;
  outline: none !important;
  border: 0px;
  color: #1f1f1f;
  background-color: #ffffff;
}
.services .services-listing .content-side {
  display: flex;
  flex-wrap: wrap;
}
.services .services-listing .content-side .data {
  width: 33.3333333333%;
  padding: 1rem;
}
.services .services-listing .content-side .data:last-child {
  margin-bottom: 0;
}
.services .services-listing .content-side .data h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
.services .services-listing .content-side .data p {
  font-size: 0.875rem;
  font-weight: 300;
  opacity: 0.7;
}
.services .services-development .image-side {
  background-image: linear-gradient(195deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("../images/services-development.png");
  background-size: cover;
  background-position: center center;
}
.services .services-marketing .image-side {
  background-image: linear-gradient(195deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("../images/services-marketing.png");
  background-size: cover;
  background-position: center center;
}

@media only screen and (max-width: 1200px) {
  .services .services-listing .content-side .data {
    width: 50%;
  }
}
@media only screen and (max-width: 991px) {
  .services .services-insights {
    margin-top: 5rem;
  }
  .services .services-insights h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .services .services-listing {
    flex-direction: column;
  }
  .services .services-listing .image-side {
    height: 300px;
  }
  .services .services-listing .content-side .data {
    width: 33.33%;
  }
  .services .services-development {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 767px) {
  .services .services-listing {
    margin: 10rem 0;
  }
  .services .services-listing .image-side {
    height: 350px;
    min-width: 100%;
    width: 100%;
  }
  .services .services-listing .content-side .data {
    width: 100%;
    padding: 0 0 1rem 0;
  }
}
.contact-us-page .contact-us-page-wrapper {
  display: flex;
  border-radius: 0.75rem;
  margin: 10rem auto;
  width: 1440px;
  max-width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0rem 1.25rem 1.5625rem -0.3125rem, rgba(0, 0, 0, 0.04) 0rem 0.625rem 0.625rem -0.3125rem;
}
.contact-us-page .contact-us-page-wrapper .contact-information {
  width: 40%;
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
  background-image: linear-gradient(195deg, rgba(66, 66, 74, 0.8), rgba(25, 25, 25, 0.8)), url("../images/space-connect.svg");
  background-position-x: 50%;
  background-size: cover;
  padding: 1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-us-page .contact-us-page-wrapper .contact-information h3 {
  margin-bottom: 0.5rem;
  font-size: 1.875rem;
  color: #ffffff;
}
.contact-us-page .contact-us-page-wrapper .contact-information p {
  margin-bottom: 24px;
  font-weight: 300;
  opacity: 0.8;
  color: #ffffff;
}
.contact-us-page .contact-us-page-wrapper .contact-information .info {
  gap: 16px;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.contact-us-page .contact-us-page-wrapper .contact-information .info .icon {
  color: #ffffff;
}
.contact-us-page .contact-us-page-wrapper .contact-information .info h4 {
  font-size: 0.875rem;
  color: #ffffff;
}
.contact-us-page .contact-us-page-wrapper .contact-information .social-section {
  display: flex;
  gap: 1.5rem;
}
.contact-us-page .contact-us-page-wrapper .contact-information .social-section img {
  color: #ffffff;
  height: 1.25rem;
  width: 1.25rem;
  -o-object-fit: contain;
     object-fit: contain;
}

@media only screen and (max-width: 991px) {
  .contact-us-page .contact-us-page-wrapper {
    margin: 5rem auto;
    flex-direction: column;
  }
  .contact-us-page .contact-us-page-wrapper .contact-information {
    width: 100%;
    padding: 2rem;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .contact-us-page .contact-us-page-wrapper .contact-information {
    padding: 1rem;
    display: block;
  }
  .contact-us-page .contact-us-page-wrapper .contact-information h4 {
    word-break: break-all;
  }
}
.insights-heading {
  font-size: 3rem;
  margin: 5rem 0;
}

@media only screen and (max-width: 767px) {
  .insights-heading {
    font-size: 2.5rem;
  }
}
.privacy-policy-page .heading {
  margin: 5rem 0;
}
.privacy-policy-page .heading h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.privacy-policy-page a {
  color: #653780;
  text-decoration: underline;
}
.privacy-policy-page h3 {
  margin: 48px 0px 24px;
  font-size: 1.25rem;
}
.privacy-policy-page p {
  font-weight: 300;
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {
  .privacy-policy-page .heading h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
}/*# sourceMappingURL=style.css.map */