@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@500;600&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  outline: none;
  list-style: none;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Barlow Semi Condensed", sans-serif;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 80%;
  margin: 5rem auto;
}

.container .box {
  padding: 2rem;
  border-radius: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.container .box .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3rem;
}

.container .box .head img {
  border-radius: 50%;
  margin-right: 2rem;
}

.container .box .head h2 {
  color: #cfcfcf;
  font-size: 2rem;
}

.container .box .head h2 span {
  color: #ecf2f8;
  font-size: 1.5rem;
  display: block;
}

.container .box .pragraph p {
  font-size: 2rem;
  color: white;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.container .box .pragraph q {
  font-size: 1.5rem;
  color: #cfcfcf;
  line-height: 1.5;
}

.container .box:first-of-type {
  background: #7541c8;
  position: relative;
  z-index: 1;
}

.container .box:first-of-type .quote {
  position: absolute;
  top: 0;
  right: 5rem;
  width: 14.5rem;
  z-index: -1;
}

.container .box:nth-of-type(2) {
  background: #48556a;
}

.container .box:nth-of-type(3) {
  background: white;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
}

.container .box:nth-of-type(3) .head h2 {
  color: black;
}

.container .box:nth-of-type(3) .head h2 span {
  color: #cfcfcf;
}

.container .box:nth-of-type(3) .pragraph p {
  color: black;
}

.container .box:nth-of-type(4) {
  background: #19212e;
}

.container .box:nth-of-type(4) .head h2 {
  color: #cfcfcf;
}

.container .box:nth-of-type(4) .head h2 span {
  color: #ecf2f8;
}

.container .box:nth-of-type(4) .pragraph p {
  color: #ecf2f8;
}

.container .box:last-of-type {
  background: white;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
}

.container .box:last-of-type .head h2 {
  color: black;
}

.container .box:last-of-type .head h2 span {
  color: #cfcfcf;
}

.container .box:last-of-type .pragraph p {
  color: black;
}

@media (min-width: 1200px) {
  .container {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
  .box:first-of-type {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
  .box:nth-of-type(4) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/4;
  }
  .box:last-of-type {
    -ms-grid-column: 4;
    grid-column: 4;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
  }
  .box:last-of-type .pragraph {
    padding: 0 3rem;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
}

@media (min-width: 767px) {
  .container .container {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
}

.attribution {
  font-size: 11px;
  text-align: center;
}

.attribution a {
  color: #3e52a3;
}
/*# sourceMappingURL=style.css.map */