h1, h2, h3 {
    font-weight: 700;
}
.containers {
    width: 100%;
    max-width: 130rem;
    margin: auto;
}
.equalclmns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 4rem;
}
img {
    max-width: 100%;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
hr {
    margin: 0;
}
p {
    margin-bottom: 1rem;
}
a, button {
    transition: all 0.3s ease;
    cursor: pointer;
}
a:focus, button:focus {
    outline: none;
}
section {
    overflow-x: hidden;
    width: 100%;
    max-width: 155rem;
    margin: 0 auto;
    scroll-padding-top: 10rem;
}
.sectitles {
    margin-bottom: 2rem;
    display: flex;
}
.sectitles h2 {
    font-size: 3.2rem;
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
    display: inline-flex;
    margin: 0 auto 1rem auto;
}
.sectitlesnew {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}
.sectitlesnew h2 {
    font-size: 3.2rem;
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
    display: inline-flex;
    margin: 0 auto 1rem auto;
}
.formfields {
    position: relative;
    margin-bottom: 1.5rem;
}
.formfields label {
    display: flex;
    margin-bottom: 0.5rem;
}
.sections {
    padding: 5rem 0;
}
.sections.nptop {
    padding-top: 0;
}
.sections.midtop {
    padding-top: 2.5rem;
}
.sections.withbordertop {
    border-top: 1px solid #ccc;
}
.sections.relatives {
    position: relative;
    overflow: hidden;
}
.sections.bluetale {
    position: relative;
}
.sections.bluetale::before {
    content: '';
    width: 35%;
    height: 50%;
    background-color: #6178f8;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    left: auto;
    right: 0;
}
@media only screen and (max-width: 62em) {
    .sections.bluetale::before {
        display: none;
   }
}
.sections.homegray {
    position: relative;
}
.sections.homegray::before {
    content: '';
    width: 100%;
    height: 40%;
    background-color: #f8f8f8;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
}
.sections.homegray .contentgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    z-index: 1;
}
@media only screen and (max-width: 62em) {
    .sections.homegray .contentgrid {
        grid-template-columns: auto;
   }
}
.sections.homegray .contentgrid article {
    background-color: #6178f8;
    padding: 5rem 13rem 5rem 5rem;
    display: block;
    color: #fff;
    margin-bottom: 5rem;
}
@media only screen and (max-width: 75em) {
    .sections.homegray .contentgrid article {
        padding: 5rem;
        margin-bottom: 0;
   }
}
@media only screen and (max-width: 37.5em) {
    .sections.homegray .contentgrid article {
        padding: 2.5rem;
   }
}
.sections.homegray .contentgrid article h2 {
    font-size: 3.3rem;
}
.sections.homegray .contentgrid article p {
    font-size: large;
}
.sections.homegray .contentgrid picture {
    margin-left: -8rem;
    display: flex;
    position: relative;
}
@media only screen and (max-width: 75em) {
    .sections.homegray .contentgrid picture {
        margin-left: 0;
        justify-content: center;
   }
}
.sections.homegray .contentgrid picture img {
    display: flex;
    margin-top: 5rem;
}
@media only screen and (max-width: 75em) {
    .sections.homegray .contentgrid picture img {
        margin-top: 0;
   }
}
.sections.homegray .sectitles {
    display: flex;
}
.sections.homegray .sectitles h2 {
    font-size: 2.8rem;
    position: relative;
    padding: 0.82rem 4rem;
    text-align: center;
    display: inline-flex;
    color: #fff;
    z-index: 1;
}
.sections.homegray .sectitles h2::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #1d1d1d;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
}
.sections.justgray {
    background-color: #f8f8f8;
}
.sections.justgray h3 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.sections.lightblue {
    background-color: rgba(181, 209, 255, 0.31);
}
.forminputs {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.69rem;
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 1.66rem;
}
.forminputs:hover, .forminputs:focus {
    outline: none;
}
.forminputs:focus:invalid {
    border-color: #ea4235;
}
.bigbtn {
    border: none;
    font-weight: 600;
    display: flex;
    font-size: 1.82rem;
    padding: 0.91rem 1.5rem;
    width: max-content;
    border-radius: 4px;
}
.bigbtn:link {
    text-decoration: none;
}
.bigbtn:focus {
    outline: none;
}
.splitclmns {
    display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 4em;
    align-items: center;
}
@media only screen and (max-width: 75em) {
    .splitclmns {
        column-gap: 2rem;
   }
}
@media only screen and (max-width: 62em) {
    .splitclmns {
        grid-template-columns: auto;
        row-gap: 2rem;
   }
}
.splitclmns.shadowed {
    box-shadow: 0 0 1.55rem 0.3rem rgba(0, 0, 0, 0.09);
}
.splitclmns.shadowed article {
    padding: 2rem 2rem 2rem 0;
    display: grid;
}
.splitclmns.shadowed picture {
    display: grid;
}
.splitclmns article h2 {
    font-size: 3.7rem;
    margin-bottom: 1.5rem;
    color: #6178f8;
}
.splitclmns article h2 span {
    display: flex;
    width: max-content;
    position: relative;
    font-size: 1.66rem;
    text-transform: uppercase;
    padding-right: 7rem;
    font-weight: 600;
}
.splitclmns article h2 span::before {
    content: '';
    width: 6rem;
    height: 0.19rem;
    background-color: #666;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 0;
}
.splitclmns article h2.dblue {
    color: #002339;
}
.splitclmns article .subsection {
    display: grid;
    grid-template-columns: 1fr 23rem;
    column-gap: 1.5rem;
}
@media only screen and (max-width: 62em) {
    .splitclmns article .subsection {
        grid-template-columns: auto;
   }
}
@media only screen and (max-width: 62em) {
    .splitclmns article .subsection img {
        display: none;
   }
}
.splitclmns article p a {
    color: #6178f8;
}
.splitclmns article p a:link {
    text-decoration: none;
}
.splitclmns article p a:hover {
    color: #352786;
}
.splitclmns picture {
    position: relative;
}
@media only screen and (max-width: 62em) {
    .splitclmns picture {
        display: grid;
        justify-content: center;
        grid-row: 1;
   }
}
.splitclmns picture img {
    display: inline-flex;
}
.splitclmns picture figure {
    display: inline-flex;
    width: max-content;
    position: relative;
    z-index: 1;
}
.splitclmns picture.blue figure {
    background-color: #6178f8;
}
.splitclmns picture.blue::before {
    background-color: rgba(97, 120, 248, 0.18);
}
.splitclmns picture.beige figure {
    background-color: #dac294;
}
.splitclmns picture.beige::before {
    background-color: rgba(218, 194, 148, 0.34);
}
.splitclmns picture.violet figure {
    background-color: #9ea6d5;
}
.splitclmns picture.violet::before {
    background-color: rgba(158, 166, 213, 0.34);
}
.splitclmns picture.dblue {
    margin-bottom: 5rem;
}
.splitclmns picture.dblue figure {
    background-color: #352786;
}
.splitclmns picture.dblue::before {
    background-color: rgba(53, 39, 134, 0.18);
}
.splitclmns picture:hover::before {
    top: 2rem;
    left: 2rem;
}
.equalclmns.vcenter {
    align-items: center;
}
.bigtick {
    font-size: large;
    font-weight: 500;
}
@media only screen and (max-width: 75em) {
    .bigtick {
        margin-left: 1rem;
   }
}
.bigtick li {
    position: relative;
    display: grid;
    margin-bottom: 0.66rem;
    padding-left: 4rem;
}
.bigtick li::before {
    content: '\2713';
    position: absolute;
    top: 0.37rem;
    z-index: 0;
    left: 0;
    height: 2.5rem;
    width: 2.5rem;
    background-color: #6178f8;
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.bigtick li ul {
    margin: 0.69rem 0;
}
.bigtick li ul li {
    position: relative;
    display: grid;
    padding-left: 2rem;
}
.bigtick li ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    left: 0;
    height: 1.3rem;
    width: 1.3rem;
    background-color: #ea4235;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.accountheader {
    display: grid;
    background-color: #fff;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    z-index: 1000;
    width: 100%;
}
.accountheader .topbar {
    display: flex;
    border-bottom: 1px solid #ccc;
    align-items: center;
    padding: 0.69rem 2rem;
}
.accountheader .topbar a:link, .accountheader .topbar a:visited {
    color: #1d1d1d;
    text-decoration: none;
}
.accountheader .topbar a:hover, .accountheader .topbar a:focus, .accountheader .topbar a:active {
    color: #ea4235;
}
.accountheader .topbar p {
    margin: 0;
    display: flex;
    align-items: center;
    column-gap: 0.69rem;
}
@media only screen and (max-width: 48em) {
    .accountheader .topbar p :first-child, .accountheader .topbar p :nth-child(2) {
        display: none;
   }
}
@media only screen and (max-width: 37.5em) {
    .accountheader .topbar p :nth-child(4) {
        display: none;
   }
}
.accountheader .topbar p img {
    width: 1.5rem;
    height: 1.5rem;
}
.accountheader .topbar .social {
    display: flex;
    margin-left: auto;
    column-gap: 0.82rem;
    margin-top: 0px;
}
.accountheader .topbar .social :first-child a {
    background-color: #1d1d1d;
}
.accountheader .topbar .social :nth-child(2) a {
    background-color: #3b5997;
}
.accountheader .topbar .social :nth-child(3) a {
    background-color: #3b5997;
}
.accountheader .topbar .social :nth-child(4) a {
    background-color: #54acec;
}
.accountheader .topbar .social :last-child a {
    background-color: #e52c27;
}
.accountheader .topbar .social img {
    width: 1.3rem !important;
    /* height: 1.3rem !important; */
    fill: #fff !important;
}
.accountheader .topbar .social li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.accountheader .topbar .social li a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
}
.accountheader .topbar .social li a:link, .accountheader .topbar .social li a:visited {
    text-decoration: none;
}
.accountheader .topbar .social li a:hover, .accountheader .topbar .social li a:focus, .accountheader .topbar .social li a:active {
    color: #ea4235;
}
.accountheader nav {
    display: flex;
    width: 100%;
    padding: 0.69rem 2rem;
    align-items: center;
}
.accountheader .awardsandlogo {
    display: flex;
    column-gap: 0.55rem;
}
.accountheader .awardsandlogo .awardpoints {
    padding: 0;
}
.accountheader .awardsandlogo .awardpoints ul {
    line-height: normal;
}
.accountheader .awardsandlogo .awardpoints ul li {
    font-size: 1.1rem;
    font-weight: 600;
}
.accountheader .awardsandlogo .awardpoints ul li a:link, .accountheader .awardsandlogo .awardpoints ul li a:visited {
    color: #1d1d1d;
    text-decoration: none;
}
.accountheader .awardsandlogo .awardpoints ul li a:hover, .accountheader .awardsandlogo .awardpoints ul li a:focus, .accountheader .awardsandlogo .awardpoints ul li a:active {
    color: #ea4235;
}
.accountheader .logo {
    color: #1d1d1d;
    text-decoration: none;
}
.accountheader .logo img {
    height: 5rem;
    display: flex;
    margin-bottom: 0.33rem;
}
@media only screen and (max-width: 56.25em) {
    .accountheader .logo img {
        height: 4rem;
   }
}
.accountheader .logo h5 {
    font-size: 0.91rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    margin: 0;
    padding: 0;
    color: #1d1d1d;
    align-items: baseline;
    justify-content: center;
    letter-spacing: 0.66px !important;
}
.accountheader .menu {
    margin-left: auto;
    text-transform: capitalize;
    display: flex;
    width: max-content;
}
@media only screen and (max-width: 62em) {
    .accountheader .menu {
        display: none;
   }
}
.accountheader .menu ul {
    display: flex;
    column-gap: 1.5rem;
    font-weight: 600;
}
.accountheader .menu ul a {
    color: #1d1d1d;
}
.accountheader .menu ul a:link {
    text-decoration: none;
}
.accountheader .menu ul a:focus {
    outline: none;
}
.accountheader .menu ul a:hover, .accountheader .menu ul a:active, .accountheader .menu ul a.active {
    color: #6178f8;
}
.accountheader .navbtns {
    display: flex;
    margin-left: auto;
}
.accountheader .navbtns .btns {
    border: none;
    font-weight: 600;
    color: #fff;
    background-color: #6178f8;
    font-size: 1.66rem;
    padding: 0.91rem 1.5rem;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    text-decoration: none;
}
.accountheader .navbtns .btns:focus {
    outline: none;
}
.accountheader .navbtns .btns:hover {
    background-color: #ea4235;
}
.hero {
    background-color: #f8f8f8;
    margin-top: 10rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: calc(100vh - 13rem);
    display: grid;
    grid-template-columns: 1fr minmax(auto, 64rem);
}
@media only screen and (max-width: 75em) {
    .hero {
        grid-template-columns: 1fr;
   }
}
.hero article {
    background-image: url(../img/imgaccounting/herobgleft.png);
    background-color: #f8f8f8;
    display: grid;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 2rem 4rem;
    align-content: center;
    background-blend-mode: luminosity;
}
@media only screen and (max-width: 75em) {
    .hero article {
        padding: 6rem;
   }
}
.hero article h1 {
    margin: 0;
    font-size: 5.5rem;
    line-height: normal;
    color: #6178f8;
}
@media only screen and (max-width: 37.5em) {
    .hero article h1 {
        font-size: 4.6rem;
   }
}
.hero article h1 span {
    color: #1d1d1d;
    display: flex;
}
.hero article p {
    font-size: larger;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.hero article a {
    border: none;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    background-color: #6178f8;
    font-size: 1.66rem;
    padding: 1.2rem 2.5rem;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    width: max-content;
}
.hero article a:focus {
    outline: none;
}
.hero article a:hover {
    background-color: #ea4235;
}
.hero picture {
    display: grid;
    background-image: url(../img/imgaccounting/herobgright.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #b5d1ff;
    background-blend-mode: multiply;
    padding: 0 2rem;
    align-content: end;
    justify-content: center;
    position: relative;
}
.hero picture img {
    display: flex;
    max-height: 50rem;
}
.hero picture .quicklogo {
    left: 1.5rem;
    bottom: 1.5rem;
    z-index: 10;
    position: absolute;
}
.hero picture .quicklogo img {
    height: 3.5rem;
}
.rategrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2.5rem;
}
.rategrid .clmn {
    color: #fff;
}
.rategrid .clmn article {
    padding: 3rem;
    background-color: rgba(0, 35, 57, 0.31);
    display: grid;
    margin-bottom: 1.5rem;
    transition: all 0.3s linear;
}
.rategrid .clmn article:hover {
    background-color: rgba(0, 35, 57, 0.67);
}
.rategrid .clmn article h3 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 600;
}
.rategrid .clmn article ul {
    font-size: 2rem;
    margin: 2.5rem 0;
    display: grid;
}
.rategrid .clmn article ul li {
    display: flex;
    margin-bottom: 0.55rem;
}
.rategrid .clmn article img {
    display: flex;
    max-height: 10rem;
}
.rategrid .clmn h4 {
    font-weight: 600;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}
.rategrid .clmn h4 a {
    color: #fff;
}
.rategrid .clmn p {
    font-size: larger;
    font-weight: 500;
}
.awardgrid {
    display: grid;
    grid-template-columns: 1fr repeat(2, 33rem);
}
.awardgrid .clmn {
    border-right: 1px solid #ccc;
    padding: 5rem 3rem;
    display: grid;
    align-content: center;
}
.awardgrid .clmn h2 {
    font-size: 3.3rem;
    color: #002339;
}
.awardgrid .clmn p {
    font-size: 2rem;
    font-weight: 600;
}
.awardgrid .clmn span {
    font-size: 6.9rem;
    font-weight: bolder;
    color: #b8272a;
    margin: auto;
    display: inline-flex;
    animation: redcolors 2s infinite ease;
}
.awardgrid .clmn:first-child {
    padding-left: 0;
}
.awardgrid .clmn:first-child p {
    font-style: italic;
    color: #b8272a;
}
.awardgrid .clmn:last-child {
    border: none;
}
.awardgrid .clmn.counts p {
    text-align: center;
    color: #002339;
}
.acfooter {
    display: grid;
    width: 100%;
    padding: 3rem 6rem;
    border-top-left-radius: 100px;
    background-color: #1d1d1d;
    margin-top: 5rem;
}
.acfooter .footop {
    display: grid;
    grid-template-columns: minmax(auto, 66rem) 1fr;
}
@media only screen and (max-width: 75em) {
    .acfooter .footop {
        grid-template-columns: 1fr;
        row-gap: 3rem;
   }
}
.acfooter .footop .footbox {
    color: #fff;
}
.acfooter .footop .footbox .clmn {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 4rem;
    margin-top: 2rem;
}
.acfooter .footop .footbox .clmn img {
    width: 4rem;
    /* height: 4rem; */
    fill: #6178f8;
}
.acfooter .footop .footbox h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-top: 0rem;
}

.acfooter .footop .footbox h4 {
    font-weight: 600;
    font-size: 1.82rem;
    font-style: normal;
    color: #ea4235;
    margin-bottom: 0rem;
    margin-top: 0rem;
}
.acfooter .footop .footbox p {
    margin-top: 0rem;
    margin-bottom: 1rem;
}
.acfooter .footop .footbox address {
    margin-top: .5rem;
    display: grid;
}
.acfooter .footform {
    display: grid;
    align-content: center;
}
.acfooter .footform h2 {
    font-size: 3.7rem;
    color: #fff;
    margin-bottom: 0rem;
}
.acfooter .footform p {
    font-size: large;
    color: #888;
    margin-top: 0rem;
}
.acfooter .footform .footfrmgroup {
    display: grid;
    overflow: hidden;
    border-radius: 4px;
    margin: 1.5rem 0;
    grid-template-columns: 1fr 13rem;
}
@media only screen and (max-width: 75em) {
    .acfooter .footform .footfrmgroup {
        max-width: 50rem;
   }
}
.acfooter .footform .footfrmgroup input {
    background-color: #fff;
    border: none;
    padding: 1.5rem;
    width: 100%;
    font-weight: 500;
    margin: 0;
    font-size: 1.66rem;
    transition: all 0.3s ease;
}
.acfooter .footform .footfrmgroup input:hover, .acfooter .footform .footfrmgroup input:focus {
    outline: none;
}
.acfooter .footform .footfrmgroup input:focus:invalid {
    border-color: #ea4235;
}
.acfooter .footform .footfrmgroup button {
    background-color: #6178f8;
    color: #fff;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 3rem;
    border: none;
    display: flex;
    font-size: 1.66rem;
    border-radius: 0;
    font-weight: 500;
}
.acfooter .footform .footfrmgroup button:hover, .acfooter .footform .footfrmgroup button:focus {
    outline: none;
    background-color: #54acec;
}
.acfooter .footform .footlinks {
    display: flex;
    column-gap: 2rem;
}
@media only screen and (max-width: 37.5em) {
    .acfooter .footform .footlinks {
        flex-direction: column;
        row-gap: 1rem;
   }
}
.acfooter .footform .footlinks h5 {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    margin-top: 0rem;
}
.acfooter .footform .footlinks ul{
    margin-bottom: 4rem;
}
.acfooter .footform .footlinks ul li {
    display: flex;
    margin-bottom: 0.34rem;
}
.acfooter .footform .footlinks ul li a:link, .acfooter .footform .footlinks ul li a:visited {
    color: #888;
    text-decoration: none;
}
.acfooter .footform .footlinks ul li a:hover, .acfooter .footform .footlinks ul li a:focus, .acfooter .footform .footlinks ul li a:active {
    color: #ea4235;
}
.acfooter .copyrights {
    color: #888;
    padding-top: 2rem;
    display: flex;
    column-gap: 2rem;
    align-items: center;
    margin-top: 0rem;
}
.acfooter .copyrights p {
    margin: 0;
    display: flex;
}
.grayribbon {
    background-color: #1d1d1d;
    padding: 3.5rem 1.5rem;
    text-align: center;
}
.grayribbon h3 {
    font-weight: 600;
    margin: 0;
    font-size: 2.4rem;
    color: #fff;
}
.grayribbon h3 a {
    color: #6178f8;
}
.grayribbon h3 a:link {
    text-decoration: none;
}
.grayribbon h3 a:hover {
    color: #ea4235;
}
.alomostgray {
    padding-left: 6rem;
}
@media only screen and (max-width: 48em) {
    .alomostgray {
        padding-left: 0;
   }
}
.alomostgray .graygrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0 5rem;
    background-color: #f8f8f8;
}
@media only screen and (max-width: 75em) {
    .alomostgray .graygrid {
        grid-template-columns: repeat(2, 1fr);
   }
}
@media only screen and (max-width: 48em) {
    .alomostgray .graygrid {
        grid-template-columns: 1fr;
   }
}
.alomostgray .graygrid .clmn {
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 4rem 2rem;
    display: grid;
    align-content: first baseline;
}
.alomostgray .graygrid .clmn.vcenter {
    align-content: center;
}
.alomostgray .graygrid .clmn:nth-child(4), .alomostgray .graygrid .clmn:last-child {
    border-right: none;
}
@media only screen and (max-width: 75em) {
    .alomostgray .graygrid .clmn:nth-child(2), .alomostgray .graygrid .clmn:nth-child(6) {
        border-right: none;
   }
}
@media only screen and (max-width: 48em) {
    .alomostgray .graygrid .clmn {
        border-right: none;
   }
}
.alomostgray .graygrid .clmn img {
    height: 5rem;
    width: 5rem;
    fill: #6178f8;
    margin-bottom: 0rem;
}
.alomostgray .graygrid .clmn h3 {
    font-size: 3.3rem;
}
.alomostgray .graygrid .clmn h4 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 0.7rem;
}
.alomostgray .graygrid .clmn p {
    margin-top: 0rem;
}
.delivergrid {
    display: grid;
    grid-template-columns: 13rem repeat(2, 1fr) 13rem;
    background-color: #fff;
    position: relative;
    box-shadow: 0 0 1.55rem 0.3rem rgba(0, 0, 0, 0.09);
    margin-bottom: 2rem;
}
@media only screen and (max-width: 56.25em) {
    .delivergrid {
        grid-template-columns: auto;
   }
}
.delivergrid .clmn {
    padding: 3rem;
    display: grid;
    align-content: baseline;
}
@media only screen and (max-width: 56.25em) {
    .delivergrid .clmn {
        justify-content: center;
   }
}
.delivergrid .clmn h4 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.delivergrid .clmn p {
    text-align: justify;
}
.delivergrid .clmn svg {
    width: 6rem;
    height: 6rem;
    fill: #fff;
}
.delivergrid .clmn:first-child {
    background-color: #ea4235;
    align-content: center;
}
.delivergrid .clmn:last-child {
    background-color: #6178f8;
    align-content: center;
}
.delivergrid::before {
    content: '';
    width: 1px;
    height: 80%;
    background-color: #ccc;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
@media only screen and (max-width: 56.25em) {
    .delivergrid::before {
        display: none;
   }
}
.pricegrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #fff;
    box-shadow: 0 0 1.55rem 0.3rem rgba(0, 0, 0, 0.09);
}
@media only screen and (max-width: 62em) {
    .pricegrid {
        grid-template-columns: auto;
   }
}
.pricegrid .clmn {
    padding: 3rem;
    display: grid;
    align-content: baseline;
    border-right: 1px solid #ccc;
}
.pricegrid .clmn:last-child {
    border: none;
}
.pricegrid .clmn span {
    display: inline-flex;
    background-color: #6178f8;
    width: max-content;
    height: 7rem;
    width: 7rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}
.pricegrid .clmn h4 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.pricegrid .clmn img {
    width: 5rem;
    height: 5rem;
    fill: #fff;
}
.pricegrid .clmn:nth-child(2) span {
    background-color: #ea4235;
}

@media only screen and (max-width: 1200px) {
	.accountheader .logo img {
  		height: 3.7rem;
	}
	.accountheader .logo h5 {
		font-size: 0.7rem;
	}
	.accountheader .awardsandlogo .awardpoints ul li {
  		font-size: 0.8rem;
	}
	.accountheader .menu ul a:link {
		font-size: 1.2rem;
	}
	.accountheader .navbtns .btns {
		font-size: 1.2rem;
	}
	.accountheader .topbar a:link {
		font-size: 1.3rem;
	}
	.accountheader .topbar p img {
	  width: 1.1rem;
	  height: 0.8rem;
	}
	.hero article h1 {
		font-size: 4rem;
	}
	.hero article p {
		margin-top: 0rem;
		font-size: 1.5rem;
	}
	.hero article a {
		font-size: 1.3rem;
  		padding: 1rem 2rem;
	}
	.splitclmns article h2 {
		font-size: 2.7rem;
		line-height: normal;
	}
	.splitclmns article h2 span {
		font-size: 1.2rem;		
	}
	.splitclmns article p {
		font-size: 1.3rem;
	}
	.splitclmns article .subsection p {
		margin-top: 0px;
	}
	.sections.homegray .sectitles h2 {
		font-size: 2.1rem;
	}
	.sections.homegray .contentgrid article h2 {
		font-size: 2.3rem;
		margin-bottom: 0px;
	}
	.sections.homegray .contentgrid article p {
		margin-top: 2px;
	}
	.alomostgray .graygrid .clmn h3 {
	  font-size: 2.5rem;
	  line-height: 1.2;
	}
	.alomostgray .graygrid .clmn h4 {
		font-size: 1.4rem;
		margin-bottom: 0.4rem;
	}
	.alomostgray .graygrid .clmn p {
		font-size: 1.3rem;
	}
	.grayribbon h3 {
		font-size: 1.8rem;
	}
	#accountsecurity .splitclmns,
	.bluetale .splitclmns {
		padding: 0px 15px;
	}
	#accountprice .containers {
		padding: 0px 15px;
	}
	#accountprice .sectitles h2 {
		font-size: 2.4rem;
	}
	#accountprice.sections.justgray h3 {
		margin-top: 0px;
		font-size: 2.1rem;
	}
	.delivergrid .clmn h4 {
		margin-top: 0px;
		font-size: 1.8rem;
		margin-bottom: 0.7rem;
	}
	.delivergrid .clmn p {
		margin-top: 0px;
		font-size: 1.3rem;
	}
	.delivergrid .clmn img {
		max-width: 54px;
  		margin: 0px auto;
	}
	.delivergrid .clmn {
		padding: 2rem;
	}
	.pricegrid .clmn h4 {
		font-size: 1.6rem;
		margin-top: 0px;
		margin-bottom: 0;
	}
	.pricegrid .clmn p {
		margin-top: 5px;
  		font-size: 1.3rem;
	}
	.pricegrid .clmn span {
		height: 6rem;
  		width: 6rem;
	}
	.pricegrid .clmn img {
	  width: 3rem;
	  height: 3rem;
	}
	.acfooter .footop .footbox address {
  		margin-top: 0rem;
	}
	.acfooter .footop .footbox .clmn {
		column-gap: 3rem;
	}
	.acfooter .footop .footbox h3 {
		font-size: 2rem;
	}
	.acfooter .footop .footbox h4 {
		font-size: 1.5rem;
	}
	.acfooter .footop .footbox p {
		font-size: 1.3rem;
	}
	.acfooter .footop .footbox .clmn img {
  		width: 2.8rem;
	}
	.sectitlesnew h2 {
		font-size: 2.2rem;
		padding-bottom: 0rem;
	}
	.swiper-slide {
		margin-right: 50px;
	}
	.acfooter .footform h2 {
  		font-size: 2.7rem;
	}
	.acfooter .footform .footfrmgroup {
		max-width: 450px;
		grid-template-columns: 1fr 9rem;
	 }
	.acfooter .footform .footfrmgroup input {
		font-size: 1.2rem;
	}
	.acfooter .footform .footfrmgroup button {
		font-size: 1.2rem;
	}
	.acfooter .footform .footlinks ul li a {
		font-size: 1.2rem;
	}
	.acfooter .footform .footlinks h5 {
  		font-size: 1.6rem;
		margin-bottom: 0.5rem;
	}
	.acfooter .footform .footlinks ul {
	  margin-bottom: 1rem;
	}
	.acfooter .copyrights {
		font-size: 1.2rem;
	}
}

@media only screen and (max-width: 993px) {
	#aboutaccounts .panel-grid-cell:first-child {
		grid-row: 2/2;
	}
	#aboutaccounts .picture .widget_media_image {
		text-align: center;
	}
	#aboutaccounts .article {
		padding: 0px 15px;
	}
	#accountsecurity .splitclmns picture {
		grid-row: 2/2;
	}
	.bluetale .splitclmns picture {
		grid-row: 2/2;
	}
	#accountprice .sectitles {
		margin-bottom: 1rem;
	}
	.delivergrid .clmn h4 {
		font-size: 1.5rem;
	}
	.bluetale .splitclmns {
		padding: 0px 0px;
	 }
	.bigtick li {
		padding-left: 3rem;
	}
	.bigtick li::before { 
		height: 1.8rem;
  		width: 1.8rem;
	}	
}
@media only screen and (max-width: 768px) {
	.accountheader .topbar p img {
		display: none;
	}
	.alomostgray .graygrid {
		padding: 0 2rem;
	}
	 .hero article {
		padding: 6rem 2rem;
	 }
}
@media only screen and (max-width: 640px) {	
	.hero article h1 {
		font-size: 3rem;
	 }
	.swiper-slide .card img {
		width: 100%;
	}
	.alomostgray .graygrid .clmn img {
		height: 4rem;
  		width: 4rem;
	}
	.alomostgray .graygrid .clmn {
		padding: 3rem 2rem;
	}
}
@media only screen and (max-width: 480px){
	.acfooter {
		padding: 3rem 3rem;
	}
	.pricegrid .clmn {
		padding: 3rem 2rem;
	}
}
@media only screen and (max-width: 400px) {
  .accountheader .logo img {
    height: 2.5rem;
  }
  .accountheader .logo h5 {
    font-size: 0.4rem;
  }
  .accountheader .navbtns .btns {
    font-size: 1rem;
  }
  .accountheader .topbar .social img {
	width: 0.9rem !important;
  }
  .accountheader .topbar .social li a {
	width: 1.6rem;
  	height: 1.6rem;
	 margin-right: 0px;
  }  
}
