.send {
    padding: 50px 0;
    background: #4B4B63;
}

.send_box {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    padding: 50px;
    margin-top: -100px;
    background: #fff;
    border-radius: 10px;;
}

.send_title {
    width: 100%;
    margin-bottom: 23px;
    margin-top: -15px;
    line-height: 40px;
    color: #4B4B63;
    font-size: 25px;
    text-align: center;
    border-bottom: #e4e4e4 1px solid;
}

.send_title br {
    display: none;
}

.send_title span {
    font-weight: 900;
}

.send_card {
    width: 250px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 5px rgba(0,0,0,0.25);
}

.send_card img {
    width: 100%;
}

.send_text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc( 100% - 275px );
}

.send_text input[type="text"] {
    background: #f2f2f2;
    border: 0;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
}

.check_box {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.check_box * + * {
    margin-left: 5px;
}

.check_box a {
    color: #4B4B63;
}

.send_button {
    position: relative;
    top: 0;
    background: #4B4B63;
    border: 0;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    transition: .3s;
}

.send_button:hover {
    top: -5px;
}




@media screen and (max-width: 768px) {
    

	.send_box {
        flex-direction: column;
        padding: 25px;
    }

    .send_title {
        margin-bottom: 15px;
        padding-bottom: 10px;
        margin-top: -10px;
        line-height: 25px;
        font-size: 18px;
    }

    .send_title br {
        display: block;
    }
    
    .send_card {
        width: 100%;
        margin-bottom: 25px;
    }

    .send_text {
        width: 100%;
    }

    .send_text * + * {
        margin-top: 10px;
    }
    
}

@media screen and (max-width: 979px) {
}

@media screen and (max-width: 767px) {
}

@media screen and (max-width: 320px) {
}

@media screen and (max-device-width: 480px) {
}







