.custom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;

  .grid-item {
    border-radius: 5px;
    overflow: hidden;
    background-color: white;

    .img-container {
      img {
        height: 100%;
        width: 100%;
        object-fit: cover;
      }
    }

    .content-container {
      padding: 24px;

      h6 {
        color: #212529;
        font-size: 27px;
        padding-bottom: 16px;
        border-bottom: 1px solid #e5e5e5;
      }
      p {
        padding-top: 16px;
      }
    }
  }
}
@media (max-width: 1280px) {
  .custom-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .custom-grid {
    grid-template-columns: 1fr;
  }
}
/*  */
.dedicatedPagesContainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;

  .dedicatedItem {
    position: relative;
    overflow: hidden;

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;

      background: rgb(49, 49, 49);
      background: linear-gradient(
        180deg,
        rgba(49, 49, 49, 0) 0%,
        rgba(49, 49, 49, 1) 95%
      );
    }

    .imgContainer {
      img {
        height: 100%;
        width: 100%;
        object-fit: cover;
      }
    }

    .content {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      padding: 24px;
      z-index: 20;
      display: flex;
      flex-direction: column;
      justify-content: end;

      .contentContainer {
        p {
          font-size: 32px;
          color: white;
          font-weight: 600;
          padding-bottom: -16px;
        }

        span {
          font-size: 16px;
          color: #ffffffe5;
        }
      }
    }
  }
}
@media (max-width: 1024px) {
  .dedicatedPagesContainer {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .dedicatedPagesContainer {
    .dedicatedItem {
      height: 600px;

      .imgContainer {
        height: 100%;
      }
    }
  }
}
/*  */
.casesContainer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;

  .caseItem {
    overflow: hidden;
    border-radius: 5px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

    .caseContent {
      padding: 30px;

      h6 {
        color: #212529;
        font-size: 27px;
      }
    }
  }
}
@media (max-width: 1280px) {
  .casesContainer {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 1024px) {
  .casesContainer {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .casesContainer {
    grid-template-columns: 1fr;
  }
}
/*  */
.insuranceCoverage {
  .secTitle {
    h2 {
      color: #212529;
      margin-bottom: 20px;
      text-transform: uppercase;
    }
  }

  .insuranceGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 80px;

    .gridItem {
      display: flex;
      flex-direction: column;
      border-radius: 5px;
      overflow: hidden;
      box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
      padding: 54px 24px;
      height: 100%;

      .title {
        display: flex;
        align-items: center;
        gap: 8px;
        height: 100%;

        div {
          width: 16px;
          height: 16px;
          background-color: #00204c;
          border-radius: 100%;
          flex-shrink: 0;
        }

        h5 {
          color: #00204c;
          font-size: 24px;
          text-transform: uppercase;
          padding-bottom: 8px;
        }
      }

      p {
        justify-self: end;
        flex: 1;
        height: 100%;
      }
    }
  }
}
@media (max-width: 1280px) {
  .insuranceCoverage {
    .insuranceGrid {
      grid-template-columns: 1fr 1fr;
    }
  }
}
@media (max-width: 768px) {
  .insuranceCoverage {
    .insuranceGrid {
      grid-template-columns: 1fr;
    }
  }
}
/*  */
.stepsContainer {
  display: grid;
  gap: 24px;
  padding-top: 80px;

  .step {
    background-color: white;
    padding: 32px;
    border-left: 2px solid #00204c;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

    h6 {
      color: #00204c;
      font-size: 24px;
      text-transform: uppercase;
    }
  }
}
@media (max-width: 1024px) {
  .stepsContainer {
    padding-top: 40px;
    .step {
      padding: 20px;
      h6 {
        font-size: 16px;
      }
    }
  }
}
/*  */
.whyUs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 80px;

  .whyUsItem {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 32px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

    span {
      color: #00204c;
      font-weight: 700;
      font-size: 64px;
    }

    h4 {
      color: #00204c;
      text-transform: uppercase;
      font-size: 24px;
    }
  }
}
@media (max-width: 1024px) {
  .whyUs {
    grid-template-columns: 1fr;
    padding-top: 40px;

    .whyUsItem {
      span {
        font-size: 48px;
      }
    }
  }
}
@media (max-width: 640px) {
  .whyUs {
    grid-template-columns: 1fr;
    padding-top: 40px;

    .whyUsItem {
      align-items: start;
      flex-direction: column;
      gap: 24px;

      span {
        font-size: 32px;
      }
      h4 {
        font-size: 20px;
      }
    }
  }
}

.uberComplexity {
  display: grid;
  padding-top: 30px;

  .item {
    .itemTitle {
      display: flex;
      align-items: center;
      gap: 8px;
      padding-bottom: 16px;

      div {
        width: 16px;
        height: 16px;
        background-color: #00204c;
        border-radius: 100%;
      }

      span {
        color: #00204c;
        font-size: 24px;
        font-weight: 600;
      }
    }
  }
}
@media (max-width: 640px) {
  .uberComplexity {
    .item {
      .itemTitle {
        span {
          font-size: 18px;
        }
      }
    }
  }
}
