/** Shopify CDN: Minification failed

Line 85:1 Expected "}" to go with "{"

**/
.two-columns-section {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 20px;
}

.two-columns-section .two-columns-card {
    background: rgb(61,83,129);
    background: linear-gradient(313deg, rgba(61,83,129,1) 0%, rgba(56,88,191,1) 27%);
    padding: 30px 38px;
    border-radius: 16px;
}

.two-columns-section .two-columns-card:first-child {
    background: rgb(51,71,121);
    background: linear-gradient(313deg, rgba(51,71,121,1) 0%, rgba(47,71,143,1) 16%);
}


.two-columns-section .two-columns-card h2 {
    color: white;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 13px;
    margin-top: 0;
}

.two-columns-section .two-columns-card p {
    width: 70%;
    color: white;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
}

.two-columns-section .two-columns-card a {
    display: inline-block;
    background-color: #0050DD;
    color: #fff;
    padding: 11px 17px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .two-columns-section {
        grid-template-columns: 1fr;
    }
}

.two-columns-section .two-columns-card:last-child h2 {
    font-size: 20px;
}

.two-columns-section .two-columns-card:last-child p {
    width: 100%;
}

@media screen and (max-width: 1287px) {
    .two-columns-section .two-columns-card p {
        width: 100%;
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    .two-columns-section .two-columns-card h2{
        font-size: 24px;
    }
    .two-columns-section .two-columns-card a {
        font-size: 14px;
    }
    .two-columns-section .two-columns-card {
        padding: 34px 16px;
    }
    .two-columns-section {
        padding-top: 16px !important;
        padding-bottom: 24px !important;
}