* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  align-items: center;
  background-color: #ecf2f8;
  display: flex;
  flex-direction: initial;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.3rem;
  height: 100vh;
  justify-content: center;
  width: 100vw;
}

h2 {
  font-weight: 600;
  font-size: 2.3rem;
  line-height: 1.3;
  margin-top: 10px;
}

p {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.5;
  opacity: 70%;
}

.container {
  height: 600px;
  width: 1200px;
  display: grid;
  grid-template-columns: repeat(4, 25%);
  grid-template-rows: repeat(2, 50%);
  justify-content: center;
  align-content: center;
  grid-gap: 25px;
}

.box-1,
.box-2,
.box-3,
.box-4,
.box-5 {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  padding: 20px 35px 0 30px;
}

.box-1 {
  background-color: #733fcb;
  background-image: url(/images/bg-pattern-quotation.svg);
  background-repeat: no-repeat;
  background-position: left 85% top 5%;
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  color: #fff;
}

.box-2 {
  background-color: #48556a;
  grid-column: 3 / 4;
  grid-row: 1 / 2;
  color: #fff;
}

.box-3 {
  background-color: #fff;
  grid-column: 4 / 5;
  grid-row: 1 / 3;
  color: #48556a;
}

.box-4 {
  background-color: #fff;
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  color: #48556a;
}

.box-5 {
  background-color: #19202d;
  grid-column: 2 / 4;
  grid-row: 2 / 3;
  color: #fff;
}

.heading {
  width: 100%;
  overflow: hidden;
}

.heading img {
  border-radius: 50%;
  border: 2px solid #a775f1;
  float: left;
  margin-right: 15px;
}

.heading h3,
.heading span {
  margin-left: 15px;
  display: block;
  margin: 2px 0 0 0;
}

.heading h3 {
  font-weight: 500;
  font-size: 1.4rem;
}

.heading span {
  font-weight: 500;
  font-size: 1.2rem;
  opacity: 50%;
}

@media screen and (max-width: 1275px) {
  .container {
    width: 375px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
  }

  .box-1,
  .box-2,
  .box-3,
  .box-4,
  .box-5 {
    width: 327px;
  }
}
