/*CSS Layout área genérico 2 columnas*/
.lo-gdc-main{
    margin-bottom: 90px;
}
        .lo-gdc-header{
            margin-bottom: 55px;
            position: relative;
            width: 100%;
        }
        .lo-gdc-introduction{
            margin-bottom: 45px;
            position: relative;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            width: 100%;
        }
        .lo-gdc-body{
            display: flex;
            justify-content: space-between;
            align-items: stretch;
        }
            .lo-gdc-body-first, .lo-gdc-body-second{
                width: calc(50% - (var(--box-margin-right) / 2));
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
            }
            .lo-guc-body-first .form-group, .lo-guc-body-second .form-group{
                margin-bottom: 0;
            }
        .lo-gdc-footer{
            margin-top: 55px;
            position: relative;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            width: 100%;
        }
            .lo-gdc-footer .all-button{
                margin-right: 12px;
            }
            .lo-gdc-footer .all-button:last-child{
                margin-right: 0;
            }
@media (max-width:1199px) {
        .lo-gdc-body{
            flex-wrap: wrap;
        }
            .lo-gdc-body-first, .lo-gdc-body-second{
                width: 100%;
            }
            .lo-gdc-body-first{
                margin-bottom: 25px;
            }
}
@media (max-width:768px) {
.lo-gdc-main{
    margin-bottom: 70px;
}
        .lo-gdc-header{
            margin-bottom: 43px;
        }
        .lo-gdc-introduction{
            margin-bottom: 37px;
        }
        .lo-gdc-footer{
            margin-top: 43px;
        }
            .lo-gdc-footer .all-button{
                margin-right: 0;
                width: 100%;
                min-width: 100%;
                display: flex;
                text-align: center;
                justify-content: center;
            }
}