:root {
  --white: #ffffff;
  --grey-800: #353535;
  --grey-500: #d7d7d7;
  --blue-700: #007dc8;
  --blue-500: #37b0f1;
  --blue-300: #cae1ee;
  --blue-200: #e6f2f8;
  --green-500: #bae19f;
  --green-700: #7bcf5c;
  --red-500: #e63636;
}

html,
body {
  scroll-behavior: smooth;
}

.h1 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 49px;
  color: var(--white);
}

@media screen and (max-width: 1025px) {
  .h1 {
    font-size: 24px;
    line-height: 30px;
  }
}

.h2 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 35px;
  line-height: 43px;
  color: var(--white);
}

@media screen and (max-width: 1025px) {
  .h2 {
    font-size: 24px;
    line-height: 30px;
  }
}

.body1 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--white);
}

@media screen and (max-width: 1025px) {
  .body1 {
    font-size: 16px;
    line-height: 24px;
  }
}

.body2 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: var(--white);
}

@media screen and (max-width: 1025px) {
  .body2 {
    font-size: 14px;
    line-height: 22px;
  }
}

body {
  margin: 0;
  padding: 0;
}

.layout {
  max-width: 1260px;
  width: 90%;
  margin: 0 auto;
}

.small-layout {
  max-width: 925px;
  width: 90%;
  margin: 0 auto;
}

.gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;

  background: linear-gradient(84.76deg, #37b0f1 7.76%, #007dc8 100%);
}

/* HEADER */

body > header {
  height: 90px;
  background-color: var(--white);

  display: flex;
  justify-content: space-between;
  align-items: center;
}

body > header > img {
  height: 48px;
}

body > header > a {
  font-size: 12px !important;
  text-decoration: underline;
  color: var(--grey-800) !important;
}

/* INTRO */

#intro {
  position: relative;

  /* height: calc(100svh - 90px); */
  min-height: 900px;
  background-color: var(--white);

  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 1025px) {
  #intro {
    height: auto;
    background: linear-gradient(84.76deg, #37b0f1 7.76%, #007dc8 100%);
  }
}

#intro > .gradient {
  height: 550px;
}

@media screen and (max-width: 1025px) {
  #intro > .gradient {
    display: none;
  }
}

#intro > div {
  position: absolute;
  z-index: 1;

  display: flex;
  justify-content: space-between;
  gap: 105px;
}

@media screen and (max-width: 1025px) {
  #intro > div {
    position: relative;

    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
}

#intro > div > .content {
  margin-block-start: 30px;
  margin-block-end: 20px;
}

#intro > div > .content h1 strong {
  color: var(--grey-800);
}

#intro > div > .content p {
  margin-block: 30px;
}

#intro > div > .content ul.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px 70px;
}

@media screen and (max-width: 1025px) {
  #intro > div > .content ul.features {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    gap: 10px 0px;
  }
}

#intro > div > .content ul.features > li {
  display: flex;
  align-items: center;
  gap: 14px;
}

#intro > div > .content ul.features > li > div {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: var(--blue-700);
  flex-shrink: 0;

  display: flex;
  justify-content: center;
  align-items: center;
}

#intro > div > .content ul.features > li > div > img {
  height: 22px;
}

#intro > div > .content .video {
  position: relative;
}

#intro > div > .content .video img {
  width: 100%;
  border-radius: 10px;
  margin-block-start: 35px;
}

#intro > div > .content .video .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  height: 80px;
  width: 80px;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
}

#intro > div > form {
  width: 420px;
  max-width: 100%;
  padding-block: 23px 38px;
  padding-inline: 28px;

  flex-shrink: 0;

  background-color: var(--white);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.17);
  border-radius: 10px;

  transform: translateY(-20px);
}

#intro > div > form > h2 {
  margin-block-end: 20px;

  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: var(--grey-800);
  text-align: center;
}

#intro > div > form > h2 > strong {
  font-weight: 700;
  color: var(--blue-700);
}

#intro > div > form > .cityzip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}

#intro > div > form input[type="text"],
#intro > div > form input[type="password"],
#intro > div > form input[type="email"],
#intro > div > form input[type="tel"] {
  width: 100%;
  height: 40px;
  margin-block: 5px;
  padding-inline: 21px;

  border: 1px solid var(--blue-300);
  border-radius: 5px;

  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: var(--grey-800);
}

#intro > div > form input[type="text"].error,
#intro > div > form input[type="password"].error,
#intro > div > form input[type="email"].error,
#intro > div > form input[type="tel"].error {
  border: 2px solid var(--red-500);
}

#intro > div > form > .checkbox {
  display: flex;
}

#intro > div > form > .checkbox input[type="checkbox"] {
  display: none;
}

#intro > div > form > .checkbox input[type="checkbox"].error + label {
  color: var(--red-500);
}

#intro > div > form > .checkbox label {
  margin-block: 12px;

  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;

  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: var(--grey-800);
}

#intro > div > form > .checkbox label a {
  color: var(--grey-800);
  text-decoration: underline;
}

#intro > div > form > .checkbox .checkmark {
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid var(--blue-300);
  border-radius: 4px;
  margin-right: 10px;
}

#intro > div > form > .checkbox .checkmark::before {
  content: "";
  width: 14px;
  height: 14px;
  background-color: var(--blue-500);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

#intro
  > div
  > form
  > .checkbox
  input[type="checkbox"]:checked
  + label
  .checkmark::before {
  opacity: 1;
}

#intro > div > form > input[type="submit"],
#intro > div > form > .already > a {
  width: 100%;
  height: 60px;
  margin-block-start: 10px;
  margin-inline: auto;

  display: flex;
  justify-content: center;
  align-items: center;

  background-color: var(--blue-500);
  border: none;
  border-radius: 10px;
  cursor: pointer;

  font-weight: 700;
  color: var(--white) !important;

  transition: background-color 0.2s ease-in-out;
}

#intro > div > form > .already > a {
  margin-block-start: 0px;
  background-color: var(--green-500);
}

#intro > div > form > input[type="submit"]:hover {
  background-color: var(--blue-700);
}

#intro > div > form > .already > a:hover {
  background-color: var(--green-700);
}

#intro > div > form > .already {
  margin-block-start: 20px;
}

#intro > div > form > .already > div {
  width: 70%;
  margin-inline: auto;
  padding-block: 14px;

  color: var(--grey-800);
  text-align: center;

  border-top: 1px solid var(--grey-500);
  font-size: 13px;
}

/* STEPS */

#steps {
  height: 250px;
  background-color: var(--blue-200);
}

@media screen and (max-width: 1025px) {
  #steps {
    height: auto;
  }
}

#steps > ul {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 1025px) {
  #steps > ul {
    flex-direction: column;
    padding-block-end: 30px;
  }
}

#steps > ul > li {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1025px) {
  #steps > ul > li {
    flex-direction: row-reverse;
  }
}

#steps > ul > li::before {
  content: "";
  height: 90px;
  width: 70px;

  position: absolute;
  top: 50px;
  left: -35%;
  transform: translateY(-50%);

  background-image: url(./assets/icons/fast-arrow-right.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
}

@media screen and (max-width: 1025px) {
  #steps > ul > li::before {
    display: none;
  }
}

#steps > ul > li:first-child::before {
  content: none;
}

#steps > ul > li > .icon {
  height: 90px;
  width: 90px;
}

@media screen and (max-width: 1025px) {
  #steps > ul > li > .icon {
    display: none;
  }
}

#steps > ul > li > .icon > img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

#steps > ul > li > .content {
  margin-top: 36px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

#steps > ul > li > .content > .number {
  position: relative;

  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 66px;
  line-height: 80px;

  background-image: linear-gradient(270deg, #37b0f1 -9.15%, #007dc8 100%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;
}

#steps > ul > li > .content > .number::after {
  position: absolute;
  top: 17px;
  right: -9px;

  content: "";
  display: block;
  width: 3px;
  height: 46px;
  background-color: var(--blue-500);
}

#steps > ul > li > .content > .text {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 29px;
  color: var(--grey-800);
}

#steps > ul > li > .content > .text > div {
  font-weight: 400;
}

/* WHY */

#why {
  margin-block: 70px 80px;
}

#why > .h2 {
  color: var(--blue-700);
  text-align: center;
}

#why > p.body2 {
  margin-block-start: 15px;
  color: var(--grey-800);
  text-align: center;
}

#why > ul > li {
  margin-block-start: 35px;
  background-color: var(--blue-200);

  display: flex;
  align-items: center;
  gap: 30px;
}

@media screen and (max-width: 1025px) {
  #why > ul > li {
    flex-direction: column;
    gap: 0;
  }
}

#why > ul > li > .image {
  position: relative;

  width: 245px;
  height: 100%;
  flex-shrink: 0;
}

@media screen and (max-width: 1025px) {
  #why > ul > li > .image {
    width: 100%;
    height: 200px;
    margin-block-end: 30px;
  }
}

#why > ul > li > .image::after {
  content: "";

  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 12px;
  background-color: var(--blue-700);
}

#why > ul > li > .image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1025px) {
  #why > ul > li > .content {
    padding-inline: 30px;
    padding-block-end: 30px;
  }
}

#why > ul > li > .content h3 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
  color: var(--grey-800);
}

#why > ul > li > .content h3 strong {
  font-weight: 700;
  color: var(--blue-700);
}

#why > ul > li > .content ul {
  margin-block-start: 35px;
}

#why > ul > li > .content ul > li {
  position: relative;
  margin-block-start: 13px;
  margin-inline-start: 16px;

  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: var(--grey-800);
}

#why > ul > li > .content ul > li span {
  font-weight: 200;
}

#why > ul > li > .content ul > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -16px;
  bottom: 0;
  width: 6px;
  background-color: var(--blue-700);
}

#why > a {
  width: 330px;
  height: 60px;
  margin-block-start: 40px;
  margin-inline: auto;

  display: flex;
  justify-content: center;
  align-items: center;

  background-color: var(--blue-500);
  border-radius: 10px;

  font-weight: 700;
  color: var(--white) !important;

  transition: background-color 0.2s ease-in-out;
}

#why > a:hover {
  background-color: var(--blue-700);
}

/* CLIENTS */

#clients {
  background: linear-gradient(84.76deg, #37b0f1 7.76%, #007dc8 100%);
}

#clients > div {
  padding-block: 30px 70px;
}

#clients > div > .h2,
#clients > div > .body2 {
  color: var(--white) !important;
  text-align: center;
}

#clients > div > .body2 {
  margin-block-start: 15px;
}

#clients > div > .carousel {
  position: relative;
  margin-block-start: 70px;
}

#clients > div > .carousel > div {
  position: relative;

  width: 100%;

  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;

  -ms-overflow-style: none;
  scrollbar-width: none;
}

#clients > div > .carousel > .prev-arrow,
#clients > div > .carousel > .next-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
}

@media screen and (max-width: 1025px) {
  #clients > div > .carousel > .prev-arrow,
  #clients > div > .carousel > .next-arrow {
    top: 90px;
  }
}

#clients > div > .carousel > .prev-arrow {
  left: 100px;
  background-image: url("assets/icons/chevron-left.png");
}

@media screen and (max-width: 1025px) {
  #clients > div > .carousel > .prev-arrow {
    left: 0;
  }
}

#clients > div > .carousel > .next-arrow {
  right: 100px;
  background-image: url("assets/icons/chevron-right.png");
}

@media screen and (max-width: 1025px) {
  #clients > div > .carousel > .next-arrow {
    right: 0;
  }
}

#clients > div > .carousel > div::-webkit-scrollbar {
  background-color: transparent;
  display: none;
}

#clients > div > .carousel > div > ul {
  display: flex;
  width: 100%;
}

#clients > div > .carousel > div > ul > li {
  padding-inline: 220px;

  flex: 0 0 100%;
  scroll-snap-align: start;

  display: flex;
  align-items: center;
  gap: 30px;
}

@media screen and (max-width: 1025px) {
  #clients > div > .carousel > div > ul > li {
    padding-inline: 0;
    flex-direction: column;
  }
}

#clients > div > .carousel > div > ul > li > .image {
  width: 170px;
  height: 170px;
  flex-shrink: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  background-color: var(--white);
  border-radius: 50%;
}

#clients > div > .carousel > div > ul > li > .image > img {
  width: 130px;
  height: 130px;
  object-fit: contain;
}

#clients > div > .carousel > div > ul > li > .content > h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: var(--white);
}

@media screen and (max-width: 1025px) {
  #clients > div > .carousel > div > ul > li > .content > h3 {
    text-align: center;
  }
}

#clients > div > .carousel > div > ul > li > .content > .body2 {
  margin-block-start: 17px;
}

/* INDUSTRIES */

#industries {
  margin-block: 80px;

  text-align: center;
}

#industries > h2 {
  color: var(--blue-700);
}

#industries > p {
  margin-block-start: 15px;
  color: var(--grey-800);
}

#industries > ul {
  margin-block-start: 42px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

@media screen and (max-width: 1025px) {
  #industries > ul {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }
}

#industries > ul > li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  aspect-ratio: 1/1;

  background-size: cover;
  background-position: center;

  min-height: 200px;
  padding: 20px;
}

#industries > ul > li:nth-child(1) {
  background-image: url("assets/industries/automotive.jpg");
}

#industries > ul > li:nth-child(2) {
  background-image: url("assets/industries/medical.jpg");
}

#industries > ul > li:nth-child(3) {
  background-image: url("assets/industries/consumer-and-multimedia.jpg");
}

#industries > ul > li:nth-child(4) {
  background-image: url("assets/industries/industrial.jpg");
}

#industries > ul > li:nth-child(5) {
  background-image: url("assets/industries/lightning.jpg");
}

#industries > ul > li:nth-child(6) {
  background-image: url("assets/industries/metering.jpg");
}

#industries > ul > li > h3,
#industries > ul > li > p.body2 {
  color: var(--white);
  text-align: center;
}

#industries > ul > li > h3 {
  margin-block-end: 22px;

  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
}

/* WHO ARE WE */

#who-we-are {
  margin-block: 80px;
  text-align: center;
}

#who-we-are > div > h2 {
  margin-block-end: 35px;
  color: var(--blue-700);
}

#who-we-are > div > p {
  margin-block-start: 15px;
  color: var(--grey-800);
}

#who-we-are > div > p > strong {
  font-weight: 700;
  color: var(--blue-700);
}

#who-we-are > div > ul {
  margin-block-start: 25px;
  padding: 26px 46px;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;

  background-color: var(--blue-200);
}

@media screen and (max-width: 1025px) {
  #who-we-are > div > ul {
    padding: 30px 0;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 1fr);
    grid-gap: 20px;
  }
}

#who-we-are > div > ul > li > .number {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 38px;
  line-height: 46px;
  color: var(--blue-700);
}

#who-we-are > div > ul > li > .text {
  margin-block-start: 25px;

  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  color: var(--grey-800);
}

@media screen and (max-width: 1025px) {
  #who-we-are > div > ul > li > .text {
    margin-block-start: 0;
  }
}

#who-we-are > a {
  width: 330px;
  height: 60px;
  margin-block-start: 40px;
  margin-inline: auto;

  display: flex;
  justify-content: center;
  align-items: center;

  background-color: var(--blue-500);
  border-radius: 10px;

  font-weight: 700;
  color: var(--white) !important;

  transition: background-color 0.2s ease-in-out;
}

#who-we-are > a:hover {
  background-color: var(--blue-700);
}

/* DISCOVER*/

#discover {
  margin-block-start: 80px;
  padding-block: 40px 70px;

  background-color: var(--grey-800);
  text-align: center;
}

#discover > div > h2 {
  margin-block-end: 35px;
  color: var(--blue-700);
}

#discover > div > p {
  margin-block-start: 15px;
  line-height: 35px;
  color: var(--white);
}

#discover > div > p > strong {
  font-weight: 700;
  color: var(--blue-700);
}

#discover > div > ul {
  margin-block-start: 50px;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 50px;
}

@media screen and (max-width: 1025px) {
  #discover > div > ul {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }
}

#discover > div > ul > li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#discover > div > ul > li > .image {
  height: 50px;
  width: 50px;
  flex-shrink: 0;
}

#discover > div > ul > li > img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

#discover > div > ul > li > h3 {
  margin-block: 25px;

  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  color: var(--blue-700);
}

/* SUCCESS */

#success,
#information {
  padding-block: 50px;
  height: calc(100svh - 90px);

  background-color: var(--blue-200);
  text-align: center;
}

#success > div > h2,
#information > div > h2 {
  color: var(--blue-700);
}

#success > div > .body2,
#information > div > .body2 {
  color: var(--grey-800);
}

#success > div > .body2,
#information > div > .body2 {
  margin-block: 30px;
}

#success > div > a,
#information > div > a {
  width: 330px;
  height: 60px;
  margin-block-start: 50px;
  margin-inline: auto;

  display: flex;
  justify-content: center;
  align-items: center;

  background-color: var(--blue-500);
  border-radius: 10px;

  font-weight: 700;
  color: var(--white) !important;

  transition: background-color 0.2s ease-in-out;
}

#success > div > a:hover,
#information > div > a:hover {
  background-color: var(--blue-700);
}
