.me{
    position: relative;
    /*background: orange;*/
    width: 100%;
    height: 150px;
}

.experiment2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 90%;
    /*background: yellowgreen;*/
}

.white{
    /*background: wheat;*/
    width: 100%;
    /*height: 250px;*/
    border-radius: 4px;
}

@media screen and (max-width: 1200px){
    .white {
        /*background: wheat;*/
        width: 100%;
        /*height: 150px;*/
        border-radius: 4px;
    }
}

.news-card{
    position: relative;
    border: none;
    border-radius: 4px;
    width: 100%;
    max-height: 300px;
    overflow:hidden

}

.btn1side{
    position: relative;
    /*top: 50%;
    right: 100px;
    transform: translate(0%,-50%);*/
    display: block;
    border-radius: 1px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    text-align: center;
    border: 2px solid #1f93d1;
    text-transform: uppercase;
    overflow: hidden;
    transition: 1s all ease;
    padding: 10px 20px;
    color: #2d3436;
}

.btn1side::before{
    background: #1f93d1;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
    transition: all 0.6s ease;
}

a.btn1side:hover{
    color: #2d3436;
    text-decoration: none;
}

.btn2side::before {
    width: 100%;
    height: 0;
}

.btn2side:hover::before{
    height: 100%;
}

.btn3side::before {
    width: 100%;
    height: 0;
}

.btn3side:hover::before{
    height: 100%;
}