.sogl {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #f4f4f4;
    width: 100% !important;
    transition: 0.5s;
    display: flex;
    padding: 30px 16px;
    z-index: 100000;
    -webkit-box-shadow: 1px -2px 8px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 1px -2px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 1px -2px 8px 0px rgba(34, 60, 80, 0.2);
    right: auto;
    top: auto;
}

.sogl .cont {
    width: 100%;
    max-width: 1290px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.sogl .cont p {
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    text-align: left;
    max-width: 1000px;
}

.sogl .cont p a {
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    text-align: left;
    color: #7f42e1;
}

.sogl .cont .button {
    max-width: 190px;
    height: 50px;
    text-transform: uppercase;
    border-radius: 5px;
    min-width: 170px;
}

@media (max-width: 1280px) {
    .sogl .cont p br {
        display: none !important;
    }
}

@media (max-width: 655px) {
    .sogl .cont {
        flex-direction: column;
    }

    .sogl .cont .button {
        width: 100%;
        min-width: auto;
        max-width: none;
    }

    .sogl .cont p a,
    .sogl .cont p {
        font-size: 14px;
        font-weight: 400;
        line-height: 130%;
        text-align: left;
    }

   
}

.sogl.invise {
    display: none !important;
}