.carousel-item {
    position: relative;
    height: 100vh;
  }
  
  .carousel-item img {
    height: 100%;
    object-fit: cover;
  }
  
  .carousel-item h4 {
    /*font-family: 'Montserrat', sans-serif;*/
    font-family: "Raleway", sans-serif;
    position: absolute;
    font-size: 28vw;
    width: 100%;
    mix-blend-mode: screen;
    background: rgba(255, 255, 255, 1);
    text-transform: uppercase;
    height: 100%;
    line-height: 100vh;
    text-align: center;
  }
  
  @media screen and (max-width: 499px) {
    .carousel-item {
      height: 50vh;
    }
  
    .carousel-item h4 {
      line-height: 50vh;
    }
  }
  

  /* other services post card */
  .card {
    flex-direction: row;
    align-items: center;
    min-height: 380px;
  }
  .card-title {
    font-weight: bold;
  }
  .card img {
    width: 30%;
    border-top-right-radius: 0;
    border-bottom-left-radius: calc(0.25rem - 1px);
  }
  @media only screen and (max-width: 768px) {
    a {
      display: none;
    }
    .card-body {
      padding: 0.5em 1.2em;
    }
    .card-body .card-text {
      margin: 0;
    }
    .card img {
      width: 50%;
    }
  }
  @media only screen and (max-width: 1200px) {
    .card img {
      width: 40%;
    }
  }