/* Start Variables */
:root {
  --red: hsl(0, 78%, 62%);
  --cyan: hsl(180, 62%, 55%);
  --orange: hsl(34, 97%, 64%);
  --blue: hsl(212, 86%, 64%);
  --gray-500: hsl(234, 12%, 34%);
  --gray-400: hsl(212, 6%, 44%);
  --white-color: hsl(0, 37%, 97%);
}

/* End Variables */

/* Start Global Rules */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 2rem;
}

/* End Global Rules */

/* Start Design */
#technology {
  background-color: var(--white-color);
  min-height: 100vh;
}

#technology .technology-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

#technology .technology-content .heading {
  text-align: center;
}

#technology .technology-content .heading h1 {
  font-size: 32px;
  font-weight: 200;
  color: var(--gray-500);
}

#technology .technology-content .heading h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--gray-500);
}

#technology .technology-content .heading p {
  margin-top: 20px;
  color: var(--gray-400);
  max-width: 500px;
  line-height: 1.6;
}

#technology .technology-content .row {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  margin-top: 4rem;
}

#technology .technology-content .row .card {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  height: 230px;
  box-shadow: 2px 5px 10px rgb(0, 0, 0, 0.1);
  position: relative;
}

#technology .technology-content .row .card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--gray-500);
}

#technology .technology-content .row .card p {
  font-size: 14px;
  color: var(--gray-400);
}

#technology .technology-content .row .card img {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

#technology .technology-content .row .col-1 {
  border-top: 4px solid var(--cyan);
}

#technology .technology-content .row .card-1 {
  margin-bottom: 30px;
  border-top: 4px solid var(--red);
}

#technology .technology-content .row .card-2 {
  margin-bottom: 30px;
  border-top: 4px solid var(--orange);
}

#technology .technology-content .row .col-3 {
  border-top: 4px solid var(--blue);
}

/* Mobile */
@media (max-width: 700px) {
  .container {
    padding: 2rem;
  }

  #technology .technology-content .heading h1,
  #technology .technology-content .heading h2 {
    font-size: 25px;
  }

  #technology .technology-content .row {
    grid-template-columns: 1fr;
  }

  #technology .technology-content .row .col-1 {
    margin-bottom: 30px;
  }
}

/* End Design */