*,
*:before,
*:after {
    position: relative;
    margin: 0;
    min-width: 0;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    background-image: none;
    background-position: center center;
    background-repeat: no-repeat;
    box-sizing: border-box;
}


html {
    text-align: left;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    display: block;
    color: inherit;
    font: inherit;
    text-align: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
}

button,
[type="button"],
[type="reset"],
[type="submit"],
[type="file"],
[type="file"]::-webkit-file-upload-button {
    appearance: none;
    cursor: pointer;
}

input::placeholder,
textarea::placeholder {
    color: inherit;
    opacity: 0.75;
}

svg {
    overflow: visible;
}

label {
    display: block;
}

summary {
    display: block;
}

code,
kbd,
pre,
samp {
    font-family: inherit;
}

address,
cite,
dfn,
var {
    font-style: inherit;
}

small {
    font-size: inherit;
}

mark {
    color: inherit;
}

table {
    border-spacing: 0;
}

th {
    font-weight: inherit;
}

th:not([align]),
caption:not([align]) {
    text-align: inherit;
}

[hidden] {
    display: none !important;
}

:root {
    --spacing-0: 0rem;
    --spacing-px: 1px;
    --spacing-0-5: 2px;
    --spacing-1: 0.125rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-7: 1.75rem;
    --spacing-8: 2rem;
    --spacing-9: 2.25rem;
    --spacing-10: 2.5rem;
    --spacing-11: 2.75rem;
    --spacing-12: 3rem;
    --spacing-13: 3.25rem;
    --spacing-14: 3.5rem;
    --spacing-15: 3.75rem;
    --spacing-16: 4rem;
    --spacing-17: 4.25rem;
    --spacing-18: 4.5rem;
    --spacing-19: 4.75rem;
    --spacing-20: 5rem;
    --spacing-21: 5.25rem;
    --spacing-22: 5.5rem;
    --spacing-23: 5.75rem;
    --spacing-24: 6rem;
    --spacing-25: 6.25rem;
    --spacing-26: 6.5rem;
    --spacing-27: 6.75rem;
    --spacing-28: 7rem;
    --spacing-29: 7.25rem;
    --spacing-30: 7.5rem;
    --spacing-31: 7.75rem;
    --spacing-32: 8rem;
    --spacing-33: 8.25rem;
    --spacing-34: 8.5rem;
    --spacing-35: 8.75rem;
    --spacing-36: 9rem;
    --spacing-37: 9.25rem;
    --spacing-38: 9.5rem;
    --spacing-39: 9.75rem;
    --spacing-40: 10rem;
    --font-heading: "WebsiteMainFont";
    --background-default: #fff;
    --background-elevated: #fafafa;
    --text-disabled: #a4acb9ff;
    --text-loud: #000000;
    --text-muted: #36394aff;
    --text-normal: #36394A ;
    --font-xl: 2.25rem;
    --primary-color: #096df2;
    --primary-color-light: #c2dbfc;
    --transition-easeOutSin: cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-easeInQuart: cubic-bezier(0.5, 0, 0.75, 0);
    --divider-color: rgba(45, 45, 45, 0.2);
    --button-primary-background: #000;
    --button-primary-textColor: #fff;
    --button-secondary-textColor: var(--primary-color);
    --border-color-default: rgba(6, 17, 31, 0.1);
    --container-maxWidth: 80rem;
    --container-vertical-padding: var(--spacing-4);
    --container-horizontal-padding: var(--spacing-40);
    --copy-max-width: 42rem;
}

.container {
    --defaultPadding: 2.5rem;
    padding-block: var(--defaultPadding);
}

@media (min-width: 768px) {
    .container {
        --defaultPadding: 4.688rem;
    }
}

.container--no-top-padding {
    padding-block: 0 var(--defaultPadding);
}

.container--no-bottom-padding {
    padding-block: var(--defaultPadding) 0;
}

@font-face {
    font-family: 'WebsiteMainFont';
    font-weight: 125 950;
    font-stretch: 75% 125%;
    font-style: normal;
    font-display: swap;
    src: url('https://cdn.erply.com/files/533252/WebsiteMainFont.woff2') format('woff2-variations');
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hiddenScrollbar::-webkit-scrollbar {
    display: none;
}

.hiddenScrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hidden {
    display: none;
}

.flex {
    display: flex;
}

.space-x-default>*:not(:first-child) {
    margin-top: var(--spacing-4);
}

.divider-h {
    width: 1px;
    height: var(--spacing-6);
    background: rgba(45, 45, 45, 0.2);
    border: none;
}

.divider-v {
    width: var(--spacing-6);
    height: 1px;
    background: rgba(45, 45, 45, 0.2);
    border: none;
}

html {
    font-family: WebsiteMainFont;
    background-color: var(--background-default);
}

code {
    font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
        Bitstream Vera Sans Mono, Courier New, monospace;
}

.footer {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color-default);
}

.footer__wrapper {
    position: relative;
    z-index: 1;
    padding-top: 1.5rem;
}

@media (min-width: 768px) {
    .footer__wrapper {
        padding-top: 2.62rem;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
    }
}

.footer__decorations {
    display: block;
    top: 0;
    left: 0;
    position: absolute;
}

.footer__bottom {
    margin-top: 3.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    padding: 1.5rem;
    justify-content: center;
    align-items: flex-start;
    gap: 0.625rem;
    align-self: stretch;
    grid-column: span 12;
}

.footer__bottom__body {
    color: var(--text-normal);
    font-family: WebsiteMainFont;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.02625rem;
}

.footer__head {
    grid-column: 1 / span 3;
}

.footer__head__body {
    color: var(--text-normal);
    font-family: WebsiteMainFont;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.04375rem;
    margin-top: 1.62rem;
}

.footer__links {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(4rem, 10rem));
    row-gap: var(--spacing-10);
    column-gap: var(--spacing-4);
}

@media (min-width: 768px) {
    .footer__links {
        grid-column: 4 / span 12;
        justify-content: end;
        margin-top: 0rem;
    }
}

.footer__group__title {
    color: #000;
    font-family: WebsiteMainFont;
    font-size: 1.1875rem;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -0.03563rem;
    margin-bottom: 0.75rem;
}

.footer__group__item {
    color: var(--text-normal);
    font-family: WebsiteMainFont;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.02625rem;
}

.footer__group__item:not(:first-child) {
    margin-top: 0.25rem;
}

.footer__group__item:hover {
    color: var(--text-loud);
}




.caption {
    display: inline-block;
    padding-left: 0.75rem;
    color: var(--primary-color) !important;
    font-size: 1rem !important;
    font-style: normal !important;
    ;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.02rem;
    position: relative;
}

.caption:after {
    content: "";
    width: 3px;
    height: 100%;
    position: absolute;
    background: var(--primary-color);
    top: 0;
    left: 0;
}

.title {
    color: var(--text-loud);
    font-family: WebsiteMainFont;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -0.17188rem;
}

@media (min-width: 768px) {
    .title {
        font-size: 3.4375rem;
    }
}

.title--large {
    font-size: 3.4375rem;
}

.title--xlarge {
    font-size: 4.25rem;
}

@media (min-width: 1024px) {
    .title--xlarge {
        font-size: 5rem;
    }
}

.copy {
    max-width: var(--copy-max-width);
}

.copy>*:not(:first-child) {
    margin-top: var(--spacing-4);
}

.body {
    color: #36394A !important;
    font-family: WebsiteMainFont !important;
    font-size: 1rem !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 150% !important;
    letter-spacing: -0.03rem !important;
}

.body--large,
.body--xlarge {
    font-size: 1.275rem;
}

.copy--centered {
    margin-inline: auto;
    text-align: center;
}

.btn {
    display: inline-block;
    text-align: center;
    border-radius: 6.1875rem;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1rem;
}

.btn--medium {
    padding: 0.5rem 0.875rem;
}

.btn--large {
    padding: 0.625rem 1.25rem;
}

.btn--primary {
    background: var(--button-primary-background);
    color: var(--button-primary-textColor);
    transition: box-shadow 0.5s var(--transition-easeOutSin);
}

.btn--secondary {
    color: var(--button-secondary-textColor);
    padding-inline: 0rem;
    transition: box-shadow 0.5s var(--transition-easeOutSin);
}

.wrapper {
    max-width: var(--container-maxWidth);
    margin-inline: auto;
    padding-inline: var(--container-vertical-padding);
}

/* Content wrapper */
.content__wrapper {
    padding: 64px 20px;
}

.newsletter-align {
    display: flex;
    justify-content: normal;
    align-items: center;
}

.email-input {
    border-radius: 10px;
    height: 2.2rem;
    padding-left: .5rem;
    margin-right: .5rem;
    border: 1px solid black;
}

.button-align {
    display: flex;
    justify-content: center;
    align-items: center;
}

.article-typography {
    margin-top: var(--spacing-8);
    color: var(--text-muted, #36394a);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 1.5rem */
    letter-spacing: -0.02rem;
}

.article-typography ul {
    list-style: disc;
}

.article-typography ul,
.article-typography ol {
    list-style-position: inside;
}

.article-typography ul *:not(:first-child),
.article-typography ol *:not(:first-child) {
    margin-top: var(--spacing-2);
}

.article-typography h1,
.article-typography h2,
.article-typography h3,
.article-typography h4,
.article-typography h5,
.article-typography h6 {
    line-height: 120%;
    scroll-margin-top: 15vh;
    letter-spacing: -0.05rem;
    color: var(--text-loud);
}

@media (min-width: 1024px) {

    .article-typography h1,
    .article-typography h2,
    .article-typography h3,
    .article-typography h4,
    .article-typography h5,
    .article-typography h6 {
        scroll-margin-top: 50vh;
    }
}

.article-typography a {
    color: var(--primary-color);
    text-decoration: underline;
}

.article-typography *:not(:first-child) {
    margin-top: var(--spacing-4);
}

.gradientBorder:before {
    pointer-events: none;
    user-select: none;
    content: '';
    position: absolute;
    inset: 0px;
    padding: 1px;
    mask: linear-gradient(white, white) content-box,
        conic-gradient(from 180deg at 50% 50%, #000 90deg, #fff 163deg, #000 254deg);
    -webkit-mask:
        linear-gradient(white, white) content-box,
        conic-gradient(from 180deg at 50% 50%, #000 90deg, #fff 163deg, #000 254deg);
    -webkit-mask-composite: xor;
}


.txtBtn {
    margin-right: 1.5rem;
    margin-top: 1rem;
}

/* @media (max-width: 417px) {
    .btn--secondary {
        padding-inline: 1.3rem;
    }
} */


/* chatlio widget */

.chatlio-widget-body {
    bottom: 5rem !important;
    left: -19rem;
}

.chatlio-footer {
    padding: 4px 20px 20px 0px !important;
}

#chatlio-iframe {
    /* position: fixed; */
    right: 0;
    bottom: 0;
    z-index: 999;
}

/* @media only screen and (min-width: 900px) {
    #chatlio-iframe {
        height: 66%;
        width: 33%;
    }
}

@media only screen and (max-width: 900px) and (min-width: 551px) {
    #chatlio-iframe {
        height: 80%;
        width: 50%;
    }
}

@media screen and (max-width: 550px) {
    #chatlio-iframe {
        height: 100%;
        width: 100%;
    }
} */

.erplyNavLogo {
    font-size: 0;
}

.erply-icons-container {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
    padding: 0 2rem;
}

.erply-icons-left-container, .erply-icons-right-container {
    display: flex;
    gap: 2rem;
}

.erply-icon-title p {
    font-size: 10px;
    text-align: center;
}

.erply-icon-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 60px;
}


.dotted-list li {
    list-style-type: disc;
    margin-left: 1.5rem;
}

.footer__bottom_socialmedia img {
    height: 20px;
}

.footer__bottom_socialmedia a {
    display: flex;
    align-items: center;
}


.footer__bottom__empty, footer__bottom__body, .footer__bottom_socialmedia {
    flex: 1;
    display: flex;
}

.footer__bottom_socialmedia {
    justify-content: end;
    gap: 24px;
    
}

.footer__bottom__body {
    justify-content: center;
}

@media screen and (max-width: 843px) {
    .erply-icons-container {
        gap: 2rem;
    }

    .footer__bottom {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
    }

}

/* BLOG POSTS */

.contentBody html {
    width: 100%;
}

.contentBody body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contentBody input,
.contentBody select,
.contentBody textarea {
    width: 100%;
    border: 1px solid #999999;
    padding: 4px;
    border-radius: 4px 4px 4px 4px;
}

.contentBody .carousel-control-prev-icon {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23007bff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
    width: 40px;
    height: 40px;
}

.contentBody .carousel-control-next-icon {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23007bff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
    width: 40px;
    height: 40px;
}

@media (max-width: 768px) {
    .contentBody body {
        padding-left: 0;
        padding-right: 0;
    }
    .contentBody {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}

.contentBody table {
    border-spacing: 0.5rem;
    border-collapse: collapse;
}

.contentBody > ul, ol {
    list-style-type: disc;
    padding-left: 40px;
}

.contentBody h2, .contentBody h3, .contentBody h4, .contentBody h5, .contentBody h6 {
    margin-right: 4px;
    margin-top: 8px;
    margin-bottom: 4px;
}

.contentBody h6 {
    font-size: 1rem;
}

.contentBody h5 {
    font-size: 1.2rem;
}

.contentBody h4 {
    font-size: 1.4rem;
}


.contentBody h1 {
    margin: 8px;
}

.contentBody > a {
    color: #096df2;
    text-decoration: underline;
}

.contentBody > strong > a {
    color: #096df2;
    text-decoration: underline;
}

.contentBody > span > a {
    color: #096df2;
    text-decoration: underline;
}

.contentBody > h3 > a {
    color: #096df2;
    text-decoration: underline;
}

.contentBody > .moreBtn {
    color: #fff;
    text-decoration: none;
}

.contentBody a strong {
    color: #096df2;
    text-decoration: underline;
}

.contentBody u a {
    color: #096df2;
    text-decoration: underline;
}

.contentBody a:not(.app-btn) {
    color: #096df2;
    text-decoration: underline;
}

.contentBody {
    max-width: 1000px;
    margin: 2rem auto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -.02rem;
    margin-top: .5rem;
    margin-bottom: .5rem;
}

.contentBody .marginHere {
    margin-bottom: 6rem;
}

.contentBody th {
    font-weight: bold;
    padding: 0.25rem;
}

.contentBody td {
    padding: 0.4rem;
}

/* WordPress Core
-------------------------------------------------------------- */
.contentBody .alignnone {
    margin: 5px 20px 20px 0;
}

.contentBody .aligncenter,
.contentBody div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.contentBody .alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.contentBody .alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

.contentBody a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.contentBody a img.alignnone {
    margin: 5px 20px 20px 0;
}

.contentBody a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

.contentBody a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.contentBody .wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

.contentBody .wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.contentBody .wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.contentBody .wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.contentBody .wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.contentBody .wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.contentBody .screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.contentBody .screen-reader-text:focus {
    background-color: #eee;
    clip: auto !important;
    clip-path: none;
    color: #444;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}

.chatbox-checkbox {
    scale: 1.5;
    margin-top: 1rem;
}



 /* ---------------------- My added Wordpress equivalents -------------------------- */

.contentBody img.size-full {
    max-width: 100%;
    /* Make sure the image doesn't exceed its container */
    height: auto;
    /* Maintain the image's aspect ratio */
    /* Add any other styles you want to apply */
}


.contentBody btn-primary {
    background: #000;
    color: #fff;
    transition: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contentBody img {
    height: auto; 
    max-width: 100%; 
    max-height: 100%; 
    padding: 2rem;
}

 @media only screen and (max-width: 786px) {
    img {
        width: 100%;
        height: auto;
    }
}

.contentBody p {
    margin-top: 4px;
    margin-bottom: 4px;
}

.contentBody button:not(.dropbtn):not(.newsBtn) {
    display: inline-block;
    text-align: center;
    border-radius: 6.1875rem;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1rem;
    background: var(--button-primary-background);
    color: var(--button-primary-textColor);
    transition: box-shadow 0.5s var(--transition-easeOutSin);
    padding: 1rem;
}

.contentBody br {
    display: block;
    content: "";
    margin-top: 4px;
}

.contentBody tr {
    border-bottom: 1px solid #ddd;
}