html {
  box-sizing: border-box;
  font-family: "Urbanist";
  letter-spacing: 0.1rem;
  font-size: 62.5%;
}

* {
  box-sizing: border-box;
  margin: 0rem;
  padding: 0rem;
}

/* header */

.header-container {
  width: 100%;
  padding: 1.5rem 0rem;
  background-color: #fefefe;
  position: relative;
  z-index: 150;
  height: 8.1rem;
}

.logo-container img {
  height: 4.8rem;
}

.header-wrapper {
  position: relative;
  width: 120rem;
  margin: 0rem auto;
  z-index: 150;
  background: white;
  height: 100%;
}

.burger-menu-wrapper {
  position: relative;
  width: 120rem;
  margin: 0rem auto;
  background: white;
  top: -6.7rem;
}

.nav-links-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  position: absolute;
  right: 0rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  background: white;
}

.nav-burger-menu-container {
  border: 0.2rem solid #00004d;
  border-radius: 1rem;
  height: 5.4rem;
  width: 5.4rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  z-index: 200;
  background: white;
  transition: transform 0.2s linear;
}

.nav-burger-menu-container:active {
  transform: scale(0.9) translateY(-50%);
}

.burger-divide {
  height: 0.2rem;
  width: 80%;
  background: rgba(127, 127, 128, 0.6);
}

.line {
  height: 0.3rem;
  width: 70%;
  background: #00004d;
}

.burger-menu-container {
  position: absolute;
  top: 0rem;
  right: 0rem;
  top: 6.6rem;
  background: white;
  width: 100%;
  height: 30rem;
  border: 0.3rem solid #2c2c36;
  border-top: none;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  z-index: 50;
  border-bottom-left-radius: 1.6rem;
  border-bottom-right-radius: 1.6rem;
  background: linear-gradient(rgba(12, 48, 59, 0.95), rgba(42, 20, 54, 0.95));
  transform: translateY(-100%) translateZ(-800rem);
  transition: transform 0.7s ease-out;
}

.burger-link a {
  text-decoration: none;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-family: "HyperspaceRace-bold";
  color: rgba(255, 255, 255, 0.8);
}

.nav-checkbox:checked ~ .burger-menu-wrapper .burger-menu-container {
  transform: translateY(0);
}

.nav-link {
  margin-left: 5rem;
  font-family: "HyperspaceRace-Bold";
  font-size: 2rem;
  text-transform: uppercase;
}

.nav-link a:hover {
  border-bottom: 0.2rem solid #fa991c;
}

.nav-link a {
  text-decoration: none;
  color: #00004d;
  padding-bottom: 0.3rem;
}

.nav-hire-btn {
  padding: 1.5rem 3rem;
  font-family: "HyperspaceRace-Bold";
  text-transform: uppercase;
  font-size: 2rem;
  outline: none;
  border: none;
  background: linear-gradient(to top, rgb(5, 13, 59), rgb(8, 59, 94));
  color: white;
  border-radius: 0.8rem;
  cursor: pointer;
  box-shadow: 0.2rem 0.2rem 1.6rem rgba(0, 0, 0, 0.1);
}

.nav-hire-btn:hover {
  background: linear-gradient(to top, rgb(10, 22, 88), rgb(11, 78, 122));
}

/* end of header */

/* hero section */

.hero-section-container {
  height: 100vh;
  width: 100%;
}

.hero-background-img-container {
  position: absolute;
  height: 100%;
  top: 0;
  z-index: -100;
  width: 100%;
  background: linear-gradient(
      to top,
      rgba(26, 18, 29, 0.65),
      rgba(4, 1, 49, 0.65)
    ),
    url("img/hero-img-futuristic-city.jpg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-content-container {
  position: absolute;
  color: rgb(241, 241, 227);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    rgba(243, 250, 253, 0.1),
    rgba(170, 227, 253, 0.1)
  );
  padding: 4rem 0rem;
  text-align: center;
  border-radius: 1.1rem;
  box-shadow: 0.2rem 0.2rem 1.6rem rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  width: 80rem;
}

.hero-main-content {
  position: relative;
  width: 100%;
}

.hero-heading-wrapper {
  margin: 2rem 0rem 0rem 0rem;
  font-size: 5.2rem;
  background-color: rgba(3, 26, 44, 0.8);
  padding: 2rem;
  width: 100%;
}

.hero-heading {
  text-shadow: 0 0 1.3rem rgba(0, 0, 0, 0.3);
}

.hero-paragraph-wrapper {
  font-size: 2.3rem;
  color: #010101;
  font-style: italic;
  background: rgb(209, 234, 255);
  padding: 0.5rem 2rem;
  width: 100%;
}

.hero-paragraph-wrapper h2 {
  font-size: 2.3rem;
  font-weight: normal;
}

.hero-paragraph-wrapper span {
  font-weight: bold;
}

.hero-btn-wrapper {
  margin: 4rem 4rem 0rem 4rem;
}

.hero-btn {
  padding: 2rem 4rem;
  border-radius: 0.8rem;
  outline: none;
  border: none;
  font-size: 2.6rem;
  font-weight: 600;
  background: linear-gradient(#fa991c, #c47816);
  color: white;
  box-shadow: 0.2rem 0.2rem 0.6rem rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.hero-btn:hover {
  background: linear-gradient(#c27005, #915200);
}

.bbs-wrapper {
  margin: 1rem 1rem 0rem 1rem;
}

.bbs {
  font-size: 1.3rem;
  color: white;
  border-bottom: 0.1rem solid white;
  text-decoration: none;
  display: inline;
}

/* end of hero */

/* benefits section */

.benefits-section-container {
  background: white;
  flex-direction: column;
  padding: 10rem 0 10rem 0;
  max-height: 102rem;
}

.benefits-section-wrapper {
  display: flex;
  flex-direction: column;
  width: 120rem;
  margin: 0rem auto;
  max-height: 102rem;
}

.benefits-section-description {
  padding: 2rem;
}

.benefits-heading-wrapper {
  width: 100%;
  text-align: center;
}

.benefits-heading {
  font-size: 4rem;
  color: #00004d;
}

.benefits-paragraph-wrapper {
  margin: 2rem 0rem;
  width: 100%;
  text-align: center;
}

.benefits-paragraph {
  font-size: 1.9rem;
  color: #010101;
}

.benefits-cards-container {
  width: 100%;
  display: flex;
}

.benefit-card {
  width: 30rem;
  margin: 2rem 2.5rem;
}

.benefits-icon-outer-circle {
  border-radius: 50%;
  padding: 0.5rem;
  background: linear-gradient(to top, #1193bc, #0cc5d2);
  width: min-content;
  margin: auto;
}

.benefits-icon {
  border-radius: 50%;
  background: white;
  overflow: hidden;
}

.benefits-icon img {
  width: 19.5rem;
}

.benefit-content-wrapper {
  padding: 1.8rem;
  margin-top: 4rem;
  border-radius: 1rem;
  box-shadow: 1rem 1rem 3.3rem rgba(0, 0, 0, 0.15);
  min-height: 55.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  top: -27.5rem;
  border-top-left-radius: 12rem;
  border-top-right-radius: 12rem;
}

.benefits-desc-title {
  width: 100%;
  height: 10rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefits-desc-title h2 {
  font-size: 2.2rem;
  color: #0fa068;
  margin: auto;
}

.benefits-desc {
  margin-top: 1rem;
  text-align: center;
  min-height: 18rem;
}

.benefits-desc p {
  font-size: 1.5rem;
  color: #010101;
}

/* end of benefits section */
/* tech section */

.tech-section-container {
  width: 100%;
  padding: 5rem 0rem;
  background: linear-gradient(
    to bottom right,
    rgba(18, 107, 110, 0.9),
    rgba(0, 0, 77, 0.9)
  );
  z-index: -10;
  position: relative;
}

.tech-heading-container {
  margin: 3rem 18%;
  text-align: center;
}

.tech-heading {
  font-size: 4rem;
  color: rgb(215, 246, 255);
}

.tech-paragraph-wrapper {
  font-size: 1.8rem;
  color: white;
  margin-top: 3rem;
}

.tech-showcase-container {
  height: 25rem;
  margin: 0rem 18% 2rem;
  display: flex;
  align-items: center;
  overflow-x: hidden;
  box-shadow: inset 0 0 3.2rem rgba(0, 0, 0, 0.8);
  background: transparent;
  border-radius: 0.6rem;
  position: relative;
  max-width: 124rem;
}

.tech-showcase-reel {
  height: 20rem;
  display: flex;
  align-items: center;
  box-shadow: 0 0 2.2rem rgba(0, 0, 0, 0.2);
  background: white;
  position: relative;
  animation: reel 70s linear infinite;
  z-index: -10;
}

@keyframes reel {
  0% {
    right: 0rem;
  }

  100% {
    right: 322rem;
  }
}

.tech-item-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  align-items: center;
  margin: 0rem 4rem;
  height: 15rem;
  width: 15rem;
  box-shadow: 0.5rem 0.5rem 2.1rem rgba(0, 0, 0, 0.1);
  border-radius: 2rem;
}

.tech-img-wrapper {
  height: 10rem;
  width: 10rem;
  background: white;
}

.tech-img-wrapper img {
  height: 100%;
  width: 100%;
  object-position: center;
  object-fit: cover;
}

.tech-name-wrapper {
  margin-top: 1.2rem;
}

.tech-name {
  font-size: 1.8rem;
}

/* end of tech section */
/*  services */

.services-section-container {
  background: linear-gradient(to top left, #b1dcff, #ceeafd);
  background: white;
  padding: 8rem 0rem;
}

.services-heading-wrapper {
  margin: 0rem auto;
  width: 120rem;
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-heading-wrapper img {
  height: 10rem;
  display: inline-block;
  margin-right: 4rem;
}

.services-heading {
  display: inline;
  font-size: 4rem;
  color: #00004d;
  border-bottom: 0.3rem solid #00a8f3;
}

.services-content-container {
  display: flex;
  box-shadow: 0 1rem 6.2rem rgba(1, 0, 54, 0.3);
}

.services-img-wrapper {
  max-width: 40%;
  min-width: 30%;
  justify-self: stretch;
  flex-shrink: 1;
}

.services-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-desc-wrapper {
  background: white;
  box-shadow: 2 2 1.5rem rgba(0, 0, 0, 0.3);
  padding: 4rem 18% 4rem 8rem;
  flex: 1;
}

.services-desc {
  font-size: 1.8rem;
  margin-top: 3rem;
  font-style: italic;
}

.services-desc:first-of-type {
  font-weight: bold;
}

.services-desc-hr {
  width: 100%;
  height: 0.4rem;
  background: linear-gradient(to right, #00a6f32c, #235dc938);
  margin: 3rem auto 0rem;
}

.services-list {
  margin-top: 4rem;
}

.services-list-item {
  list-style: none;
  margin: 2rem 1rem;
  display: flex;
  align-items: center;
}

.services-list-item img {
  margin-right: 1.8rem;
  max-height: 2.8rem;
  max-width: 2.8rem;
}

.services-list-item p {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
}

/* end of services */
/* contact form */

.contact-form-section-container {
  padding: 8rem 0rem;
  background: linear-gradient(
      to left,
      rgba(41, 32, 117, 0.3),
      rgba(38, 25, 41, 0.5)
    ),
    url("img/hero-img-futuristic.jpg");
  background-size: cover;
}

.contact-form-main-container {
  margin: 0rem 18%;
  height: 85rem;
  border-radius: 2.2rem;
  display: flex;
  padding: 5.5rem;
  position: relative;
  align-items: center;
  justify-content: center;
}

.contact-form-info-container {
  height: min-content;
  margin-right: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(0.5rem);
  box-shadow: 1.5rem 1.5rem 8rem rgba(0, 0, 0, 0.4);
  padding: 3rem;
  border-radius: 1.6rem;
}

.contact-form-info-heading-wrapper {
  font-size: 2.6rem;
  color: #00004d;
  text-align: center;
}

.contact-form-divider {
  width: 60%;
  height: 0.4rem;
  margin: 5rem auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.inner-divide {
  height: 100%;
  width: 40%;
  background: rgba(255, 255, 255, 0.8);
}

.contact-form-logo {
  height: 6rem;
  margin: 0rem 1.5rem;
}

.contact-form-info-content {
  align-self: center;
  font-size: 1.5rem;
  color: #00004d;
  margin: 3rem 0rem;
}

.contact-form-info a {
  color: #00004d;
  text-decoration: none;
  border-bottom: 0.2rem solid #00004d;
  cursor: pointer;
}

.contact-form-info a:hover {
  color: #2b589c;
  border-bottom: 0.2rem solid #2b589c;
}

.contact-form-container {
  width: 55rem;
  min-width: 55rem;
  height: 100%;
  box-shadow: 1.5rem 1.5rem 4rem rgba(0, 0, 0, 0.5);
  border-radius: 2.2rem;
  padding: 2.5rem;
  background: linear-gradient(
    to bottom right,
    rgba(18, 107, 110, 0.9),
    rgba(0, 0, 77, 0.9)
  );
  position: relative;
}

.contact-form-loading-modal {
  position: absolute;
  z-index: 20;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  top: 0;
  left: 0;
  border-radius: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form-loading-modal i {
  font-size: 6rem;
  opacity: 0.7;
  color: white;
  animation: spin 3s ease-in-out infinite;
}

.contact-error-modal {
  position: absolute;
  z-index: 20;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  border-radius: 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-error-modal i {
  color: white;
  font-size: 4rem;
  position: absolute;
  right: 3rem;
  top: 2rem;
  opacity: 0.7;
  cursor: pointer;
  z-index: 50;
}

.contact-error-heading {
  font-size: 3rem;
  color: white;
}

.contact-error-message {
  margin-top: 2rem;
  font-size: 2rem;
  color: white;
}

@keyframes spin {
  to {
    transform: rotate(720deg);
  }
}

.contact-form-outer-border {
  height: 100%;
  width: 100%;
  border: 0.2rem solid rgba(13, 247, 255, 0.4);
  border-radius: 1.2rem;
  padding: 1.4rem;
  transition: opacity 2s ease;
}

.fade {
  opacity: 0;
}

.form-thankyou-container {
  height: 100%;
  width: 100%;
  border: 0.2rem solid rgba(13, 247, 255, 0.4);
  border-radius: 1.2rem;
  padding: 4rem;
  opacity: 0;
  transition: opacity 2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.fade-in {
  opacity: 1;
}

.form-thankyou-wrapper h2 {
  font-size: 4rem;
  text-align: center;
  color: #fa991c;
}

.form-thankyou-wrapper p {
  font-size: 2.5rem;
  text-align: center;
  color: white;
  margin-top: 2.2rem;
}

.contact-form-heading-container {
  margin: 2rem 3rem;
}

.contact-form-heading {
  font-size: 2rem;
  color: rgb(214, 255, 253);
  color: #fa991c;
}

.contact-form-paragraph {
  font-size: 1.3rem;
  color: white;
  font-style: italic;
  margin: 1rem 0rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  margin: 0rem 3rem;
}

.contact-form-item {
  display: flex;
  flex-direction: column;
  margin: 0.5rem;
}

.contact-form-label {
  margin: 0.5rem 0rem;
  font-size: 1.5rem;
  color: white;
}

.contact-form-input {
  border-radius: 0.2rem;
  height: 3.5rem;
  outline: none;
  border: none;
  font-size: 1.9rem;
  padding: 0.8rem;
}

.contact-form-textarea {
  height: 10.5rem;
  outline: none;
  border: none;
  border-radius: 0.2rem;
  font-size: 1.9rem;
  padding: 0.5rem 0.8rem;
  font-family: "Urbanist";
}

.textarea-helper {
  font-size: 1.4rem;
  color: white;
  margin-top: 0.5rem;
}

.form-btn-wrapper {
  align-self: flex-end;
  margin: 0.5rem 0.4rem;
}

.contact-form-btn {
  padding: 1.5rem 3rem;
  font-size: 1.6rem;
  color: white;
  border-radius: 0.5rem;
  border: none;
  outline: none;
  cursor: pointer;
  background: linear-gradient(#fa991c, #a7650f);
}

.contact-form-btn:hover {
  background: linear-gradient(#c47104, #8f5100);
}

/* end of contact form */

/* blog */

.blog-section-container {
  margin: 8rem 0rem;
}

.blog-section-wrapper {
  width: 120rem;
  margin: 0rem auto;
}

.blog-heading-wrapper {
  margin-bottom: 5rem;
}

.blog-heading {
  font-size: 4rem;
  color: #00004d;
  border-bottom: 0.3rem solid #fa991c;
  display: inline;
}

.blog-container {
  width: 100%;
  padding: 3rem;
  border-radius: 2.6rem;
  box-shadow: 1rem 1rem 2.8rem rgba(0, 0, 0, 0.2);
  display: flex;
  position: relative;
}

.blog-img-wrapper {
  width: 100%;
  margin-right: 2rem;
}

.blog-img {
  width: 100%;
  height: 100%;
  border-radius: 0.6rem;
  object-fit: cover;
  object-position: right;
}

.blog-info-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-title-wrapper {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.blog-blurb {
  font-size: 1.7rem;
  margin-bottom: 2rem;
}

.blog-btn-wrapper {
  align-self: flex-end;
}

.blog-btn {
  padding: 1.5rem 3rem;
  font-size: 1.8rem;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 0.5rem;
  color: white;
  background-color: #00004d;
  box-shadow: 0.5rem 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
}

.blog-btn:hover {
  background-color: #2f2f8d;
}

/* end of blog */

/* footer */

.footer-section-container {
  background: linear-gradient(to right, rgb(237, 246, 255), rgb(221, 239, 250));
  width: 100%;
  padding-top: 5rem;
  position: relative;
}

.footer-border-top {
  height: 2.1rem;
  width: 100%;
  background: linear-gradient(to right, #4f89c0, #12416d);
  position: absolute;
  top: 0rem;
}

.footer-container {
  margin: 0rem 18%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navigation-container {
  display: flex;
  margin-bottom: 2.5rem;
}

.footer-logo img {
  width: 40rem;
}

.footer-email {
  margin-top: 1rem;
  text-align: right;
}

.footer-email a {
  color: rgb(17, 86, 151);
  border-bottom: 0.2rem solid rgb(17, 86, 151);
  font-size: 1.8rem;
  text-decoration: none;
}

.footer-links-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 0.3rem solid #00004d;
  margin-left: 6rem;
}

.legal {
  font-size: 1.4rem;
  color: white;
  background: linear-gradient(to right, #4f89c0, #12416d);
  text-align: center;
  padding: 0.2rem 0rem;
}

.legal a {
  color: white;
  text-decoration: none;
  border-bottom: 0.1rem solid white;
}

/* end of footer */

@media screen and (max-width: 1250px) {
  .header-wrapper {
    width: 110rem;
  }

  .tech-showcase-container {
    margin: 0rem 10% 2rem;
  }

  .services-content-container {
    flex-direction: column;
  }

  .services-img-wrapper {
    width: 100%;
    max-width: 100%;
    max-height: 30rem;
    height: 30rem;
  }

  .services-img-wrapper img {
    object-position: center;
  }

  .services-desc-wrapper {
    padding: 4rem 10% 4rem 10%;
  }

  .blog-section-wrapper {
    width: 90rem;
  }

  .benefits-section-container {
    max-height: none;
  }

  .benefits-section-wrapper {
    max-height: none;
  }

  .benefits-cards-container {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .benefit-content-wrapper {
    width: 30rem;
    top: 0rem;
    min-height: 0;

    justify-content: flex-end;
    border-top-right-radius: 0rem;
    box-shadow: none;
    margin-top: 0rem;
    padding: 0rem;
    justify-content: center;
  }

  .benefits-icon-outer-circle {
    margin: 0rem;
    position: relative;
    left: -2rem;
  }

  .benefit-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-left: 2rem;
    margin-right: 2rem;
    justify-self: center;
    max-width: 60rem;
    width: 60rem;
    box-shadow: 1rem 1rem 3.3rem rgb(0 0 0 / 15%);
    border-top-left-radius: 14rem;
    border-bottom-left-radius: 14rem;
    position: relative;
    height: 25rem;
  }

  .benefits-desc {
    min-height: 0;
    height: min-content;
  }

  .benefits-desc-title {
    min-height: none;
    height: auto;
    margin-bottom: 0.8rem;
  }
}

@media screen and (max-width: 1200px) {
  .benefits-section-wrapper {
    width: 80rem;
  }

  .services-heading-wrapper {
    width: 60rem;
  }
}

@media screen and (max-width: 1150px) {
  .nav-links-container {
    display: none;
  }

  .nav-burger-menu-container {
    display: flex;
  }

  .header-wrapper {
    width: 85%;
    margin: 0rem auto;
  }

  .burger-menu-wrapper {
    width: 85%;
  }
}

@media screen and (max-width: 1075px) {
  .contact-form-main-container {
    flex-direction: column;
    justify-items: center;
  }
  .contact-form-info-container {
    margin-right: 0rem;
    margin-bottom: 6rem;
  }

  .contact-form-main-container {
    height: auto;
  }

  .contact-form-section-container {
    background-position: right;
  }

  .contact-form-item {
    margin-left: 0rem;
  }

  .form-btn-wrapper {
    width: 100%;
    justify-self: center;
    margin-bottom: 2rem;
    margin-top: 1rem;
  }

  .contact-form-btn {
    width: 100%;
  }

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

  .footer-email {
    width: 30rem;
    text-align: right;
    margin: 1rem auto 3rem;
  }

  .footer-email a {
    font-size: 1.4rem;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-logo img {
    width: 30rem;
  }

  .footer-links-container {
    border-left: none;
    margin-left: 0;
  }
}

@media screen and (max-width: 1000px) {
  .blog-section-wrapper {
    width: 100%;
    padding: 0rem 5%;
  }
}

@media screen and (max-width: 900px) {
  .hero-content-container {
    max-width: 93%;
  }

  .blog-img-wrapper {
    min-width: 20rem;
  }

  .benefits-section-wrapper {
    width: 90%;
  }
}

@media screen and (max-width: 800px) {
  .hero-heading {
    font-size: 6rem;
  }

  .hero-paragraph-wrapper h2 {
    font-size: 1.7rem;
  }

  .hero-btn {
    font-size: 2rem;
  }
}

@media screen and (max-width: 750px) {
  .benefits-icon img {
    width: 12rem;
  }

  .benefit-card {
    height: auto;
    padding: 2rem 4.5rem;
    width: auto;
  }
}

@media screen and (max-width: 700px) {
  .footer-links-container {
    flex-direction: column;
  }

  .nav-link {
    margin: 1rem 0rem 1rem 0rem;
  }

  .benefit-card {
    margin: 1rem;
    padding-right: 2rem;
  }

  .tech-img-wrapper {
    height: 6rem;
    width: 6rem;
  }

  .tech-item-wrapper {
    height: 12rem;
    width: 12rem;
    margin: 0rem 2rem;
  }

  .tech-showcase-reel {
    height: 15rem;
  }

  .tech-showcase-container {
    height: 20rem;
  }

  .tech-name {
    font-size: 1.3rem;
  }

  .services-heading-wrapper img {
    margin-right: 2rem;
  }
}

@media screen and (max-width: 650px) {
  .blog-heading {
    font-size: 2.5rem;
  }

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

  .blog-img-wrapper {
    min-width: unset;
    height: 10rem;
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 600px) {
  .hero-heading {
    font-size: 5rem;
  }

  .hero-paragraph-wrapper h2 {
    font-size: 1.4rem;
  }

  .benefits-heading {
    font-size: 3rem;
  }

  .services-heading {
    font-size: 3rem;
  }

  .services-heading-wrapper {
    width: 90%;
  }

  .benefits-icon img {
    width: 8rem;
  }

  .benefits-desc-title h2 {
    font-size: 1.6rem;
  }

  .benefits-desc p {
    font-size: 1.3rem;
  }

  @keyframes reel {
    0% {
      right: 0rem;
    }

    100% {
      right: 224rem;
    }
  }

  .tech-showcase-reel {
    animation: reel 22s linear infinite;
  }
}

@media screen and (max-width: 525px) {
  .logo-container img {
    height: 3.4rem;
    margin-top: 1.2rem;
  }

  .hero-heading {
    font-size: 3.6rem;
  }

  .benefits-icon img {
    width: 6rem;
  }

  .benefits-desc {
    max-width: 20rem;
  }

  .benefits-desc-title h2 {
    font-size: 1.2rem;
  }

  .benefit-card {
    padding-left: 4rem;
    max-width: 30rem;
  }

  .benefits-desc p {
    font-size: 0.8rem;
  }

  .services-heading-wrapper img {
    height: 6rem;
  }

  .services-heading {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 500px) {
  .contact-form-info-heading {
    font-size: 1.8rem;
  }

  .contact-form-info-container {
    margin-left: 3rem;
    margin-right: 3rem;
    height: auto;
  }

  .contact-form-container {
    max-width: 40rem;
    min-width: unset;
  }

  .legal {
    font-size: 0.8rem;
  }

  .footer-border-top {
    height: 1.4rem;
  }
}

@media screen and (max-width: 400px) {
  .benefits-heading {
    font-size: 2.5rem;
  }

  .benefits-paragraph {
    font-size: 1.6rem;
  }

  .benefit-card {
    max-width: 95vw;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-right: 0rem;
    margin-left: 0rem;
  }

  .benefits-desc {
    margin-top: 0rem;
  }

  .tech-heading {
    font-size: 3rem;
  }
}

@media screen and (max-width: 400px) {
  .contact-form-info-heading {
    font-size: 1.2rem;
  }

  .contact-form-info {
    font-size: 1.4rem;
  }

  .contact-form-container {
    max-width: 99vw;
  }

  .footer-logo img {
    max-width: 26rem;
  }
}

@media screen and (max-width: 380px) {
  .logo-container img {
    height: 2.4rem;
    margin-top: 1.8rem;
  }

  .hero-heading {
    font-size: 2.8rem;
  }

  .hero-btn {
    font-size: 1.6rem;
  }
}
