@media (min-width: 1400px) {
    main{
    width: 100%;
    min-height: 100px;
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 150px;
    position: relative;
    overflow: hidden;
    background-color: white;
}
main>section{
    width: 100%;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 30px;
    flex-wrap: wrap;
    box-sizing: border-box;padding: 50px;
}

main>section>div.card {
    position: relative;
    width: 300px;
    height: 350px;
    border-radius: 14px;
    z-index: 99;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
}

main>section>div.card>div.bg {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 290px;
    height: 340px;
    z-index: 2;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(24px);
    border-radius: 10px;
    overflow: hidden;
    outline: 2px solid white;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
main>section>div.card>div.bg>a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    color: black;
    text-decoration: none;
}
main>section>div.card>div.bg>a>img{
    width:100px;
    height: 100px;
    margin-top: 20px;
}
main>section>div.card>div.bg>a>h3{
    width: 100%;
    height: 100px;
    font-size: 23px;
    font-family: Lalezar;
    text-align: center;
    margin-top: -50px;
    color: black;
    text-decoration: none;
}
main>section>div.card>div.bg>a>button{
    width: 95%;
    height: 60px;
    background-color: #B547B4;
    border-radius: 7px;
    color: white;
    font-size: 20px;
    z-index: 99;
    font-family: Portada-bold;
    border: none;
    position: absolute;
    bottom: 10px;
    cursor: pointer;
}
main>section>div.card>div.blob {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: #B547B4;
    opacity: 1;
    filter: blur(12px);
    animation: blob-bounce 5s infinite ease;
}

@keyframes blob-bounce {
  0% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }

  25% {
    transform: translate(-100%, -100%) translate3d(100%, 0, 0);
  }

  50% {
    transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
  }

  75% {
    transform: translate(-100%, -100%) translate3d(0, 100%, 0);
  }

  100% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }
}

}
@media (max-width: 1400px) and (min-width: 1200px) {
    main{
    width: 100%;
    min-height: 100px;
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 150px;
    position: relative;
    overflow: hidden;
    background-color: white;
}
main>section{
    width: 100%;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 30px;
    flex-wrap: wrap;
    box-sizing: border-box;padding: 50px;
}

main>section>div.card {
    position: relative;
    width: 300px;
    height: 350px;
    border-radius: 14px;
    z-index: 99;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
}

main>section>div.card>div.bg {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 290px;
    height: 340px;
    z-index: 2;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(24px);
    border-radius: 10px;
    overflow: hidden;
    outline: 2px solid white;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
main>section>div.card>div.bg>a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    color: black;
    text-decoration: none;
}
main>section>div.card>div.bg>a>img{
    width:100px;
    height: 100px;
    margin-top: 20px;
}
main>section>div.card>div.bg>a>h3{
    width: 100%;
    height: 100px;
    font-size: 23px;
    font-family: Lalezar;
    text-align: center;
    margin-top: -50px;
    color: black;
    text-decoration: none;
}
main>section>div.card>div.bg>a>button{
    width: 95%;
    height: 60px;
    background-color: #B547B4;
    border-radius: 7px;
    color: white;
    font-size: 20px;
    z-index: 99;
    font-family: Portada-bold;
    border: none;
    position: absolute;
    bottom: 10px;
    cursor: pointer;
}
main>section>div.card>div.blob {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: #B547B4;
    opacity: 1;
    filter: blur(12px);
    animation: blob-bounce 5s infinite ease;
}

@keyframes blob-bounce {
  0% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }

  25% {
    transform: translate(-100%, -100%) translate3d(100%, 0, 0);
  }

  50% {
    transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
  }

  75% {
    transform: translate(-100%, -100%) translate3d(0, 100%, 0);
  }

  100% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }
}

}
@media (max-width: 1200px) and (min-width: 992px) {
    main{
    width: 100%;
    min-height: 100px;
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 150px;
    position: relative;
    overflow: hidden;
    background-color: white;
}
main>section{
    width: 100%;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 30px;
    flex-wrap: wrap;
    box-sizing: border-box;padding: 50px;
}

main>section>div.card {
    position: relative;
    width: 300px;
    height: 350px;
    border-radius: 14px;
    z-index: 99;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
}

main>section>div.card>div.bg {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 290px;
    height: 340px;
    z-index: 2;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(24px);
    border-radius: 10px;
    overflow: hidden;
    outline: 2px solid white;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
main>section>div.card>div.bg>a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    color: black;
    text-decoration: none;
}
main>section>div.card>div.bg>a>img{
    width:100px;
    height: 100px;
    margin-top: 20px;
}
main>section>div.card>div.bg>a>h3{
    width: 100%;
    height: 100px;
    font-size: 23px;
    font-family: Lalezar;
    text-align: center;
    margin-top: -50px;
    color: black;
    text-decoration: none;
}
main>section>div.card>div.bg>a>button{
    width: 95%;
    height: 60px;
    background-color: #B547B4;
    border-radius: 7px;
    color: white;
    font-size: 20px;
    z-index: 99;
    font-family: Portada-bold;
    border: none;
    position: absolute;
    bottom: 10px;
    cursor: pointer;
}
main>section>div.card>div.blob {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: #B547B4;
    opacity: 1;
    filter: blur(12px);
    animation: blob-bounce 5s infinite ease;
}

@keyframes blob-bounce {
  0% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }

  25% {
    transform: translate(-100%, -100%) translate3d(100%, 0, 0);
  }

  50% {
    transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
  }

  75% {
    transform: translate(-100%, -100%) translate3d(0, 100%, 0);
  }

  100% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }
}

}
@media (max-width: 992px) and (min-width: 768px) {
    main{
    width: 100%;
    min-height: 100px;
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 150px;
    position: relative;
    overflow: hidden;
    background-color: white;
}
main>section{
    width: 100%;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 30px;
    flex-wrap: wrap;
    box-sizing: border-box;padding: 50px;
}

main>section>div.card {
    position: relative;
    width: 300px;
    height: 350px;
    border-radius: 14px;
    z-index: 99;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
}

main>section>div.card>div.bg {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 290px;
    height: 340px;
    z-index: 2;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(24px);
    border-radius: 10px;
    overflow: hidden;
    outline: 2px solid white;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
main>section>div.card>div.bg>a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    color: black;
    text-decoration: none;
}
main>section>div.card>div.bg>a>img{
    width:100px;
    height: 100px;
    margin-top: 20px;
}
main>section>div.card>div.bg>a>h3{
    width: 100%;
    height: 100px;
    font-size: 23px;
    font-family: Lalezar;
    text-align: center;
    margin-top: -50px;
    color: black;
    text-decoration: none;
}
main>section>div.card>div.bg>a>button{
    width: 95%;
    height: 60px;
    background-color: #B547B4;
    border-radius: 7px;
    color: white;
    font-size: 20px;
    z-index: 99;
    font-family: Portada-bold;
    border: none;
    position: absolute;
    bottom: 10px;
    cursor: pointer;
}
main>section>div.card>div.blob {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: #B547B4;
    opacity: 1;
    filter: blur(12px);
    animation: blob-bounce 5s infinite ease;
}

@keyframes blob-bounce {
  0% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }

  25% {
    transform: translate(-100%, -100%) translate3d(100%, 0, 0);
  }

  50% {
    transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
  }

  75% {
    transform: translate(-100%, -100%) translate3d(0, 100%, 0);
  }

  100% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }
}

}
@media (max-width: 768px) and (min-width: 576px) {
    main{
    width: 100%;
    min-height: 100px;
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 150px;
    position: relative;
    overflow: hidden;
    background-color: white;
}
main>section{
    width: 100%;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 30px;
    flex-wrap: wrap;
    box-sizing: border-box;padding: 50px;
}

main>section>div.card {
    position: relative;
    width: 300px;
    height: 350px;
    border-radius: 14px;
    z-index: 99;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
}

main>section>div.card>div.bg {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 290px;
    height: 340px;
    z-index: 2;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(24px);
    border-radius: 10px;
    overflow: hidden;
    outline: 2px solid white;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
main>section>div.card>div.bg>a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    color: black;
    text-decoration: none;
}
main>section>div.card>div.bg>a>img{
    width:100px;
    height: 100px;
    margin-top: 20px;
}
main>section>div.card>div.bg>a>h3{
    width: 100%;
    height: 100px;
    font-size: 23px;
    font-family: Lalezar;
    text-align: center;
    margin-top: -50px;
    color: black;
    text-decoration: none;
}
main>section>div.card>div.bg>a>button{
    width: 95%;
    height: 60px;
    background-color: #B547B4;
    border-radius: 7px;
    color: white;
    font-size: 20px;
    z-index: 99;
    font-family: Portada-bold;
    border: none;
    position: absolute;
    bottom: 10px;
    cursor: pointer;
}
main>section>div.card>div.blob {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: #B547B4;
    opacity: 1;
    filter: blur(12px);
    animation: blob-bounce 5s infinite ease;
}

@keyframes blob-bounce {
  0% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }

  25% {
    transform: translate(-100%, -100%) translate3d(100%, 0, 0);
  }

  50% {
    transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
  }

  75% {
    transform: translate(-100%, -100%) translate3d(0, 100%, 0);
  }

  100% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }
}

}
@media (max-width: 576px) {
    main{
    width: 100%;
    min-height: 100px;
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 150px;
    position: relative;
    overflow: hidden;
    background-color: white;
}
main>section{
    width: 100%;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    box-sizing: border-box;padding: 50px;
}

main>section>div.card {
    position: relative;
    width: 100%;
    height: 310px;
    border-radius: 14px;
    z-index: 99;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
}

main>section>div.card>div.bg {
    width: 96%;
    height: 300px;
    z-index: 2;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(24px);
    border-radius: 10px;
    overflow: hidden;
    outline: 2px solid white;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
main>section>div.card>div.bg>a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    color: black;
    text-decoration: none;
}
main>section>div.card>div.bg>a>img{
    width:100px;
    height: 100px;
    margin-top: 20px;
}
main>section>div.card>div.bg>a>h3{
    width: 100%;
    height: 100px;
    font-size: 23px;
    font-family: Lalezar;
    text-align: center;
    margin-top: -50px;
    color: black;
    text-decoration: none;
}
main>section>div.card>div.bg>a>button{
    width: 95%;
    height: 60px;
    background-color: #B547B4;
    border-radius: 7px;
    color: white;
    font-size: 20px;
    z-index: 99;
    font-family: Portada-bold;
    border: none;
    position: absolute;
    bottom: 10px;
    cursor: pointer;
}
main>section>div.card>div.blob {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #B547B4;
    opacity: 1;
    filter: blur(12px);
    animation: blob-bounce 5s infinite ease;
}

@keyframes blob-bounce {
  0% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }

  25% {
    transform: translate(-100%, -100%) translate3d(100%, 0, 0);
  }

  50% {
    transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
  }

  75% {
    transform: translate(-100%, -100%) translate3d(0, 100%, 0);
  }

  100% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }
}

}
