.talk-us{
    align-self: center;
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 20px;
    border-style: solid;
    border-color: #FF0037;
    max-height: 370px;
    width: 300px;
    padding: 10px;
    gap: 5px;
    background-color: rgba(5, 5, 5, 0.555);
    box-shadow: 10px 10px 8px rgba(0, 0, 0, 0.507);
    transition: 4s linear;
}

.talk-us:hover{
    width: 280px;
    background-color: #05050534;
    box-shadow: 0px 0px 10px 7px #ff00377e;
}

.talk-us:hover h2{
    transition: 4s ease-in-out;
    color: #ff0037;
}

.talk-us p{
    color: white;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: medium;
    transition: .5s ease-in-out;
}
.talk-us h2{
    margin-top: 0;
    color: white;
    font-size: xx-large;
}

.talk-us input{
    border-color: #FF0037;
    width: 80%;
    height: 35px;
    border-radius: 10px;
    font-size: 20px;
    color: white;
    align-self: center;
    background-color: rgba(255, 255, 255, 0);
}

.talk-us select{
    border-color: #FF0037;
    width: 82%;
    height: 38px;
    border-radius: 10px;
    font-size: 20px;
    color: white;
    align-self: center;
    background-color: rgba(255, 255, 255, 0);
}

.talk-us button{
    display: flex;
    margin: 10px auto;
    align-items: center;
    border-radius: 15px;
    height: 50px;
    font-size: 20px;
    font-weight: 800;
    border-color: #FF0037;
    background-color: #ff0037;
    color: white;
    box-shadow: #ff0037b6 0px 0px 10px 6px;
    transition: .6s ease-in-out;
}

.talk-us button:hover{
    background-color: #ff003791;
    box-shadow: rgb(253, 16, 135) 0px 0px 0px 0px;
}

.talk-us button img{
    width: 35px; 
    margin-right: 15px;
}

@media screen and (min-width:768px) {
    .talk-us{
        width: 400px;
    }

    .talk-us:hover{
        width: 380px;
    }

}