/*--------------------------------
CONTACT HEADER
--------------------------------*/
#contactheader .position-relative {
    color: #FFF;
    padding-top: 180px;
    z-index: 2;
    background: linear-gradient(rgb(255 255 255/0) 0%, rgb(255 255 255/0)40%, rgb(254 0 0/1)60%, rgb(254 0 0/1)100%);
}

/*--------------------------------
CONTACT BODY
--------------------------------*/
#contactintro {}

#contactbody {
    background: #f2f4f0;
}

.req {
    background: #fe0000;
    border-radius: 5px;
    color: #FFF;
    font-weight: bold;
    padding: 2px 10px;
    margin-right: .5rem;
    white-space: nowrap;
}

#contactbody .formContent th,
#contactbody .formContent td {
    width: 100%;
    display: block;
}

#contactbody .formContent th {
    margin-bottom: 1rem;
    padding-left: 1rem;
    position: relative;
}

#contactbody .formContent th::before {
    content: "";
    background: #4d4d4d;
    left: 0px;
    top: 4px;
    width: 6px;
    height: 16px;
    position: absolute;
}

#contactbody .formContent td {
    margin-bottom: 2rem;
}

.textbox {
    width: auto;
    padding: 8px 10px;
    border: 1px solid #d2d2d2;
    border-radius: 3px;
    background: #ffffff;
    color: #333;
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 10px;
}

.textbox::placeholder {
    color: #999;
}

.agree {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    column-gap: 12px;
    width: fit-content;
    line-height: 1;
    cursor: pointer;
}

.agreetext {
    max-height: 200px;
    overflow-y: scroll;
    background: #FFF;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    padding: 20px;
}

.agreecheck {
    appearance: none;
    position: relative;
    width: 30px;
    height: 30px;
    border: 2px solid #4d4d4d;
    border-radius: 5px;
    cursor: pointer;
}

.agreecheck:checked {
    background-color: #fe0000;
}

.agreecheck:checked::after {
    content: "";
    position: absolute;
    top: 9px;
    left: 7.5px;
    width: 12px;
    height: 6px;
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    transform: rotate(-45deg);
}

.enter {
    background: #fe0000;
    border: none;
    border-radius: 100px;
    color: #fff;
    font-size: 20px;
    width: 100%;
    max-width: 350px;
    padding: 1.25rem;
}

.enterbg {
    border-radius: 100px;
    display: inline-block;
    width: 100%;
    max-width: 350px;
    position: relative;
}

.enterbg::after {
    background: url("/assets/images/arrow.svg")no-repeat top center/100%;
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 1;
}

/*************************
thanks Img
**************************/
.thanksImg {
    max-width: 500px;
}

.thankslogo {
    max-width: 214px;
}

@media(max-width:767px) {

    /** thanks IMG **/
    .thanksImg {
        width: 80%;
    }

    .thankslogo {
        max-width: 214px;
    }

}