/*background shifter*/

@keyframes slideUp {
    0% {
        transform: translateY(0%)
    }

    50% {
        transform: translateY(-80%)
    }
    100%
    {
        transform: translateY(0%)
    }
}

.shifter {
    min-width: 100%;
    animation: 50s slideUp infinite;
    height:150vh;
    float:right;
}

.image-container {
    overflow: hidden;
    width: 100%;
    position: absolute;
    top:0;
    right:0;
    max-height:100%;
    z-index: -100;
}

.main-box {
    background: linear-gradient(#ffffff00 0%, #fff 50px);
    min-height: 95vh;
}
header {
    padding: 30px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;

    overflow: hidden;
}

h1 {
    font-size: 40px;
}

/*main css - mobile first*/


.gerb-card {
    box-shadow: rgba(0, 0, 0, 0.12) 0px 0px 2px 0px, rgba(0, 0, 0, 0.14) 0px 2px 4px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 2px inset;
    border-radius:12px;
    transition-duration: 0.3s;
    background-color: #fff;
    margin-bottom:15px;
    overflow:hidden;
}
.gerb-card-inner {
    transition-duration: 0.3s;
}
.gerb-card:hover {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px 1px;
}
.gerb-card-inner a {
    text-decoration:inherit;
    color:inherit;
    transition-duration: 0.3s;
}
.gerb-card-text {
    padding: 0px 15px;
    transition-duration: 0.3s;
}
.gerb-card-inner h2, .gerb-card-inner h3 {
    padding: 10px 15px;
    transition-duration: 0.3s;
}
.gerb-card-button {
    margin:0px 15px;
    margin-bottom:20px;
    padding: 10px 24px;
    border-radius: 100px;
 border: 1px solid #79747E;
 background-color:#fff;
}
.gerb-card-button:hover {
    background-color:#6750A4;
    color:white;
}

/*wider than mobile*/

@media screen and (min-width:768px) {


    .invisibruh {
        transform: translateY(-4rem);
        transition-duration: 0.3s;
    }
.gerb-card-button {
    display:none;

}
.gerb-card {
    max-height:18rem;
}
.gerb-card:hover {
max-height:21rem;
}
}
@media screen and (min-width:992px) {


    .invisibruh {
        transform: translateY(-4rem);
        transition-duration: 0.3s;
    }
.gerb-card-button {
    display:none;

}
.gerb-card {
    max-height:23rem;
}
.gerb-card:hover {
max-height:26rem;
}
}
@media screen and (min-width:1200px) {


    .invisibruh {
        transform: translateY(-4.1rem);
        transition-duration: 0.3s;
    }
.gerb-card-button {
    display:none;

}
.gerb-card {
    max-height:26rem;
}
.gerb-card:hover {
max-height:30rem;
}
}
@media screen and (min-width:1400px) {


    .invisibruh {
        transform: translateY(-4rem);
        transition-duration: 0.3s;
    }
.gerb-card-button {
    display:none;

}
.gerb-card {
    max-height:30rem;
}
.gerb-card:hover {
max-height:33rem;
}
}