[data-core-block="boxes"] .boxes{display:flex;flex-direction:row;flex-wrap:nowrap;gap:20px;margin-top:60px;}
[data-core-block="boxes"] .boxes.one .item{width:100%;}
[data-core-block="boxes"] .boxes.two .item:nth-of-type(1n){width:75%;}
[data-core-block="boxes"] .boxes.two .item:nth-of-type(2n){width:25%;}
[data-core-block="boxes"] .boxes.three .item{width:33.33%;}
[data-core-block="boxes"] .boxitem{background-color:var(--bg-color, #ffffff);color:var(--txt-color, #184ea2);display:block;height:100%;}
[data-core-block="boxes"] .boxitem.bgcolour{padding:20px;}
[data-core-block="boxes"] .boxitem.border{border:1px solid;border-color:var(--bd-color);padding:20px;}
[data-core-block="boxes"] .boxitem.boxwrap{display:grid;grid-template-columns:1fr 2fr;justify-content:center;gap:20px;}
[data-core-block="boxes"] .boxitem.boxwrap .col:first-of-type{border-right:1px solid;border-color:var(--txt-color, #000000);}
[data-core-block="boxes"] a.boxitem{text-decoration:none;}
[data-core-block="boxes"] .boxitem img{margin-bottom:10px;}
[data-core-block="boxes"] .boxitem .boxheading{font-size:1.5625rem;font-weight:800;text-transform:uppercase;}
[data-core-block="boxes"] .boxitem.boxwrap .boxheading{font-size:2rem;font-weight:900;}
[data-core-block="boxes"] .boxitem .button{background-color:#184ea2;color:#ffffff;text-transform:uppercase;font-size:1.25rem;padding:10px 20px;font-weight:800;margin-top:10px;}

@media (max-width:800px)
{
    [data-core-block=boxes] .boxes{flex-direction:column;}
    [data-core-block=boxes] .boxes.two .item:nth-of-type(1n){width:100%;}
    [data-core-block=boxes] .boxes.two .item:nth-of-type(2n){width:100%;}

}

@media (max-width:580px)
{
    [data-core-block=boxes] .boxitem.boxwrap{grid-template-columns:none;}
    [data-core-block=boxes] .boxitem.boxwrap .col:first-of-type{border-right:none;border-bottom:1px solid;}
}