* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Barlow Semi Condensed", sans-serif;
  background-color: hsl(214, 17%, 92%);
  color: hsl(0, 0%, 100%);
  font-size: 13px;
  font-weight: 400;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 600;
  text-align: start;
  line-height: 1.4em;
}

h2 {
  font-size: 14.5px;

  font-weight: 600;
}

span {
  font-size: 13px;
}

ul {
  list-style: none;
  margin: 25px 20px 25px 20px;
}

li {
  margin: 10px 15px 40px 15px;
  padding: 25px 30px 25px 30px;
  border-radius: 10px;
  box-shadow: 12px 12px 10px 3px rgba(169, 169, 194, 0.2);
}

.card-one {
  background-color: hsl(263, 55%, 52%);
 
}
.card-two {
  background-color: hsl(217, 19%, 35%);
}
.card-three {
  background-color: hsl(0, 0%, 100%);
  color: hsl(217, 19%, 35%);
}
.card-four {
  background-color: hsl(219, 29%, 14%);
}
.card-five {
  background-color: hsl(0, 0%, 100%);
  color: hsl(217, 19%, 35%);
}

img {
  border-radius: 25px;
}
.main-card {
  display: flex;
  gap: 15px;
  padding-bottom: 13px;
}

@media screen and (max-width: 765px){
.quotation{
  display: none;
}
}

@media screen and (min-width: 768px) {
.quotation{
display: block;
    position: absolute;
    top: 0;
    right: 85px;
    width: 100px;
    opacity: 0.4;
  
}

  ul {
    max-width: 1100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 30px;
  }

  li{
    margin: 0;
  }

  .card-one {
 position: relative;
    grid-column: 1 / 3;
    grid-row: 1;
  }

 

  .card-two {
    grid-column: 3 / 4;
    grid-row: 1;
  }

  .card-five {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
  }

  .card-three {
    grid-column: 1 / 2;
    grid-row: 2;
  }

  .card-four {
    grid-column: 2 / 4;
    grid-row: 2;
  }
}

