main{
  padding: 16vh 4vh 5vh 4vh;
}

.head-test {
  text-align: center;
  font-size: 1.5rem;
}
.head-test h1 a{
  text-decoration: none;
  color: black;
  font-weight: 500;
}
.head-test h1 a:hover{
  color: green;
}
.head-test p{
  font-size: 1.3rem;
  padding: 1vh;
}

#box{
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10vh;
}
.box {
  border: 2px solid black;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 400px;
  width: 300px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 4px 4px 10px black;
  transition: none;
}
#box :hover{
  background-color: #12cad6;
  color: white;
  /* transition: .3s ease; */
}
.box-img{
  margin: 10px;
}
.box img{
  height: 180px;
  width: 280px;
  border-radius: 20px;
}
.box h2{
  font-size: 1.6rem;
  font-weight: 500;
}
.box p{
  max-width: fit-content;
  padding: 10px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 300;
}
.market{
  display: flex;
  flex-direction: column;
  gap: 10vh;
  padding: 50px;
  margin-top: 10vh;
}
.solution{
  display: flex;
  align-items: center;
  gap: 7vw;
}
.solution img{
  height: 200px;
  width: 350px;
  border-radius: 20px;
}
.solution-text{
  max-width: 60vw;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.solution-text h2{
  font-size: 2rem;
  font-weight: 500;
}
.solution-text p{
  font-size: 1.5rem;
  font-weight: 350;
}

.digital{
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 7vw;
}
.digital img{
  height: 200px;
  width: 350px;
  border-radius: 20px;
}
.digital-text{
  max-width: 60vw;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.digital-text h2{
  font-size: 2rem;
  font-weight: 500;
}
.digital-text p{
  font-size: 1.5rem;
  font-weight: 350;
}



@media (max-width:600px) {
  .solution{
    flex-direction: column;
    text-align: center;
    gap: 2vh;
  }
  .solution img{
    height: 30vh;
    width: 60vw;
    border-radius: 20px;
  }
  .solution-text{
    max-width: fit-content;
    gap: 2vh;
  }
  .solution-text h2{
    font-size: 2rem;
    font-weight: 400;
  }
  .solution-text p{
    font-size: 1.3rem;
    font-weight: 300;
  }
  #box{
    display: flex;
    justify-content: center;
  }
  .digital{
    display: flex;
    flex-direction: column;
    gap: 3vw;
    text-align: center;
  }
  .digital img{
    height: 30vh;
    width: 60vw;
    border-radius: 20px;
  }
  .digital-text{
    max-width: fit-content;
    gap: 2vh;
  }
  .digital-text h2{
    font-size: 2rem;
    font-weight: 400;
  }
  .digital-text p{
    font-size: 1.3rem;
    font-weight: 300;
  }
}

@media (min-width:600px) and (max-width:960px) {
  .solution{
    flex-direction: row;
    text-align: center;
    gap: 5vh;
  }
  .solution img{
    height: 180px;
    width: 250px;
  }
  .solution-text{
    max-width: fit-content;
    gap: 2vh;
  }
  .solution-text h2{
    font-size: 2rem;
    font-weight: 400;
  }
  .solution-text p{
    font-size: 1.3rem;
    font-weight: 300;
  }
  
  .digital{
    flex-direction: row-reverse;
    text-align: center;
    gap: 5vh;
  }
  .digital img{
    height: 180px;
    width: 250px;
  }
  .digital-text{
    max-width: fit-content;
    gap: 2vh;
  }
  .digital-text h2{
    font-size: 2rem;
    font-weight: 400;
  }
  .digital-text p{
    font-size: 1.3rem;
    font-weight: 300;
  }
}