.carousel .banner {
    font-family: 'Poppins', sans-serif;
    position: relative;
    display: flex;
  }
  
  .carousel .banner img {
    display: block;
    width: 100vw;
    height: auto;
  }
  
  .carousel .banner div {
    height: 100%;
    margin-left: 10%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    z-index: 1;
  }
  
  .carousel .banner div span {
    font-weight: 800;
    font-size: 2.3rem;
    color: #204B96;
    margin-bottom: 0.5rem;
  }
  
  .carousel .banner div a {
    text-decoration: none;
    font-weight: 400;
    font-size: 1.4rem;
    color: #204B96;
  }
  
  @media only screen and (max-width: 1024px) {
    .carousel .banner div span {
      font-size: 1.8rem;
    }
    
    .carousel .banner div a {
      font-size: 1.1rem;
    }
  }
  
  @media only screen and (max-width: 768px) {
    .carousel .banner div span {
      font-size: 1.3rem;
    }
    
    .carousel .banner div a {
      font-size: 0.8rem;
    }
  }
  
  .help {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    height: 25vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #36BEDD;
    color: #fff;
  }
  
  .help h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  
  .help a {
    text-decoration: none;
    color: #fff;
    padding: 0 0.5rem;
    font-size: 1.2rem;
    border: 1px solid #fff;
    border-radius: 2.5rem;
  }
  
  .services {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .services-list-row {
    display: flex;
    flex-direction: row;
    width: 100%;
  }
  
  .services-list-item {
    height: 50vh;
    width: 100%;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 1.2rem;
  }
  
  .services-list-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .services-list-item-span {
    position: absolute;
    color: #fff;
    font-size: 1.7rem;
    text-align: center;
  }
  
  .img-filter {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background: #0C1E3A;
    transition: 0.5s;
  }
  
  .img-filter:hover {
    opacity: 0.15;
  }
  
  @media only screen and (max-width: 768px) {
    .services-list-row {
      flex-direction: column;
    }
  }