  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 13px;
    background-color: hsl(210, 46%, 95%);

  }
  .container {
    min-height:100vh ;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1150px;
    margin-left:  auto ;
    margin-right:  auto ;
    
    max-width: 100%;
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(200px,1fr));
    grid-template-rows: repeat(2,1fr);
    gap: 20px;
    width: 100%;
  }
  .grid .box-1 {
    grid-area:1/1/2/3;
    background-color:  hsl(263, 55%, 52%);
  } 
  .grid .box-2 {
    grid-area:1/3/2/4;
    background-color:  hsl(217, 19%, 35%);

  } 
  .grid .box-3 {
    grid-area:2/1/3/2;
  } 
  .grid .box-4 {
    grid-area:2/2/3/4;
    background-color:  hsl(219, 29%, 14%);

  } 
  .grid .box-5 {
    grid-area:1/4/3/5;
  } 
  @media (max-width:1024px) {
    .container {
      margin-left: 15px auto;
      padding: 15px ;

    }
    .grid {
      grid-template-columns: repeat(3,minmax(0,1fr));
      grid-template-rows: repeat(3,1fr);
    }
    .grid .box-5 {
      grid-area:3/1/4/4;
    } 
    
  }
  @media (max-width:767px) {
    .grid {
      grid-template-columns: repeat(1,minmax(0,1fr));
      grid-template-rows: repeat(1,1fr);
    }
    .grid .box {
      grid-area:unset ;
    } 
    
  }
  .box {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 15px #bebebe;
  }
  .box .head {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .box .head img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
  }
  .box .title h1 {
    font-weight: 500;
    color: white;
    font-size: 16px;
  }
  .box .title p {
    color: hsla(0, 0%, 100%, 0.501);
  }
  .box  > p {
    color: white;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 600;
  } 
  .box  .qout {
    color: hsla(0, 0%, 100%, 0.705);
  } 
  .box-3 .title h1,
  .box-3  > p,
  .box-5 .title h1,
  .box-5  > p{
    color: hsl(219, 29%, 14%);
  }
  .box-3 .title p,
  .box-3  .qout,
  .box-5 .title p,
  .box-5  .qout{
    color: hsla(217, 30%, 14%, 0.700);
  }
  .box-1 {
    background-image: url(images/bg-pattern-quotation.svg);
    background-repeat: no-repeat;
    background-position: 80% 0;
  }
