*,
*::before,
*::after {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	list-style: none;
	list-style-type: none;
	text-decoration: none;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.mainSection {
padding-top: 150px;
padding-bottom: 50px;
}

.mainSection {
  .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
    justify-content: center;
    align-items: center;
  }

  .card {
    color: #252a32;
    border-radius: 2px;
    background: #ffffff;
    box-shadow:  0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);

    &-image {
      position: relative;
      display: block;
      width: 100%;
      padding-top: 70%;
      background: #ffffff;

      img {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
  }
}

@media only screen and (max-width: 600px) {
  .mainSection {
    .container {
      display: grid;
      grid-template-columns: 1fr;
      grid-gap: 1rem;
    }
  }
}


.mainSection h2 span{
  margin:0 0 6px 0;
  font-weight:800;
  font-size:1.5rem;
  color:#07142a;
text-align: center;
    margin: 10px 0px 20px 0px;
    border-bottom: 2px solid var(--colorPrimary);
}