@media (min-width: 1300px) {
    #request .container {
        max-width: 1270px;
    }
}

html {
    -webkit-touch-callout: none;
    -webkit-user-select: text;
}

:root {
    --white: #ffffff;
    --yellow: #fcaf17;
    --yellow2: #FCAF16;
    --light-yellow: #FDEFD5;
    --pink: #A50555;
    --purple: #93084D;
    --gray: #464646;
    --light-gray: #8B8B8B;
    --arial: "arial", sans-serif;
}

#request {
    font-family: var(--arial);
}

#request .pt-32 {
    padding-top: 32px;
}

#request .pb-32 {
    padding-bottom: 32px;
}

#request .pb-20 {
    padding-bottom: 20px;
}

#request .mb-20 {
    margin-bottom: 20px;
}

#request .mb-32 {
    margin-bottom: 32px;
}

#request .mb-40 {
    margin-bottom: 40px;
}

#request .fs-16 {
    font-size: 16px;
    line-height: 125%;
}

#request .fs-20 {
    font-size: 20px;
    line-height: 120%;
}

#request .fs-24 {
    font-size: 24px;
    line-height: 100%;
}

#request .fs-32 {
    font-size: 32px;
    line-height: 115%;
}

#request .fw-100 {
    font-weight: 100;
}

#request .fw-200 {
    font-weight: 200;
}

#request .fw-300 {
    font-weight: 300;
}

#request.fw-400 {
    font-weight: 400;
}

#request .fw-500 {
    font-weight: 500;
}

#request .fw-600 {
    font-weight: 600;
}

#request .fw-700 {
    font-weight: 700;
}

#request .fw-800 {
    font-weight: 800;
}

#request .fw-900 {
    font-weight: 900;
}

#request .ff-ar {
    font-family: var(--arial);
}

#request .c-white {
    color: var(--white);
}
#request .c-hover-white:hover {
    color: var(--white);
}

#request .c-pink {
    color: var(--pink);
}

#request .c-red {
    color: red;
}

#request .c-gray {
    color: var(--gray);
}

#request .c-light-gray {
    color: var(--light-gray);
}

#request .c-yellow {
    color: var(--yellow);
}
#request .c-hover_yellow:hover {
    color: var(--yellow);
}
#request .bg-yellow {
    background-color: var(--yellow);
}

#request .bg-white {
    background-color: var(--white);
}

#request .bg-pink {
    background-color: var(--pink);
}

#request .bg-purple {
    background-color: var(--purple);
}

#request .form-control {
    border: 2px solid #707070;
    line-height: 200%;
    font-size: 20px;
    color: var(--gray);
    font-weight: 400;
    border-radius: 16px;
}

#request .form-control:focus {
    border-color: var(--pink);
}

#request .request-title span {
    padding-bottom: 5px;
    border-bottom: 5px solid var(--pink);
    line-height: 155%;
}

#request .study-list span {
    padding-bottom: 2px;
    border-bottom: 5px solid var(--yellow);
}

#request .item {
    display: flex;
    gap: 16px;
    align-items: center;
}

#request .checkbox-item {
    display: block;
    position: relative;
}

#request label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    margin: 0;
}

#request .checkbox-item span {
    background: #fff;
    display: flex;
    padding: 16px;
    border-radius: 16px;
    width: 100%;
    gap: 12px;
    align-items: center;
    color: var(--gray);
    font-size: 16px;
    line-height: 125%;
    font-weight: 400;
    transition: ease all 0.2s;
    word-break: break-word;      
    white-space: normal;
}

#request .checkbox-item span:before {
    content: "";
    border: 2px solid #707070;
    background: #fff;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: block;
    aspect-ratio: 1/1;
    transition: ease all 0.2s;    
}

#request .checkbox-item input:checked + span {
    background: var(--light-yellow);
}

#request .checkbox-item input:checked + span:before {
    background: var(--yellow2);
}

#request .subscribe {
    position: relative;
}

#request .subscribe span  {
    font-size: 16px;
    color: var(--gray);
    display: flex;
    gap: 12px;
    align-items: center;
    letter-spacing: -0.16px;
}

#request .subscribe span:before {
    content: "";
    border: 2px solid #A50655;
    background: #fff;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: block;
    aspect-ratio: 1/1;
    transition: ease all 0.2s;    
}

#request .subscribe input:checked + span:before {
    background: #6F6F6F;
}

.submit-button {
    border: 0;
    background-color: var(--yellow2);
    color: var(--pink);
    font-weight: bold;
    font-size: 20px;
    padding: 16px 10px;
    line-height: 100%;
    border-radius: 100px;
    display: block;
    margin: 0 auto;
    max-width: 378px;
    width: 100%;
}

@media(max-width: 991px) {
    #request .fs-mb-28 {
        font-size: 28px;
    }

    #request .fs-mb-18 {
        font-size: 18px;
    }

    #request .fs-mb-14 {
        font-size: 14px;
    }    
}

@media(max-width: 767px) {
    #request .item {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
}