.global-form{
    
}

.global-form .text-checkbox-module {
    background: #F2F3F5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 48px;
    border-radius: 16px;
    cursor: pointer;
    transition: background-color ease 0.5s;
}

.global-form .text-checkbox-module:hover {
    background-color: rgb(199, 199, 199);
}

.global-form .retentie.text-checkbox-module * {
    cursor: inherit;
}

.global-form .text-checkbox-module .text {
    font-size: 32px;
}

.global-form .text-checkbox-module .title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;

}

@media only screen and (max-width: 3000px){
    .global-form .text-checkbox-module {
        padding: 24px;
        border-radius: 8px;
       
    }

    .global-form .text-checkbox-module .text {
        font-size: 16px;
    }

    .global-form .text-checkbox-module .title {
        font-size: 20px;
        margin-bottom: 8px;
      
    }
}

@media (max-width: 890px) {
    .global-form .text-checkbox-module .title {
        font-size: 18px;
    }
}