.container {
        max-width: 1300px;
        margin: 0 auto;
      }
      .main-title {
        margin-bottom: 20px;
      }
      .items {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
      }
      .item {
        width: calc(25% - 10px);
        margin-bottom: 20px;
      }
      .item-img {
        margin-bottom: 10px;
        border-radius: 3px;
      }
      img {
        max-width: 100%;
        height: auto;
        width: 100%;
        border-radius: 3px;
      }
      .item-checbox {
        background: linear-gradient(93.42deg, #5FA6C1 0%, #7CBA59 100%);
border-radius: 3px;
        padding: 20px 10px;
        color: white;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 30px;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
      }
      input {
        transform: scale(1.7);
      }
      button {
          display: block;
          margin: 20px auto ;
          border: none;
          padding:20px 40px;
          color: white;
         
background: #60A6BF;
border-radius: 3px;
          text-transform: uppercase;
          font-weight: bold;
          cursor: pointer;
          font-size: 20px;
      }