:root {
  --blue: #1890ff;
  --purple: #722ED1;
  --lighter-purple: #F9F0FF;
  --light-purple: #DEC9FA;
  --dark-purple: #160637;
  --gray-purple: #8989A2;
  --white: #FFFFFF;
  --black: #000000;
  --light-green: #F6FFED;
  --light-red: #FFF1F0;
  --light-blue: #E6F7FF;
  --lighter-blue: #FBFCFF;
  --light-pink-purple: #F9F0FF
}

* {
  margin: 0;
  padding: 0;
}

body,
button,
input {
  font-family: 'Metropolis', sans-serif;
  ;
}

h1,
h2,
h3 {
  font-weight: 700;
  color: var(--dark-purple);
}

h1 {
  font-size: 3rem;
  line-height: 1.3;
}

h2 {
  font-size: 2.25rem;
  line-height: 1.167;
}

h3 {
  font-size: 1.3125rem;
  line-height: 1.28;
}

p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-purple);
}

small {
  font-size: 0.75rem;
  color: var(--dark-purple);
  margin: 0.65rem 0;
}

.bold {
  font-weight: bolder;
}

.rounded {
  border-radius: 20px;
}

.tag {
  padding: .75rem 1rem;
  background-color: var(--light-blue);
  color: var(--blue);
  width: fit-content;
}

.button {
  color: var(--black);
  background-color: var(--white);
  padding: .75rem 1rem;
  border: 1px solid var(--gray-purple);
}

.button-primary {
  color: var(--white);
  background-color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 4px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, .16);
}

.button-primary a {
  color: var(--white);
  text-decoration:none;
}

.button-primary-outlined {
  background-color: var(--white);
  border: 1px solid var(--blue);
  color: var(--blue);
}

.background-success {
  background-color: var(--light-green);
}

.background-danger {
  background-color: var(--light-red);
}

.background-info {
  background-color: var(--light-blue);
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-columns {
  flex-direction: column;
}

.input {
  padding: 1rem 1.25rem;
  border: 1px solid var(--gray-purple);
  border-radius: 4px;
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

/* ------------------ NAVBAR ------------------ */
.nav.scroll {
  box-shadow: 0 4px 16px #e1e5ee;
  background: white;
}
/* ------------------ MAIN ------------------ */
.main {
  display: flex;
  align-items: center;
  padding: 2rem;
  flex-direction: column;
  background: url("https://i.ibb.co/tL7ss4w/background-1.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.main__desc {
  order: 1;
  text-align: center;
}

.main__image {
  order: 0;
  width: 100%;
  height: auto;
  padding: 2rem 0 0;
}

.main p.tag {
  margin: auto;
  margin-bottom: 2rem;
}

.main h1 {
  margin-bottom: 1.5rem;
}

.main p {
  margin-bottom: 1rem;
}

/* ------------------ EXCELLENCE ------------------ */
.excellence {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.excellence .tag {
  margin: auto;
  margin-bottom: 2rem;
}

.excellence h2 {
  margin-bottom: 1.25rem;
  max-width: 475px;
  text-align: center;
}

.excellence__desc {
  max-width: 525px;
  text-align: center;
}

.excellence__items {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.excellence__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0.75rem;
}

.excellence__icon {
  margin-bottom: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 40px;
}

.excellence__item h3 {
  margin-bottom: 1rem;
  text-align: center;
}

.excellence__item p {
  text-align: center;
}

/* ------------------ PRODUCT TEAM & ENGINEERING TEAM ------------------ */
.product-team,
.engineering-team {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.product-team__image,
.engineering-team__image {
  width: 80%;
  height: auto;
}

.product-team__desc .tag,
.engineering-team__desc .tag {
  margin: auto;
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.product-team__desc h2,
.engineering-team__desc h2 {
  text-align: center;
  margin-bottom: 1.25rem;
}

.product-team__desc p,
.engineering-team__desc p {
  text-align: center;
}

/* ------------------ TESTIMONY ------------------ */
.testimony {
  background: url("https://i.ibb.co/fMmdLnk/background-2.png");
  padding: 5rem 2rem;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.testimony h3 {
  font-weight: 500;
  text-align: center;
  margin-bottom: 1rem;
  max-width: 650px;
  margin: auto;
}

.testimony__image {
  display: flex;
  justify-content: center;
  margin: auto;
  margin-bottom: 1rem;
  text-align: center;
}

.testimony__name {
  text-align: center;
  font-weight: 700;
  color: var(--dark-purple);
}

.testimony hr {
  color: var(--light-purple);
  margin: 3.5rem 0;
}

.testimony__companies {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
}

.testimony__company {
  margin: 0.5rem
}

/* ------------------ SIGN UP ------------------ */
.sign-up {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sign-up__text {
  max-width: 500px;
}

.sign-up h2 {
  text-align: center;
  margin: auto;
  margin-bottom: 2rem;
}

.sign-up__desc {
  text-align: center;
  margin: auto;
  position: relative;
  margin-bottom: 2rem;
}

.sign-up__desc::before {
  content: "";
  display: block;
  width: 30%;
  height: 1.5px;
  background-color: var(--gray-purple);
  left: 0;
  top: 50%;
  position: absolute;
}

.sign-up__desc::after {
  content: "";
  display: block;
  width: 30%;
  height: 1.5px;
  background-color: var(--gray-purple);
  right: 0;
  top: 50%;
  position: absolute;
}

.sign-up__companies {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.sign-up__company {
  margin: 1rem
}

.sign-up hr {
  color: var(--gray-purple);
  margin: 1.75rem 0;
}

.sign-up__form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--light-blue);
  box-shadow: 0px 10px 20px rgba(116, 116, 116, .16);
  position: relative;
  background-color: var(--white);
  max-width: 350px;
}

.sign-up__form::before {
  content: '';
  display: block;
  width: calc(100% + 4rem);
  height: 100%;
  background-color: var(--light-blue);
  position: absolute;
  top: 10%;
  left: -2rem;
  border-radius: 15px;
  z-index: -1;
}

.sign-up__form h3,
.sign-up__form p,
.sign-up__form a {
  text-align: center;
}

.sign-up__form h3 {
  margin-bottom: 2rem;
}

/* ------------------ RESPONSIVE ------------------ */
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }

  .main {
    flex-direction: row;
    padding: 4rem;
  }

  .main__desc {
    order: 0;
    text-align: left;
  }

  .main__image {
    order: 1
  }

  .main p.tag {
    margin: 0;
    margin-bottom: 1rem;
  }

  .excellence {
    padding: 4rem;
  }

  .excellence__items {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-evenly;
  }

  .excellence__item {
    align-items: flex-start;
    flex: 0.2;
  }

  .excellence__item h3,
  .excellence__item p {
    text-align: left;
  }

  .product-team,
  .engineering-team {
    padding: 4rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
  }

  .product-team__image {
    margin-right: 2rem;
    max-height: 436px;
    width: 100%;
    object-fit: contain;
  }

  .engineering-team__image {
    margin-left: 2rem;
    width: 100%;
    object-fit: contain;
    order: 1;
  }

  .product-team__image,
  .product-team__desc,
  .engineering-team__image,
  .engineering-team__desc {
    flex: 0.4;
  }

  .engineering-team__desc {
    order: 0;
  }

  .product-team__desc .tag,
  .engineering-team__desc .tag {
    margin: 0;
    margin-bottom: 2rem;
  }

  .product-team__desc h2,
  .product-team__desc p,
  .engineering-team__desc h2,
  .engineering-team__desc p {
    text-align: left;
  }

  .testimony {
    padding: 6rem 4rem;
  }

  .sign-up {
    padding: 4rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .sign-up__text {
    max-width: none;

  }

  .sign-up__text,
  .sign-up__form {
    flex: 0.45
  }
}

@media screen and (min-width: 1200px) {
  .main {
    padding: 6rem;
  }

  .excellence {
    padding: 6rem;
  }

  .product-team,
  .engineering-team {
    padding: 6rem;
  }

  .testimony {
    padding: 7rem 6rem;
  }

  .sign-up {
    padding: 6rem;
  }

  .main__image {
  width: 50%;
  padding: 0;
  margin: -75px auto;
  }
}

@media screen and (min-width: 1400px) {
  .main {
    padding: 8rem;
  }

  .excellence {
    padding: 8rem;
  }

  .product-team,
  .engineering-team {
    padding: 8rem;
  }

  .testimony {
    padding: 8rem;
  }

  .sign-up {
    padding: 8rem;
  }
}