.sub-visual {
    background-image: url(../img/sub/support/support_visual.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section1 {
    padding-left: var(--pad-left);
    padding-right: var(--pad-right);
}

.record-list{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.record-box{
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 40px;
}

.record-box .img{
    max-width: 440px;
    min-width: 300px;
    width: 30%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 50px;
    padding: 20px;
}

.record-box .txt{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.record-box .txt .item{
    display: flex;
    align-items: flex-start;
}

.record-box .txt .item span{
    color: var(--red-theme-primary-main);
    font-family:var(--font-ox);
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    min-width: 140px;
    margin-right: 14px;
}

.record-box .txt .item ul{
    margin-left: 33px;
}

.record-box .txt .item ul li{
    list-style: square;
    color: #FFF;
    font-family: var(--font-ox);
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
}

.contact-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.contact-btn a{
    display: flex;
    width: 180px;
    height: 60px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border: 1px solid var(--red-theme-primary-main);
    border-radius: 70px;
    color: #FFF;
    font-family: var(--font-ox);
    font-size: 16px;
    font-weight: 600;
    background-color: transparent;
}

.contact-btn a.on{
    background-color: var(--red-theme-primary-main);
}

.form-wrap{
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
}

.form-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.input-box{
    width: 100%;
}

.input-box > label{
    position: relative;
    display: inline-block;
    color: #FFF;
    font-family:var(--font-ox);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.input-box label.req::after{
    position: absolute;
    top:50%;
    right:-24px;
    transform: translate(-50%, -50%);
    content: '*';
    color: var(--red-theme-primary-main);
    font-family: var(--font-ox);
    font-size: 24px;
    font-weight: 500;
}
.input-box > input{
    width: 100%;
    height: 60px;
    background-color: var(--red-theme-primary-dark);
    color: #fff;
    font-family: var(--font-ox);
    font-size: 18px;
    font-weight: 400;
    padding: 20px;
}

.input-box > textarea{
    width: 100%;
    height: 250px;
    background-color: var(--red-theme-primary-dark);
    color: #fff;
    font-family: var(--font-ox);
    font-size: 18px;
    font-weight: 400;
    padding: 20px;
    resize: none;
}

.input-box > input::placeholder, .input-box > textarea::placeholder, .file-box .upload-area{
    color: rgba(255, 255, 255, 0.30);
}

.file-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.file-box .upload-area{
    width: 100%;
    height: 60px;
    background-color: var(--red-theme-primary-dark);
    color: #fff;
    font-family: var(--font-ox);
    font-size: 18px;
    font-weight: 400;
    padding: 20px;
    resize: none;
}

.file-box > label {
    display: flex;
    width: 180px;
    height: 60px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: #FFF;
    font-family: var(--font-ox);
    font-size: 18px;
    font-weight: 600;
    background-color: var(--red-theme-primary-main);
    cursor: pointer;
}

.form-btn{
    position: relative;
    border-radius: 70px;
    border: 1px solid rgba(236, 77, 55, 0.50);
    background-color: var(--red-theme-primary-dark);
    background-image: url(../img/contact.png);
    background-size: 60px 60px;
    background-position-x:10px;
    background-position-y: 50%;
    background-repeat: no-repeat;
    box-shadow: 0 0 30px 0 rgba(236, 77, 55, 0.50);
    backdrop-filter: blur(10px);
    width: 222px;
    height: 80px;
    padding: 10px;
    gap: 10px;
    color: #FFF;
    font-family: var(--font-ox);
    font-size: 16px;
    font-weight: 600;
    text-indent: 60px;
    margin: 0 auto;
    cursor: pointer;
}

@media screen and (max-width:1024px) {
    .record-box{
        padding: 30px;
    }
    .record-box .img{
        margin-right: 40px;
    }
    .record-box .txt .item span{
        font-size: 18px;
    }
    .record-box .txt .item ul li{
        font-size: 16px;
    }
    .contact-btn a{
        width: 140px;
        height: 50px;
        font-size: 14px;
    }
    .form-wrap{
        margin-top: 40px;
        gap: 40px;
    }
    .input-box > label{
        font-size: 22px;
        margin-bottom: 16px;
    }
    .input-box > input{
        height: 52px;
        font-size: 16px;
        padding: 16px;
    }
    .input-box > textarea{
        font-size: 16px;
        height: 200px;
        padding: 16px;
    }
    .file-box .upload-area{
        height: 52px;
        font-size: 16px;
        padding: 16px;
    }
    .file-box > label{
        width: 160px;
        height: 52px;
        font-size: 16px;
    }
    .form-btn{
        width: 190px;
        height: 70px;
        background-size: 50px 50px;
        font-size: 14px;
        text-indent:50px;
    }
}


@media screen and (max-width:991px) {
    .record-box{
        flex-direction: column;
        align-items: flex-start;
    }
    .record-box .img{
        margin-right: 0;
        min-width: 100%;
    }
    .record-box .txt{
        margin-top: 20px;
        gap: 18px;
    }
}


@media screen and (max-width:768px) {
    .record-box{
        padding: 20px;
    }
    .record-box .txt .item span{
        font-size: 16px;
    }
    .record-box .txt .item ul li{
        font-size: 14px;
    }
    .contact-btn a{
        width: 120px;
        height: 40px;
        font-size: 12px;
    }
    .form-wrap{
        gap: 30px;
    }
    .form-row{
        flex-direction: column;
    }
    .input-box > label{
        font-size: 20px;
        margin-bottom: 14px;
    }
    .input-box > input{
        height: 48px;
        font-size: 14px;
        padding: 12px;
    }
    .input-box > textarea{
        font-size: 14px;
        height: 160px;
        padding: 12px;
    }
    .file-box .upload-area{
        height: 48px;
        font-size: 14px;
        padding: 12px;
    }
    .file-box > label{
        width: 140px;
        height: 48px;
        font-size: 14px;
    }
    .form-btn{
        width: 140px;
        height: 52px;
        background-size: 32px 32px;
        font-size: 12px;
        text-indent:40px;
    }
}