.offerings{
    height: 400px;
}
.offerings, .cards-container{
    
    width: 100%;
}
.cards-container{
    z-index: 1;
    display: flex;
    justify-content: space-between;
    position: relative;
    top: -100px;
  
}
.cards-container .card{   
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: 5px 5px 10px -5px rgb(106, 106, 106);
    padding: 50px;
    border-radius: 15px;
    width: 30%;
    background-color: white;
    overflow: hidden;
}

.cards-container .card:nth-child(2){
    background-color: #00adee;
}
.cards-container .card:nth-child(2) a button{
    
    border: 2px solid white;
    color: white;
    
}
.card:nth-child(2) a button svg{
    fill: white !important;
}
.cards-container .card:nth-child(2) h3, .cards-container .card:nth-child(2) p{
    color: white !important;
}
.cards-container .card h3{
    color: rgb(88, 88, 88) !important;
    font-size: 1.7em;
    font-family:  "Unbounded", sans-serif !important;
    margin-top: 0;
}
.card a button:nth-child(1){
    padding: 10px 20px;
}
.card a button{

    font-family:  "Unbounded", sans-serif !important;
    font-weight: 700;
    background-color: transparent;
    border-radius: 10px;
    border: 2px solid #00adee;
    color: #00adee;
    font-size: 1.1em;
   
}
.card a button:nth-child(2) svg{
    fill: #00adee ;
  
}
.button-main{
    display: flex;
    align-items: center;
}
.button-main button:nth-child(1){
    
    border-radius: 30px;
}

.cards-container .card:after{
    transition: all 0.3s ease-in-out;
    display: block;
    content: "";
    position: absolute;
    bottom: -400px;
    left: -100px;
    width: 3px;
    box-shadow: 0px 0px 60px 60px rgba(255, 255, 255, 0.478);;
    height: 700px;
    background-color: rgba(255, 255, 255, 0.478);
    transform: rotate(-45deg);
}
.card:hover:after{
    bottom: 450px;
    left: 500px;
}

.flex-main-section{
    display: flex;
    justify-content: center;

}
.flex-column{
    width: 50%;

}

.flex-main-section h5{
    
    font-family:  "Unbounded", sans-serif !important;
}
@media only screen and (max-width: 1100px) 
{
    .cards-container .card{
        padding: 15px;
    }
    .cards-container .card img{
        margin: auto;
        width: 50%;
    }
    .cards-container .card p{
       font-size: 10px;
    }

    .cards-container .card button{
        font-size: 10px !important;
    }
    .cards-container {
        
        top: 0;
    }
    .offerings{
        height: auto;
    }
}
@media only screen and (max-width: 850px)
{
    .offerings{
        height: auto;
    }
    .cards-container {
        
        top: 0;
        flex-wrap: wrap;
       align-items: center;
    }
    .cards-container .card img{
        display: none;
    }
    .cards-container .card{
        padding: 2em;
        margin: 1%;
        width: 48%;
    }
    .cards-container .card p{
        font-size: 1em;
        text-align: left !important;
    }
    .cards-container .card:nth-child(3){
        width: 100%;
    }
    .cards-container .card:nth-child(3) img{
        display: none;
    }
    .cards-container .card:nth-child(3) p{
        font-size: 1.5em;
        text-align: left !important;
    }
}

@media only screen and (max-width: 592px)
{
    
    .cards-container .card{
        width: 100%;
    }
    .cards-container .card:nth-child(2){
        transform: translateX(15px);

    }
    .cards-container .card:nth-child(1), .cards-container .card:nth-child(3){
        transform: translateX(-15px);

    }
    .cards-container .card:nth-child(3) p{
        font-size: 1em;
    }
}