body {
  margin: 0;
  background-color: #f0f0f0;
  font-family: Poppins, sans-serif;
}

.main {
  width: 70vw;
  margin: 0 auto;
}

.header {
  margin: 20px 140px;
}
.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.navbar a button {
  background-color: #5453f9;
  color: #f0f0f0;
  width: 300px;
  cursor: pointer;
  height: 70px;
  border: #5453f9;
  border-radius: 10px;
  font-size: large;
  font-family: Poppins;
  text-transform: capitalize;
}

.logo a img {
  width: 180px;
}

.hero {
  margin-top: 190px;
  display: flex;
  flex-direction: column;
  gap: 130px;
}

.hero .content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}

.hero img {
  width: 500px;
}
.hero .text h1 {
  font-weight: 600;
  color: #33295d;
  font-size: 2.5rem;
  text-transform: capitalize;
}

.hero .text p {
  font-weight: 400;
  color: #5f5a6e;
  font-size: 25px;
}

.integrations {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.integrations h1 {
  font-weight: 500;
  color: #33295d;
  font-size: 2.5rem;
  text-align: center;
}

.integrations h1 span {
  color: #5251e7;
}

.integrations ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 80px;
}

.integrations ul li img {
  width: 150px;
}
.integrations ul li img.jira {
  width: 100px;
}

.process {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process h1 {
  font-weight: 500;
  color: #33295d;
  font-size: 2.5rem;
  text-align: left;
  text-transform: capitalize;
}

.process h1 span {
  color: #5251e7;
}

.process .steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 140px;
}
.process .steps .step {
  display: flex;
  flex-direction: row;
  gap: 90px;
  align-items: center;
}

.process .steps .step img {
  width: 500px;
}

.process .steps .step .content h1 {
  text-align: left;

  margin: 20px 0;
  color: #4a4a4a;
}
.process .steps .step .content h1:after {
  content: '';
  border-bottom: 5px solid #50e2d5;
  width: 40%;
  margin-top: 14px;
  display: block;
}
.process .steps .step .content p {
  font-size: 20px;
  text-align: left;
  width: 400px;
  color: #575757;
}

@media screen and (max-width: 1024px) {
  /* start of medium tablet styles */
  .body {
    margin: 0;
    background-color: #f0f0f0;
    font-family: Poppins, sans-serif;
  }
  /* start of phone styles */
  .header {
    margin: 20px;
  }

  .main {
    width: 100vw;
    margin: 0 auto;
  }
  .logo a img {
    width: 200px;
  }
  .navbar a button {
    background-color: #5453f9;
    color: #f0f0f0;
    width: 250px;
    cursor: pointer;
    height: 70px;
    border: #5453f9;
    border-radius: 10px;
    font-size: 15px;
    font-family: Poppins;
    text-transform: capitalize;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 120px 25px 0;
  }

  .hero .content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    gap: 5px;
  }

  .hero img {
    width: 250px;
  }

  .hero .text h1 {
    font-weight: 600;
    color: #33295d;
    font-size: 1.6rem;
    margin: 10px auto;
    text-transform: capitalize;
  }

  .hero .text p {
    font-weight: 400;
    color: #5f5a6e;
    font-size: 16px;
  }

  .integrations {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .integrations h1 {
    font-weight: 500;
    color: #33295d;
    font-size: 1.8rem;
    text-align: center;
    margin-top: 10px;
  }

  .integrations h1 span {
    color: #5251e7;
  }

  .integrations ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 30px;
    padding-left: 0;
  }

  .integrations ul li img {
    width: 150px;
  }
  .integrations ul li img.jira {
    width: 100px;
  }

  .process {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }

  .process h1 {
    font-weight: 500;
    color: #33295d;
    font-size: 1.8rem;
    text-align: left;
    text-transform: capitalize;
  }

  .process .steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 0 40px;
  }

  .process .steps .step {
    display: flex;
    flex-direction: row;
    gap: 35px;
    align-items: center;
  }

  .process .steps .step img {
    width: 340px;
  }

  .process .steps .step .content h1 {
    text-align: left;
    margin: 10px 0;
    color: #4a4a4a;
    font-size: 1.6rem;
  }
  .process .steps .step .content h1:after {
    content: '';
    border-bottom: 5px solid #50e2d5;
    width: 40%;
    margin-top: 14px;
    display: block;
  }
  .process .steps .step .content p {
    font-size: 18px;
    text-align: left;
    width: 350px;
    color: #575757;
  }
}

@media screen and (max-width: 479px) {
  .body {
    margin: 0;
    background-color: #f0f0f0;
    font-family: Poppins, sans-serif;
  }
  /* start of phone styles */
  .header {
    margin: 20px 30px 20px 20px;
  }

  .main {
    width: 100vw;
    margin: 0 auto;
  }
  .logo a img {
    width: 120px;
  }
  .navbar a button {
    background-color: #5453f9;
    color: #f0f0f0;
    width: 110px;
    cursor: pointer;
    height: 55px;
    border: #5453f9;
    border-radius: 10px;
    font-size: 10px;
    font-family: Poppins;
    text-transform: capitalize;
  }

  .hero {
    margin-top: 90px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 0 25px;
  }

  .hero .content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    gap: 5px;
  }

  .hero img {
    width: 145px;
  }

  .hero .text h1 {
    font-weight: 600;
    color: #33295d;
    font-size: 0.9rem;
    text-transform: capitalize;
  }

  .hero .text p {
    font-weight: 400;
    color: #5f5a6e;
    font-size: 11px;
  }

  .integrations {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .integrations h1 {
    font-weight: 500;
    color: #33295d;
    font-size: 1.2rem;
    text-align: center;
    margin-top: 0;
  }

  .integrations h1 span {
    color: #5251e7;
  }

  .integrations ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 10px;
    padding-left: 0;
  }

  .integrations ul li img {
    width: 70px;
  }

  .integrations ul li img.jira {
    width: 50px;
  }

  .process {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }

  .process h1 {
    font-weight: 500;
    color: #33295d;
    font-size: 1.3rem;
    text-align: left;
    text-transform: capitalize;
  }

  .process .steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 0 40px;
  }

  .process .steps .step {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }

  .process .steps .step img {
    width: 140px;
  }

  .process .steps .step .content h1 {
    text-align: left;
    margin: 10px 0;
    color: #4a4a4a;
    font-size: 0.9rem;
  }
  .process .steps .step .content h1:after {
    content: '';
    border-bottom: 5px solid #50e2d5;
    width: 40%;
    margin-top: 14px;
    display: block;
  }
  .process .steps .step .content p {
    font-size: 11px;
    text-align: left;
    width: 180px;
    color: #575757;
  }
}
