/*=============== HOME ===============*/
.home{
    position: relative;
  }
  
  .services__bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    object-fit: cover;
    object-position: center;
  }
  
.services__container{
    position: relative;
    background-color: hsla(238, 50%, 20%, .4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1rem 1rem 1rem;
  }

.services__card {
    padding: 0.5rem 1rem 0.5rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.section__title {
    margin-bottom: 2rem;
}


.services__title {
    font-size: 1.2rem;
    margin: 0rem;
    font-weight: 600;
    justify-content: center; 
}

.services__description {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    text-align: justify;
}

.styled-list span {
    display: block;
    margin-bottom: 0.1rem;
    text-align: justify;
}

.services__card .button {
    align-self: flex-start; 
    margin-top: -1rem;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
}

.services__card .button:hover {
    background-color: #0056b3;
}

.button-wrapper {
    display: flex;
    justify-content: center; 
    margin-top: 1rem;
}

.home__services-1 {
    position: absolute;
    width: 350px;
    left: -1rem;
    bottom: -7rem;
}

.home__services-2 {
    position: absolute;
    width: 190px;
    right: 3rem;
    top: 7rem;
}

.home__services-3 {
    position: absolute;
    width: 300px;
    right: 7rem;
    bottom: 22rem;
}

.home__services-4 {
    position: absolute;
    width: 250px;
    right: 3rem;
    bottom: 4rem;
}


.home__services-1,
.home__services-2,
.home__services-3,
.home__services-4 {
  display: none;
}

@media screen and (min-width: 1728px) {
    .home__services-1,
    .home__services-2,
    .home__services-3,
    .home__services-4 {
      display: block;
      position: absolute;
    }
  }