.servicesWeProvideDiv {
    width: 100%;
    height: auto;
    background-image: radial-gradient(#FAFBFF, #FEFCFF);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 50px 0 100px 0;
    box-sizing: border-box;
  }
  
  .servicesWeProvideDiv>h1 {
    font-size: 200%;
    font-family: var(--font-one);
    text-transform: capitalize;
    color: #121212;
  }
  
  .servicesInside {
    width: 90%;
    max-width: var(--max-width);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 15px;
    box-sizing: border-box;
  }
  
  .oneService:nth-child(1) {
    grid-area: 1 / 2 / 3 / 1;
  }
  
  .oneService:nth-child(7) {
    grid-area: 3 / 2 / 4 / 4;
  }
  
  .oneService {
    padding: 20px 15px 15px 15px;
    border: 1px solid rgb(189, 189, 189);
    background-color: #FAFBFF;
    backdrop-filter: blur(3px);
    border-radius: 0.2rem;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    transition: 100ms ease;
  }
  
  .oneService h1 {
    font-family: var(--font-two);
    font-size: 120%;
    margin-bottom: 15px;
    color: black;
  }
  
  .oneService ul {
    list-style: none;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    transition: 70ms ease;
  }
  
  .oneService ul li {
    display: flex;
    gap: 5px;
    line-height: 2;
    font-family: var(--font-two);
    font-size: 80%;
    color: #121212;
    font-weight: 600;
  }
  
  
  .oneService>a {
    margin-top: auto;
    font-family: var(--font-two);
    font-size: 90%;
    position: relative;
    width: fit-content;
    color: #121212;
    text-decoration: none;
  }
  
  .oneService>a::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: "";
    height: 1px;
    width: 0%;
    background-color: #808080;
    transition: 250ms ease-out;
  }
  
  .oneService>a:hover::after {
    width: 100%;
  }
  
  
  .oneService img {
    position: absolute;
    right: -50px;
    bottom: -70px;
    width: 200px;
    height: 200px;
    object-fit: contain;
    z-index: 0;
    opacity: 0.3;
    transition: 150ms ease-out;
  }
  
  
  
  .oneService:hover {
    border: 1px solid rgb(231, 231, 231);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    transform: translate3d(3px, 0, 10px);
  }
  
  .oneService:hover ul {
    padding-left: 7px;
  }
  
  .oneService:hover img {
    right: -40px;
    bottom: -60px;
    scale: 1.1;
  }
  
  
  






















  @media only screen and (max-width: 992px) {
  
    .servicesInside {
      grid-template-columns: repeat(2, 1fr);
    }

    .oneService:nth-child(1) {
      grid-area: auto;
    }
    
    .oneService:nth-child(7) {
      grid-area: 4 / 1 / 5 / 3;
    }
  
  }
  
  
  @media only screen and (max-width: 768px) {
    
    .firstFooter {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(2, 1fr);
      gap: 100px;
    }
  
  }
  
  
  @media only screen and (max-width: 576px) {
    
    .servicesInside {
      grid-template-columns: 1fr;
    }
    
    .oneService:nth-child(7) {
      grid-area: auto;
    }
  
  }