.top_box {
    width: 100%;
    height: auto;
}

.top_box img {
    width: 100%;
    height: auto;
}

.title h2 {
    width: 100%;
    text-align: center;
    color: #586d32;
    font-size: 38px;
    line-height: 35px;
    font-weight: bold;
    font-style: normal;
    margin: 0 auto .75em;
}

.address_st {
    display: block;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 24px;
    cursor: default;
}

.contact_icon {
    display: flex;
    margin: 30px auto
}

.contact_icon img {
    width: 50px;
    height: 50px;
    margin-right: 20px;
}

.contact_icon :nth-child(2) {
    display: flex;
    width: 46px;
    height: 46px;
}

.contact_text {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 24px;
}

.contact_text a {
    color: #f5bc31;
}

.Contact_title h2 {
    width: 100%;
    color: #586d32;
    font-size: 38px;
    line-height: 35px;
    font-weight: bold;
    font-style: normal;
    margin: 1em auto .75em;
}




input {
    width: 100%;
    height: 50px;
    padding: 10px 20px;
    font-size: 18px;
    border: 1px solid rgba(12, 12, 12, 0.5);
    box-sizing: border-box;
}


.name_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.input_box {
    width: 100%;
}

input:focus {
    outline: 1px solid #EBEBEB;
    border: 1px solid rgba(0, 0, 0, .8);
}

.placeholder {
    display: block;
    width: 100%;
    height: 40px;
    font-size: 18px;
    line-height: 40px;
}

.placeholder span {
    color: red;
}

.error-message {
    display: none;
    font-size: 13px;
    line-height: 20px;
    color: red;
}

.message {
    width: 100%;
    height: 150px;
    font-size: 18px;
    border: 1px solid rgba(0, 0, 0, .5);
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box;
}

.message::placeholder {
    font-weight: 600;
    color: rgba(0, 0, 0, 0.5);
}

textarea:focus {
    outline: 1px solid #EBEBEB;
    border: 1px solid rgba(0, 0, 0, .5);

}

.send-btn {
    width: 100%;
    margin-top: 20px;
}

.submit {
    width: 150px;
    height: 50px;
    border: none;
    line-height: 50px;
    color: #ffffff;
    background-color: #5a5a30;
    cursor: pointer;
    font-size: 18px;
    border-radius: 25px;
}


.custom-radio {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    margin-right: 20px;
}



.custom-radio input[type="radio"] {
    display: none;
}

.custom-radio .checkmark {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(0, 0, 0, .8);
    display: inline-block;
    position: relative;
    margin-right: 10px;
    cursor: pointer;
    margin-top: 15px;
}

.custom-radio input[type="radio"]:checked+.checkmark {
    background-color: #f5bc31;
    border-color: #f5bc31;
}

.custom-radio input[type="radio"]:checked+.checkmark::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    background-color: f5bc31;

}

.warning {
    border-color: red;
}

.custom-toast {
    position: fixed;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.ui.success.toast.custom-toast {
    background-color: #586d32;
    color: #ffffff;
    border: 1px solid #586d32;
    font-size: 18px;
    border-radius: 5px;
    padding: 15px;
}

@media screen and (min-width: 1000px) {
    .contact-form {
        width: 50%;
        display: flex;
        flex-flow: wrap;
        justify-content: space-between;
        position: relative;
    }

    #name {
        width: 47%;
    }

}

@media screen and (max-width: 1000px) {
    .contact-form {
        width: 100%;
        display: flex;
        flex-flow: wrap;
        justify-content: space-between;
        position: relative;
    }

    #name {
        width: 100%;
    }

}