.send {
    padding: 50px 0;
    background: url('../images/banner_BG.jpg');
    background-size: cover;
}

.send_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
	width: 100%;
	max-width: 1080px;
	padding: 0 25px;
	margin: 0 auto;
}

.send_box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    padding: 50px;
    background: #fff;
    border-radius: 10px;
    z-index: 99999;
}

.send_wrapper:before {
    position: absolute;
    top: 5px;
    left: -150px;
    content: '';
    width: 248px;
    height: 282px;
    background: url('../images/firework_footer_01.png');
    background-size: contain;
    z-index: 0;
}

.send_wrapper:after {
    position: absolute;
    bottom: -5px;
    right: -100px;
    content: '';
    width: 154px;
    height: 279px;
    background: url('../images/firework_footer_02.png');
    background-size: contain;
    z-index: 0;
}

.send_title {
    width: 100%;
    padding: 0 0 25px;
    text-align: center;
    font-size: 25px;
    font-weight: 900;
    color: #fff;
}

.send_title span {
    color: #f2e179;
}

.send_card {
    width: calc( 50% - 25px );
}

.send_card img {
    width: 100%;
}

.send_text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
}

.send_input_area {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.send_text input[type="text"], .send_text select {
    width: calc( 50% - 5px );
    padding: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    border: 0;
    border-radius: 5px;
    background: #f2f2f2;
}

.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: #ccb856;
    border: 0;
    border-radius: 50px;
    padding: 10px;
    font-size: 16px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    transition: .3s;
}

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

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

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

    .send_title {
        font-size: 18px;
    }

    .send_card {
        width: 100%;
    }

    .send_text input[type="text"], .send_text select {
        width: 100%;
    }
    
    
    .send_text {
        width: 100%;
    }

    .send_text > * {
        margin-top: 15px;
    }

    .send_wrapper:before, .send_wrapper:after {
        display: none;
    }
    
}

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

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

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







