@charset "UTF-8";

.footer-conversion-enterprise {
    background-color: #5076B0;
    width: 100%;
    height: 315px;
    text-align: center;
    position: relative;

    .pod-cta-buttons {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

        .pod-cta-button {
            display: grid;
            grid-template-areas:
                "description"
                "button";
            grid-template-rows: 110px 1fr;
            align-items: center;
            word-break: keep-all;
            overflow-wrap: break-word;

            p:first-child {
                grid-area: description;
                font-weight: bold;
                color: #fff;
                padding: 0;
                margin: 0;
            }

            a {
                display: block;
                grid-area: button;
                background-color: #5076B0;
                border: 3px solid #fff;
                text-decoration: none;

                span {
                    display: block;
                    padding: 8px;
                    margin: 4px;
                    font-weight: bold;
                    color: #5076B0;
                    background-color: #fff;
                }
            }
        }
    }
}

@media(992px <=width) {
    .footer-conversion-enterprise {
        .pod-cta-buttons {
            .pod-cta-button {
                p:first-child {
                    font-size: 18px;
                }

                a {
                    span {
                        padding: 14px 120px;
                        font-size: 18px;
                    }
                }
            }
        }
    }
}
