.text-preset-1 {
  font-family: "Barlow", sans-serif;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0px;
  font-weight: 600;
}

.text-preset-2 {
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0px;
  font-weight: 500;
}

.text-preset-3 {
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  line-height: 140%;
  letter-spacing: 0px;
  font-weight: 500;
}

.text-preset-4 {
  font-family: "Barlow", sans-serif;
  font-size: 11px;
  line-height: 110%;
  letter-spacing: 0px;
  font-weight: 500;
}

html {
  font-size: clamp(1rem, 1vw + 0.5rem, 5rem);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin-left: 5%;
  margin-right: 5%;
  background-color: #F6F5F6;
}

@media (min-width: 768px) {
  .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "item1 item1" "item2 item3" "item4 item4" "item5 item5";
    gap: 32px;
  }
}

@media (min-width: 1440px) {
  .container {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: "item1 item1 item2 item5" "item3 item4 item4 item5";
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    row-gap: 0.125rem;
  }
}

.item {
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .item {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1440px) {
  .item {
    margin-bottom: 1.5rem;
  }
}

.header {
  display: flex;
  align-items: start;
  margin-bottom: 1rem;
  gap: 1.0625rem;
}

.img {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
}

.text {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.25rem;
}

.item_1 {
  background-color: #733FC8;
  margin-top: 4.5625rem;
  box-shadow: 20px 40px 30px rgba(0, 0, 0, 0.1);
  grid-area: item1;
}
@media (min-width: 768px) {
  .item_1::before {
    content: "";
    display: block;
    width: 104px;
    height: 102px;
    background-image: url("../images/bg-pattern-quotation.svg");
    background-repeat: no-repeat;
    position: absolute;
    top: 4.6875rem;
    right: 12.5rem;
    z-index: 0;
  }
}
@media (min-width: 1440px) {
  .item_1::before {
    top: 5rem;
    right: 38.125rem;
  }
}
.item_1-header {
  margin-bottom: 0.5rem;
}
.item_1-header-img {
  border: 2px solid #A775F1;
}
.item_1-header-text p {
  color: white;
}
.item_1-header-text span {
  color: #EDE4FF;
}
.item_1-title {
  color: white;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .item_1-title {
    position: relative;
    z-index: 1;
  }
}
.item_1-description {
  color: #EDE4FF;
}

.item_2 {
  background-color: #48556A;
  box-shadow: 20px 40px 30px rgba(0, 0, 0, 0.1);
  grid-area: item2;
}
.item_2-header-text p {
  color: white;
}
.item_2-header-text span {
  color: #CFCFCF;
}
.item_2-title {
  color: white;
  margin-bottom: 16px;
}
.item_2-description {
  color: #E7EAEE;
}
@media (min-width: 1440px) {
  .item_2 {
    margin-top: 4.5625rem;
  }
}

.item_3 {
  background-color: white;
  box-shadow: 20px 40px 30px rgba(0, 0, 0, 0.1);
  grid-area: item3;
}
.item_3-header-text p {
  color: #48556A;
}
.item_3-header-text span {
  color: #676D7E;
}
.item_3-title {
  color: #48556A;
  margin-bottom: 16px;
}
.item_3-description {
  color: #676D7E;
}

.item_4 {
  background-color: #19202D;
  box-shadow: 20px 40px 30px rgba(0, 0, 0, 0.1);
  grid-area: item4;
}
.item_4-header-img {
  border: 2px solid #A775F1;
}
.item_4-header-text p {
  color: white;
}
.item_4-header-text span {
  color: white;
}
.item_4-title {
  color: #CFCFCF;
  margin-bottom: 16px;
}
.item_4-description {
  color: #E7EAEE;
}

.item_5 {
  background-color: white;
  margin-bottom: 4.5625rem;
  box-shadow: 20px 40px 30px rgba(0, 0, 0, 0.1);
  grid-area: item5;
}
.item_5-header-text p {
  color: #48556A;
}
.item_5-header-text span {
  color: #676D7E;
}
.item_5-title {
  color: #48556A;
  margin-bottom: 16px;
}
.item_5-description {
  color: #676D7E;
}
@media (min-width: 1440px) {
  .item_5 {
    margin: 0;
    margin-top: 4.5625rem;
    margin-bottom: 2rem;
  }
}/*# sourceMappingURL=style.css.map */