﻿
.contact-card {
    display: flex;
    align-items: center;
    position: absolute;
    left: 40px;
    bottom: 55px;
    width: 280px;
    height: 100px;
    justify-content: space-evenly;
    background-color: white;
    padding: 28px 10px;
    border-start-start-radius: 50px;
    border-end-end-radius: 50px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    line-height: 1.2
}

@media(max-width:768px) {
    .contact-card{
        display:none;
    }
}