@media (min-width: 1200px){
    .card-columns.home {
        -moz-column-count: 2;
        column-count: 2;
    }
    
    .cloud-home-product {
        width: 100%;
        max-width: 500px;
        height: auto;
    }
    
    .cloud-home-product-text {
        position: absolute;
        width: 200px;
        height: 50px;
        bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 1em;
        font-weight: bold;
        background-color: white;
        border-radius: 2em;
    }
}

@media (min-width: 1025px) and (max-width: 1199px){
    .card-columns.home {
        -moz-column-count: 2;
        column-count: 2;
    }
    
    .cloud-home-product{
        width: 100%;
        max-width: 440px;
        height: auto;
    }
    
    .cloud-home-product-text {
        position: absolute;
        width: 200px;
        height: 50px;
        bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 1em;
        font-weight: bold;
        background-color: white;
        border-radius: 2em;
    }
}

@media (min-width: 768px) and (max-width: 1024px){
    .card-columns.home {
        -moz-column-count: 2;
        column-count: 2;
    }
    
    .cloud-home-product{
        width: 100%;
        max-width: 320px;
        height: auto;
        max-height: 200px;
    }
        
    .cloud-home-product-text {
        position: absolute;
        max-width: 150px;
        width: 100%;
        height: 28px;
        bottom: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0.7em;
        font-weight: bold;
        background-color: white;
        border-radius: 2em;
    }
}

@media (max-width: 765px) {
    .card-columns.home {
        -moz-column-count: 1;
        column-count: 1;
    }
    
    .cloud-home-product{
        width: 100%;
        max-width: 500px;
        height: auto;
        max-height: 200px;
    }
    
    .cloud-home-product-text {
        position: absolute;
        max-width: 150px;
        width: 100%;
        height: 30px;
        bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0.8em;
        font-weight: bold;
        background-color: white;
        border-radius: 2em;
    }
}

.cloud-home-product-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.cloud-card-body {
    padding: 5px;
}

.reveal{
    position: relative;
    opacity: 0;
}
      
.reveal.active{
    opacity: 1;
}

.active.fade-left {
  animation: fade-left 1s ease-in;
}

.active.fade-right {
  animation: fade-right 1s ease-in;
}

@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
