.request-block{
    padding: 60px 0px;
}

.list-request-options{
    display: flex;
    gap: 70px;
    flex-wrap: wrap;
    justify-content: center;
}

    .items-request-options{
        border: 1px solid #D1D2D4;
        width: 33.333%;
        width: calc(33.333% - 47px);
        background-color: #fff;
        padding: 50px;
        box-sizing: border-box;
        border-radius: 10px;
        cursor: pointer;
    }
    
        .items-request-icon{
            width: 80px;
            height: 80px;
            margin: 0 auto;
            margin-bottom: 20px;
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
        }
        
        .items-request-title{
            text-align: center;
            font-size: 20px;
            font-weight: bold;
        }
        
.form-request{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 999;
}

.form-request.open{
    opacity: 1;
}

    .form-request-content{
        position: absolute;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 450px;
        top: 15%;
        left: 50%;
        background-color: #fff;
        border-radius: 20px;
        padding: 40px 50px;
        transition: top 0.3s;
    }
    
    .form-request.open .form-request-content{
        top: 45%;
    }
    
        .form-request-title{
            font-size: 30px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 10px;
        }

        .form-request-title-desk{
            font-weight: bold;
            font-size: 20px;
            text-align: center;
            color: #888;
            margin-bottom: 40px;
        }
        
        .form-request-content input{
            width: 100%;
            font-size: 19px;
            padding: 15px 30px;
            box-sizing: border-box;
            border: 1px solid #D1D2D4;
            margin-bottom: 20px;
            border-radius: 5px;
        }
        
        .form-request-content .button{
            border: 2px solid #9F9F9F;
            color: #67696B;
        }
        
        .form-request-content .button:hover{
            color: #FFF;
            background-color: #67696B;
            border: 2px solid #67696B;
        }
        
        .error-title{
            font-weight: bold;
            display: none;
        }
        
        .close-form{
            position: absolute;
            width: 50px;
            height: 50px;
            top: 10px;
            right: 10px;
            cursor: pointer;
            background-image: url(../img/icon_close.svg);
            background-position: center;
            background-repeat: no-repeat;
            background-size: 35%;
        }
   
@media only screen and (max-width: 1200px){

    .list-request-options{
        gap: 40px;
    }
    
    .items-request-options {
        width: calc(50% - 20px);
    }
    
}
        
@media only screen and (max-width: 768px){

    .list-request-options{
        gap: 20px;
    }
    
    .form-request-content{
        width: 65vw;
    }
    
    .items-request-options{
        width: 100%;
    }
    
}
     