@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes bounce {
    0% {
        transform: translate(-100%, -100vh);
    }

    50% {
        transform: translate(-100%, 0);
    }

    60% {
        transform: translate(-100%, -50px);
    }

    70% {
        transform: translate(-100%, 0);
    }

    80% {
        transform: translate(-100%, -10px);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-100%, 0) scale(1);
    }

    50% {
        transform: translate(-100%, 0) scale(1.1);
    }

    100% {
        transform: translate(-100%, 0) scale(1);
    }
}

* {
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: none;
    margin: 0;
    padding: 0;
}

select {
    -webkit-appearance: menulist;
}

input[type="radio"] {
    -webkit-appearance: radio;
}

input[type="checkbox"] {
    -webkit-appearance: checkbox;
}

button {
    cursor: pointer;
}

img {
    border: none;
}

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

input,
button,
textarea {
    border-radius: 0;
}

:root {
    margin: 0 !important;
}

body,
html {
    position: relative;
    overscroll-behavior-y: none;
}

body {
    /* background: #2c25f8; */
    background: linear-gradient(135deg, #6A11CB, #f825f1);
    color: #fff;
}

body,
select,
input,
button,
textarea {
    font-family: 'acumin-pro', sans-serif;
}

.image-wrapper {
    display: flex;
    position: relative;
}

.image-wrapper .image {
    object-fit: cover;
    width: 100%;
}

.wrap {
    max-width: 100%;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.nav-top {
    padding-top: 271px;
}

@media only screen and (max-width:1800px) {
    .nav-top {
        padding-top: 193px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .nav-top {
        padding-top: 158px;
    }
}

iframe[title='YouTube video player'] {
    width: 100%;
    aspect-ratio: 16/9;
    height: 100%;
}

.std-content {
    word-break: break-word;
}

.std-content h1 {
    font: 600 100px/120px 'albra', serif;
    color: #fff;
    margin-bottom: 54px;
}

@media only screen and (max-width:1800px) {
    .std-content h1 {
        font-size: 72px;
        line-height: 86px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .std-content h1 {
        font-size: 42px;
        line-height: 50px;
    }
}

.std-content h2 {
    font: 600 60px/72px 'albra', serif;
    color: #fff;
    margin-bottom: 81px;
}

@media only screen and (max-width:1800px) {
    .std-content h2 {
        font-size: 43px;
        line-height: 52px;
        margin-bottom: 54px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .std-content h2 {
        font-size: 38px;
        line-height: 45px;
        margin-bottom: 32px;
    }
}

.std-content h3 {
    font: 600 48px/58px 'albra', serif;
    color: #fff;
    margin-bottom: 36px;
}

@media only screen and (max-width:1800px) {
    .std-content h3 {
        font-size: 34px;
        line-height: 41px;
        margin-bottom: 26px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .std-content h3 {
        font-size: 33px;
        line-height: 40px;
        margin-bottom: 32px;
    }
}

.std-content h4 {
    font: 400 45px/63px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 36px;
}

@media only screen and (max-width:1800px) {
    .std-content h4 {
        font-size: 32px;
        line-height: 44px;
        margin-bottom: 26px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .std-content h4 {
        font-size: 30px;
        line-height: 42px;
    }
}

.std-content h5 {
    font: 700 36px/50px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 31px;
}

@media only screen and (max-width:1800px) {
    .std-content h5 {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .std-content h5 {
        font-size: 24px;
        line-height: 34px;
    }
}

.std-content h6 {
    font: 700 21px/29px 'acumin-pro', sans-serif;
    color: #fff;
}

@media only screen and (max-width:1800px) {
    .std-content h6 {
        font-size: 18px;
        line-height: 26px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .std-content h6 {
        font-size: 21px;
        line-height: 29px;
    }
}

.std-content .p--small {
    font: 400 24px/34px 'acumin-pro', sans-serif;
    color: #fff;
}

@media only screen and (max-width:1800px) {
    .std-content .p--small {
        font-size: 18px;
        line-height: 26px;
    }
}

.std-content .alignleft {
    clear: left;
    float: left;
    margin-right: 1.5em !important;
    margin-bottom: 1em;
}

.std-content .alignright {
    clear: right;
    float: right;
    margin-left: 1.5em !important;
    margin-bottom: 1em;
}

.std-content .aligncenter {
    text-align: center;
    clear: both;
}

.std-content img.aligncenter {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.std-content .alignnone {
    clear: both;
}

.std-content img {
    max-width: 100%;
    height: auto;
}

.std-content ul {
    list-style-type: none;
}

.std-content ul li {
    font: 400 24px/34px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 18px;
    position: relative;
}

@media only screen and (max-width:1800px) {
    .std-content ul li {
        font-size: 18px;
        line-height: 26px;
    }
}

.std-content ul li:before {
    content: '';
    position: absolute;
    width: 34px;
    height: 34px;
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    transform: translateX(-100%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2378e6c2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-right'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
}

@media only screen and (max-width:1800px) {
    .std-content ul li:before {
        width: 26px;
        height: 26px;
    }
}

.std-content ol {
    margin-left: 19px;
}

.std-content ol li {
    font: 400 24px/34px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 18px;
}

@media only screen and (max-width:1800px) {
    .std-content ol li {
        font-size: 18px;
        line-height: 26px;
    }
}

.std-content a {
    text-decoration: underline;
}

.std-content a:hover {
    color: #78e6c2;
}

.std-content p,
.std-content ol,
.std-content ul,
.std-content .wp-caption,
.std-content .iframe-container {
    margin-bottom: 0.9em;
}

.std-content p:last-child,
.std-content ol:last-child,
.std-content ul:last-child,
.std-content .wp-caption:last-child,
.std-content .iframe-container:last-child {
    margin-bottom: 0px;
}

.std-content p {
    font: 400 30px/42px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 54px;
}

@media only screen and (max-width:1800px) {
    .std-content p {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .std-content p {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 0.9rem;
    }
}

.iframe-container {
    width: 100%;
    position: relative;
}

.iframe-container:before {
    content: ' ';
    display: block;
    padding-top: 56.25%;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

body>header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 30px 20px;
    background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);


}

body>header .wrap {
    width: 1300px;
    display: flex;
}

@media (min-width:1800px) {
    body>header .wrap {
        width: 1730px;
    }
}

body>header .logo {
    margin-right: 73px;
    flex-grow: 0;
    flex-shrink: 0;
}

body>header .logo img {
    width: 175px;
    display: block;
    height: auto;
}

body>header nav {
    font-size: 18px;
    line-height: 1.444;
}

body>header nav ul,
body>header nav li {
    list-style: none;
}

body>header nav ul {
    display: flex;
}

body>header nav li {
    display: block;
}

body>header nav li:not(:last-child) {
    margin-right: 19px;
}

body>header nav a {
    position: relative;
}

body>header nav a:before {
    content: ' ';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 3px;
    opacity: 0.51;
    transition: 0.3s;
    background: #78e6c2;
}

body>header nav li.active>a:before,
body>header nav a:hover:before {
    width: 100%;
}

body>header nav.primary {
    margin-right: auto;
}

body>header nav.secondary {
    font-size: 16px;
    font-weight: 700;
}

@media (max-width:1750px),
(max-height:880px) {

    body>header nav,
    body>header nav.secondary {
        font-size: 13px;
    }

    body>header nav li:not(:last-child) {
        margin-right: 16px;
    }

    body>header .logo img {
        width: 125px;
    }
}

@media (max-width:980px) {
    body>header {
        top: 0;
        right: 0px;
        left: 0px;
        position: fixed;
        padding: 25px 15px 25px 24px;
    }

    body>header nav {
        display: none;
    }

    body>header .logo {
        margin-right: 0;
        margin-left: auto;
    }

    body>header .logo img {
        width: 138px;
    }
}

body>section {
    position: relative;
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

    

    z-index: 5;
}

body>section:after {
    content: ' ';
    position: absolute;
    z-index: 1;
    height: 1270px;
    left: 0;
    right: 0;
    bottom: 0;
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

}

button.mobile-nav {
    display: none;
}

@media (max-width:980px) {
    button.mobile-nav {
        display: block;
        font-size: 0;
        line-height: 0;
        border: none;
        background: transparent;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36px' height='28px' viewBox='0 0 36 28'%3E%3Cg%3E%3Cline x1='0' x2='36' y1='1' y2='1' fill='none' stroke='%23fff' stroke-width='2'/%3E%3Cline x1='0' x2='36' y1='14' y2='14' fill='none' stroke='%23fff' stroke-width='2'/%3E%3Cline x1='0' x2='36' y1='27' y2='27' fill='none' stroke='%23fff' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: top left;
        width: 36px;
        height: 28px;
        margin-top: 12px;
    }
}

#mobile-nav {
    display: none;
    position: fixed;
    z-index: 1000000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);
    transition: 0.5s ease;
    transform: translateX(-100%);
}

@media (min-width:981px) {
    #mobile-nav {
        display: none !important;
    }
}

#mobile-nav.open {
    transform: translateX(0);
}

#mobile-nav .mobile-nav-top {
    position: absolute;
    z-index: 11;
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

    height: 100px;
    top: 0;
    left: 0;
    right: 0;
}

#mobile-nav button.close {
    border: none;
    font-size: 0;
    line-height: 0;
    background: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36px' height='28px' viewBox='0 0 36 28'%3E%3Cg%3E%3Cline x1='9' x2='27' y1='6' y2='22' fill='none' stroke='%23fff' stroke-width='3'/%3E%3Cline x1='9' x2='27' y1='22' y2='6' fill='none' stroke='%23fff' stroke-width='3'/%3E%3C/g%3E%3C/svg%3E");
    background-position: top left;
    background-repeat: no-repeat;
    width: 36px;
    height: 28px;
    display: block;
    position: absolute;
    top: 36px;
    left: 25px;
}

#mobile-nav .client-login {
    font: 700 18px/1 'acumin-pro', sans-serif;
    position: absolute;
    top: 43px;
    right: 34px;
}

#mobile-nav ul,
#mobile-nav li {
    display: block;
    list-style: none;
}

#mobile-nav .mobile-nav-interior {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: scroll;
}

#mobile-nav .mobile-nav-interior nav {
    padding: 113px 39px 27px;
}

#mobile-nav .mobile-main,
#mobile-nav .get-started {
    font: 400 27px/1 'acumin-pro', sans-serif;
}

#mobile-nav .get-started {
    font-weight: 700;
}

#mobile-nav .get-started,
#mobile-nav .mobile-main li {
    margin-bottom: 26px;
}

#mobile-nav .mobile-main {
    margin-bottom: 40px;
}

#mobile-nav .mobile-secondary {
    font: 400 18px/1 'acumin-pro', sans-serif;
}

#mobile-nav .mobile-secondary li {
    margin-bottom: 32px;
}

#mobile-nav .mobile-info {
    margin-top: 80px;
    font: 400 18px / normal 'acumin-pro', sans-serif;
}

#mobile-nav .mobile-info address {
    font-style: normal;
}

#mobile-nav .mobile-info a {
    font-size: 14px;
}

#mobile-nav .mobile-info a[href^='tel:'] {
    font-size: 24px;
}

#mobile-nav .mobile-info ul {
    margin-top: 28px;
    display: flex;
}

#mobile-nav .mobile-info ul li {
    margin-right: 10px;
}

body>section>footer {
    position: relative;
    z-index: 6;
    padding: 0 20px;
    min-height: 222px;
    font: 400 13px/19px 'acumin-pro', sans-serif;
}

body>section>footer p {
    margin-bottom: 1em;
}

body>section>footer .wrap {
    width: 1240px;
    border-top: solid 2px #fff;
    padding-top: 50px;
}

body>section>footer address {
    display: block;
    font-style: normal;
}

body>section>footer ul,
body>section>footer li {
    list-style: none;
}

body>section>footer ul {
    display: flex;
}

body>section>footer li {
    display: block;
    margin-right: 14px;
}

body>section>footer a[href^='tel:'] {
    font-size: 18px;
}

body>section>footer a:hover {
    text-decoration: underline;
}

body>section>footer .footer-cols {
    display: flex;
    justify-content: space-between;
    gap: 120px;
}

body>section>footer .footer-contact p {
    margin-bottom: 0;
}

body>section>footer .footer-legal {
    margin-left: auto;
}

body>section>footer .footer-legal ul {
    margin-bottom: 1em;
}

@media (min-width:1800px) {
    body>section>footer {
        min-height: 320px;
        font-size: 18px;
        line-height: 26px;
    }

    body>section>footer .wrap {
        width: 1732px;
        padding-top: 70px;
    }

    body>section>footer a[href^='tel:'] {
        font-size: 24px;
    }

    body>section>footer .footer-cols {
        gap: 170px;
    }
}

@media (max-width:1020px) {
    body>section>footer .wrap {
        padding-top: 20px;
    }

    body>section>footer .footer-cols {
        gap: 20px;
        flex-wrap: wrap;
    }

    body>section>footer .footer-cols>div {
        width: 100%;
    }
}

@media (max-width:500px) {
    body>section>footer {
        min-height: 120px;
    }

    body>section>footer .wrap {
        padding-top: 27px;
    }

    body>section>footer .footer-menu,
    body>section>footer .footer-contact {
        display: none;
    }

    body>section>footer .footer-legal ul {
        display: none;
    }
}

body>section {
    min-height: calc(100vh - 320px);
}

#footer-expanded {
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    height: 320px;
    background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5); url('wp-content/uploads/2025/01/logo1.png') repeat-x top center;
}

#footer-expanded p {
    position: absolute;
    right: 19px;
    bottom: 24px;
    left: 27px;
    font: 400 12px/15px 'acumin-pro', sans-serif;
}

#footer-expanded a {
    text-decoration: underline;
}

@media (min-width:620px) {
    body>section {
        min-height: calc(100vh - 290px);
    }

    #footer-expanded {
        height: 290px;
    }
}

@media (min-width:820px) {
    body>section {
        min-height: calc(100vh - 266px);
    }

    #footer-expanded {
        height: 266px;
    }
}

@media (min-width:1300px) {
    body>section {
        min-height: calc(100vh - 256px);
    }

    #footer-expanded {
        height: 256px;
    }

    #footer-expanded p {
        width: 1247px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
}

@media (min-width:1800px) {
    #footer-expanded p {
        font-size: 16px;
        line-height: 22px;
        width: 1745px;
    }
}

.page-transition-circle {
    width: 20vw;
    height: 20vw;
    transition-duration: 1s;
    transition-property: transform;
    transition-timing-function: linear;
    position: fixed;
    z-index: 1000001;
    border-radius: 50%;
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

}

.page-transition-circle.out {
    transform: translate(-50%, -50%) scale(0.001);
}

body.do-page-transition-out .page-transition-circle.out {
    transform: translate(-50%, -50%) scale(2);
}

.page-transition-circle.in {
    transform: translate(-50%, -50%) scale(2);
}

body.do-page-transition-in .page-transition-circle.in {
    transform: translate(-50%, -50%) scale(0.001);
}

@media (max-width:780px) {
    .page-transition-circle {
        width: 35vw;
        height: 35vw;
    }
}

body.page-template-template-fees {
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

}

body.page-template-template-fees>section {
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

}

body.page-template-template-fees>section:after {
    pointer-events: none;
    background-image: none;
    z-index: -1;
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

    background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

}

body.page-template-template-fees #footer-expanded {
    background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

    background-repeat: repeat-x;
    background-size: cover;
    overflow: hidden;
    background-image: url('../images/timothy-footer-pattern-transparent.html');
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: left;
}

.Fees .wrap,
.About .wrap {
    padding-left: 28px;
    padding-right: 31px;
    max-width: 1500px;
    margin: 0 auto;
    box-sizing: content-box;
}

@media only screen and (max-width:1800px) {

    .Fees .wrap,
    .About .wrap {
        max-width: 1067px;
    }
}

.Fees .Hero,
.About .Hero {
    margin: 111px 0 523px;
}

@media only screen and (max-width:1800px) {

    .Fees .Hero,
    .About .Hero {
        margin: 91px 0 369px;
    }
}

@media only screen and (max-width:850px) and (max-width:850px) {

    .Fees .Hero,
    .About .Hero {
        margin: 0 0 60px 0;
    }
}

.Fees .Hero .Hero-wrapper,
.About .Hero .Hero-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 106px;
}

@media only screen and (max-width:1800px) {

    .Fees .Hero .Hero-wrapper,
    .About .Hero .Hero-wrapper {
        gap: 75px;
    }
}

@media only screen and (max-width:850px) and (max-width:850px) {

    .Fees .Hero .Hero-wrapper,
    .About .Hero .Hero-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
}

.Fees .Hero .Hero-wrapper .title,
.About .Hero .Hero-wrapper .title {
    font: 600 100px/120px 'albra', serif;
    color: #fff;
    margin-bottom: 54px;
    flex: 1 0 501px;
    margin-bottom: 0 !important;
}

@media only screen and (max-width:1800px) {

    .Fees .Hero .Hero-wrapper .title,
    .About .Hero .Hero-wrapper .title {
        font-size: 72px;
        line-height: 86px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {

    .Fees .Hero .Hero-wrapper .title,
    .About .Hero .Hero-wrapper .title {
        font-size: 42px;
        line-height: 50px;
    }
}

@media only screen and (max-width:1800px) {

    .Fees .Hero .Hero-wrapper .title,
    .About .Hero .Hero-wrapper .title {
        flex: 1 0 357px;
    }
}

@media only screen and (max-width:850px) and (max-width:850px) {

    .Fees .Hero .Hero-wrapper .title,
    .About .Hero .Hero-wrapper .title {
        flex: 1;
        text-align: center;
    }
}

.Fees .Hero .Hero-wrapper .divider-vert,
.About .Hero .Hero-wrapper .divider-vert {
    width: 5px;
    background-color: #78e6c2;
}

@media only screen and (max-width:850px) {

    .Fees .Hero .Hero-wrapper .divider-vert,
    .About .Hero .Hero-wrapper .divider-vert {
        background-color: #78e6c2;
        width: 209px;
        margin: 0 auto;
        height: 4px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {

    .Fees .Hero .Hero-wrapper .divider-vert,
    .About .Hero .Hero-wrapper .divider-vert {
        height: 3px;
    }
}

.Fees .Hero .Hero-wrapper .subtitle,
.About .Hero .Hero-wrapper .subtitle {
    align-self: center;
    flex: 1 1 auto;
}

.Fees .Hero .Hero-wrapper .subtitle h4,
.About .Hero .Hero-wrapper .subtitle h4 {
    margin-bottom: 40px;
}

@media only screen and (max-width:850px) {

    .Fees .Hero .Hero-wrapper .subtitle h4,
    .About .Hero .Hero-wrapper .subtitle h4 {
        margin-bottom: 17px;
    }
}

.Fees .Intro,
.About .Intro {
    margin-bottom: 155px;
}

@media only screen and (max-width:1800px) {

    .Fees .Intro,
    .About .Intro {
        margin-bottom: 128px;
    }
}

@media only screen and (max-width:850px) and (max-width:850px) {

    .Fees .Intro,
    .About .Intro {
        margin-bottom: 94px;
    }
}

.Fees .Intro>.wrap,
.About .Intro>.wrap {
    position: relative;
}

.Fees .Intro .divider,
.About .Intro .divider {
    border: 0;
    height: 5px;
    background-color: #78e6c2;
    width: 100%;
    margin: 0 auto;
    display: none;
}

@media only screen and (max-width:1800px) {

    .Fees .Intro .divider,
    .About .Intro .divider {
        height: 4px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {

    .Fees .Intro .divider,
    .About .Intro .divider {
        height: 3px;
    }
}

@media only screen and (max-width:850px) {

    .Fees .Intro .divider,
    .About .Intro .divider {
        display: block;
        margin-bottom: 60px;
    }
}

.Fees .Intro .Intro-wrapper,
.About .Intro .Intro-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: center;
}

@media only screen and (max-width:850px) {

    .Fees .Intro .Intro-wrapper,
    .About .Intro .Intro-wrapper {
        flex-direction: column;
    }
}

.Fees .Intro .Intro-wrapper .content,
.About .Intro .Intro-wrapper .content {
    max-width: 551px;
    flex: 1 1 39%;
}

@media only screen and (max-width:1800px) {

    .Fees .Intro .Intro-wrapper .content,
    .About .Intro .Intro-wrapper .content {
        max-width: 392px;
    }
}

@media only screen and (max-width:850px) and (max-width:850px) {

    .Fees .Intro .Intro-wrapper .content,
    .About .Intro .Intro-wrapper .content {
        max-width: 100%;
    }
}

.Fees .Intro .Intro-wrapper .video,
.About .Intro .Intro-wrapper .video {
    max-width: 838px;
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    flex: 1 1 52%;
}

.Fees .Intro .Intro-wrapper .video iframe,
.About .Intro .Intro-wrapper .video iframe {
    height: 100%;
    width: 100%;
}

.Fees .Levels .divider,
.About .Levels .divider {
    border: 0;
    height: 5px;
    background-color: #78e6c2;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 90px;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .divider,
    .About .Levels .divider {
        height: 4px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {

    .Fees .Levels .divider,
    .About .Levels .divider {
        height: 3px;
    }
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .divider,
    .About .Levels .divider {
        margin-bottom: 64px;
    }
}

@media only screen and (max-width:850px) and (max-width:850px) {

    .Fees .Levels .divider,
    .About .Levels .divider {
        margin-bottom: 37px;
    }
}

.Fees .Levels .intro,
.About .Levels .intro {
    width: 50%;
    margin: 0 0 159px auto;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .intro,
    .About .Levels .intro {
        margin: 0 0 97px auto;
    }
}

@media only screen and (max-width:850px) and (max-width:850px) {

    .Fees .Levels .intro,
    .About .Levels .intro {
        margin: 0 auto 69px auto;
        max-width: 430px;
        width: 100%;
    }
}

.Fees .Levels .intro h5,
.About .Levels .intro h5 {
    margin-bottom: 40px;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .intro h5,
    .About .Levels .intro h5 {
        margin-bottom: 29px;
    }
}

.Fees .Levels .Circles,
.About .Levels .Circles {
    overflow: hidden;
    margin-bottom: 109px;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles,
    .About .Levels .Circles {
        margin-bottom: 76px;
    }
}

.Fees .Levels .Circles .circles-wrapper,
.About .Levels .Circles .circles-wrapper {
    padding-left: 28px;
    padding-right: 31px;
    max-width: 1566px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 60px;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .circles-wrapper,
    .About .Levels .Circles .circles-wrapper {
        gap: 0 42px;
        max-width: 1120px;
    }
}

@media only screen and (max-width:1150px) and (max-width:1150px) {

    .Fees .Levels .Circles .circles-wrapper,
    .About .Levels .Circles .circles-wrapper {
        gap: 42px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) and (max-width:800px) {

    .Fees .Levels .Circles .circles-wrapper,
    .About .Levels .Circles .circles-wrapper {
        gap: 12px 7px;
    }
}

@media only screen and (max-width:700px) and (max-width:700px) and (max-width:700px) and (max-width:700px) {

    .Fees .Levels .Circles .circles-wrapper,
    .About .Levels .Circles .circles-wrapper {
        padding: 0 8px;
    }
}

.Fees .Levels .Circles .circles-wrapper .Level-circle,
.About .Levels .Circles .circles-wrapper .Level-circle {
    width: calc((100% / 3) - 40px);
    width: 462px;
    background-color: #fff;
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .circles-wrapper .Level-circle,
    .About .Levels .Circles .circles-wrapper .Level-circle {
        width: 328px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {

    .Fees .Levels .Circles .circles-wrapper .Level-circle,
    .About .Levels .Circles .circles-wrapper .Level-circle {
        width: 275px;
    }
}

@media only screen and (max-width:550px) and (max-width:550px) and (max-width:550px) {

    .Fees .Levels .Circles .circles-wrapper .Level-circle,
    .About .Levels .Circles .circles-wrapper .Level-circle {
        width: 100%;
        max-width: 275px;
    }
}

.Fees .Levels .Circles .circles-wrapper .Level-circle .fee-circle,
.About .Levels .Circles .circles-wrapper .Level-circle .fee-circle {
    width: 100%;
    height: 100%;
}

.Fees .Levels .Circles .circles-wrapper .Level-circle>a,
.About .Levels .Circles .circles-wrapper .Level-circle>a {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Fees .Levels .Circles .circles-wrapper .Level-circle__inner,
.About .Levels .Circles .circles-wrapper .Level-circle__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    text-align: center;
    width: 81%;
    aspect-ratio: 1;
    background-color: #fff;
    border-radius: 50%;
    padding-top: 44px;
    box-sizing: border-box;
    padding: 44px 40px 0;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .circles-wrapper .Level-circle__inner,
    .About .Levels .Circles .circles-wrapper .Level-circle__inner {
        padding-top: 29px;
        padding: 29px 25px 0;
    }
}

.Fees .Levels .Circles .circles-wrapper .Level-circle__inner .complexity,
.About .Levels .Circles .circles-wrapper .Level-circle__inner .complexity {
    font: 700 16px/22px 'acumin-pro', sans-serif;
    color: #3d7485;
    margin-bottom: 55px;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .circles-wrapper .Level-circle__inner .complexity,
    .About .Levels .Circles .circles-wrapper .Level-circle__inner .complexity {
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 40px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {

    .Fees .Levels .Circles .circles-wrapper .Level-circle__inner .complexity,
    .About .Levels .Circles .circles-wrapper .Level-circle__inner .complexity {
        margin-bottom: 15px;
        max-width: 97px;
    }
}

.Fees .Levels .Circles .circles-wrapper .Level-circle__inner .level,
.About .Levels .Circles .circles-wrapper .Level-circle__inner .level {
    font: 700 36px/50px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 31px;
    font-weight: 400;
    color: #030448;
    margin-bottom: 35px;
    position: relative;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .circles-wrapper .Level-circle__inner .level,
    .About .Levels .Circles .circles-wrapper .Level-circle__inner .level {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {

    .Fees .Levels .Circles .circles-wrapper .Level-circle__inner .level,
    .About .Levels .Circles .circles-wrapper .Level-circle__inner .level {
        font-size: 24px;
        line-height: 34px;
    }
}

.Fees .Levels .Circles .circles-wrapper .Level-circle__inner .level:before,
.About .Levels .Circles .circles-wrapper .Level-circle__inner .level:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 3px;
    background-color: #78e6c2;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .circles-wrapper .Level-circle__inner .level,
    .About .Levels .Circles .circles-wrapper .Level-circle__inner .level {
        margin-bottom: 24px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {

    .Fees .Levels .Circles .circles-wrapper .Level-circle__inner .level,
    .About .Levels .Circles .circles-wrapper .Level-circle__inner .level {
        margin-bottom: 11px;
    }

    .Fees .Levels .Circles .circles-wrapper .Level-circle__inner .level:before,
    .About .Levels .Circles .circles-wrapper .Level-circle__inner .level:before {
        bottom: -5px;
    }
}

.Fees .Levels .Circles .circles-wrapper .Level-circle__inner .cost,
.About .Levels .Circles .circles-wrapper .Level-circle__inner .cost {
    font: 400 30px/42px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 54px;
    font-weight: 700;
    color: #030448;
    margin-bottom: 9px !important;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .circles-wrapper .Level-circle__inner .cost,
    .About .Levels .Circles .circles-wrapper .Level-circle__inner .cost {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {

    .Fees .Levels .Circles .circles-wrapper .Level-circle__inner .cost,
    .About .Levels .Circles .circles-wrapper .Level-circle__inner .cost {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 0.9rem;
    }
}

@media only screen and (max-width:800px) {

    .Fees .Levels .Circles .circles-wrapper .Level-circle__inner .cost,
    .About .Levels .Circles .circles-wrapper .Level-circle__inner .cost {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 7px !important;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {

    .Fees .Levels .Circles .circles-wrapper .Level-circle__inner .cost,
    .About .Levels .Circles .circles-wrapper .Level-circle__inner .cost {
        margin-bottom: 5px !important;
    }
}

.Fees .Levels .Circles .circles-wrapper .Level-circle__inner .rate,
.About .Levels .Circles .circles-wrapper .Level-circle__inner .rate {
    font: 400 16px/22px 'acumin-pro', sans-serif;
    color: #030448;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .circles-wrapper .Level-circle__inner .rate,
    .About .Levels .Circles .circles-wrapper .Level-circle__inner .rate {
        font-size: 12px;
        line-height: 15px;
    }
}

.Fees .Levels .Circles .circles-wrapper .Level-circle__inner .hours,
.About .Levels .Circles .circles-wrapper .Level-circle__inner .hours {
    font: 400 24px/34px 'acumin-pro', sans-serif;
    color: #fff;
    color: #030448;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .circles-wrapper .Level-circle__inner .hours,
    .About .Levels .Circles .circles-wrapper .Level-circle__inner .hours {
        font-size: 18px;
        line-height: 26px;
    }
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .circles-wrapper .Level-circle__inner .hours,
    .About .Levels .Circles .circles-wrapper .Level-circle__inner .hours {
        font-size: 18px;
        line-height: 23px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {

    .Fees .Levels .Circles .circles-wrapper .Level-circle__inner .hours,
    .About .Levels .Circles .circles-wrapper .Level-circle__inner .hours {
        font-size: 12px;
        line-height: 15px;
    }
}

.Fees .Levels .Circles .Level-popup,
.About .Levels .Circles .Level-popup {
    margin-bottom: 193px;
    display: none;
}

.Fees .Levels .Circles .Level-popup__wrapper,
.About .Levels .Circles .Level-popup__wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 1674px;
    display: flex;
    flex-direction: column;
    gap: 96px;
    padding-left: 28px;
    padding-right: 31px;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .Level-popup__wrapper,
    .About .Levels .Circles .Level-popup__wrapper {
        max-width: 1185px;
    }
}

@media only screen and (max-width:1130px) and (max-width:1130px) {

    .Fees .Levels .Circles .Level-popup__wrapper,
    .About .Levels .Circles .Level-popup__wrapper {
        padding: 0;
        gap: 100px;
    }
}

.Fees .Levels .Circles .Level-popup__wrapper .top-wrapper,
.About .Levels .Circles .Level-popup__wrapper .top-wrapper {
    position: relative;
}

.Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border,
.About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border {
    background-color: #78e6c2;
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 620px;
    position: relative;
}

.Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border[data-circle='One'],
.About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border[data-circle='One'] {
    background-image: conic-gradient(from 0turn, #fff, #fff 0.07turn, #6873f8 0.2turn, #6873f8);
}

.Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border[data-circle='Two'],
.About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border[data-circle='Two'] {
    background-image: conic-gradient(from 0turn, #fff, #fff 0.28turn, #6873f8 0.4turn, #6873f8);
}

.Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border[data-circle='Three'],
.About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border[data-circle='Three'] {
    background-image: conic-gradient(from 0turn, #fff, #fff 0.49turn, #6873f8 0.6turn, #6873f8);
}

.Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border[data-circle='Four'],
.About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border[data-circle='Four'] {
    background-image: conic-gradient(from 0turn, #fff, #fff 0.56turn, #6873f8 0.8turn, #6873f8);
}

.Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border[data-circle='Five'],
.About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border[data-circle='Five'] {
    background-color: #fff;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border,
    .About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border {
        width: 439px;
    }
}

@media only screen and (max-width:1130px) and (max-width:1130px) {

    .Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border,
    .About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border {
        margin: 0 auto;
        align-self: center;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) and (max-width:800px) {

    .Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border,
    .About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border {
        width: 338px;
    }
}

.Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .circle-inner-circle,
.About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .circle-inner-circle {
    background-color: #6873f8;
    width: 81%;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    aspect-ratio: 1;
    padding-top: 29px;
    align-items: center;
    box-sizing: border-box;
}

@media only screen and (max-width:800px) {

    .Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .circle-inner-circle,
    .About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .circle-inner-circle {
        padding-top: 15px;
    }
}

.Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .close-button,
.About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .close-button {
    position: absolute;
    left: 62px;
    top: 51px;
    border: none;
    background-color: #fff;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    box-shadow: 0 0 4px 5px rgba(0, 0, 0, 0.1);
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236873f8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-x'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .close-button,
    .About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .close-button {
        top: 36px;
        left: 43px;
        width: 48px;
        height: 48px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {

    .Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .close-button,
    .About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .close-button {
        width: 44px;
        height: 44px;
        top: 32px;
        left: 18px;
    }
}

.Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .complexity,
.About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .complexity {
    font: 700 16px/22px 'acumin-pro', sans-serif;
    margin-bottom: 107px;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .complexity,
    .About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .complexity {
        margin-bottom: 78px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {

    .Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .complexity,
    .About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .complexity {
        margin-bottom: 18px;
        max-width: 97px;
        font-size: 12px;
        line-height: 15px;
    }
}

.Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .level,
.About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .level {
    font: 600 60px/72px 'albra', serif;
    color: #fff;
    margin-bottom: 81px;
    font-weight: 400;
    margin-bottom: 50px;
    position: relative;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .level,
    .About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .level {
        font-size: 43px;
        line-height: 52px;
        margin-bottom: 54px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {

    .Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .level,
    .About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .level {
        font-size: 38px;
        line-height: 45px;
        margin-bottom: 32px;
    }
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .level,
    .About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .level {
        margin-bottom: 34px;
    }
}

.Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .level:before,
.About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .level:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -17.5px;
    height: 3px;
    background-color: #fff;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .level:before,
    .About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .level:before {
        bottom: -12.5px;
    }
}

.Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .cost,
.About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .cost {
    font: 400 45px/63px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 36px;
    margin-bottom: 5px !important;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .cost,
    .About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .cost {
        font-size: 32px;
        line-height: 44px;
        margin-bottom: 26px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {

    .Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .cost,
    .About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .cost {
        font-size: 30px;
        line-height: 42px;
    }
}

.Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .rate,
.About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .rate {
    font: 400 16px/22px 'acumin-pro', sans-serif;
}

@media only screen and (max-width:800px) {

    .Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .rate,
    .About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .rate {
        font-size: 14px;
    }
}

.Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .hours,
.About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .hours {
    font: 400 24px/34px 'acumin-pro', sans-serif;
    color: #fff;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .hours,
    .About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .hours {
        font-size: 18px;
        line-height: 26px;
    }
}

@media only screen and (max-width:800px) {

    .Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .hours,
    .About .Levels .Circles .Level-popup__wrapper .top-wrapper .circle-border .hours {
        font-size: 16px;
    }
}

.Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .video,
.About .Levels .Circles .Level-popup__wrapper .top-wrapper .video {
    max-width: 1101px;
    aspect-ratio: 16 / 9;
    width: 100%;
    position: absolute;
    right: 31px;
    top: 197px;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .video,
    .About .Levels .Circles .Level-popup__wrapper .top-wrapper .video {
        top: 140px;
        max-width: 780px;
    }
}

@media only screen and (max-width:1250px) and (max-width:1250px) {

    .Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .video,
    .About .Levels .Circles .Level-popup__wrapper .top-wrapper .video {
        max-width: 700px;
        right: 0;
    }
}

@media only screen and (max-width:1130px) and (max-width:1130px) {

    .Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .video,
    .About .Levels .Circles .Level-popup__wrapper .top-wrapper .video {
        top: unset;
        bottom: 14px;
        right: unset;
        position: relative;
        max-width: 100%;
        margin-left: 26px;
        margin-right: 11px;
        width: auto;
    }
}

.Fees .Levels .Circles .Level-popup__wrapper .top-wrapper .video iframe,
.About .Levels .Circles .Level-popup__wrapper .top-wrapper .video iframe {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.Fees .Levels .Circles .Level-popup__wrapper .bottom-wrapper,
.About .Levels .Circles .Level-popup__wrapper .bottom-wrapper {
    display: flex;
    gap: 44px;
    justify-content: flex-end;
}

@media only screen and (max-width:1130px) {

    .Fees .Levels .Circles .Level-popup__wrapper .bottom-wrapper,
    .About .Levels .Circles .Level-popup__wrapper .bottom-wrapper {
        flex-direction: column;
    }
}

.Fees .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List,
.About .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List {
    position: relative;
}

.Fees .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .cat-fit,
.About .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .cat-fit {
    position: absolute;
    left: 0;
    top: 133px;
    background-color: #78e6c2;
    border-radius: 50%;
    width: 344px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-70%);
    z-index: 1;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .cat-fit,
    .About .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .cat-fit {
        width: 243px;
        top: 94px;
    }
}

@media only screen and (max-width:1130px) and (max-width:1130px) {

    .Fees .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .cat-fit,
    .About .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .cat-fit {
        top: 0;
        width: 191px;
        transform: translate(25%, 25%);
        left: -10px;
        top: -120px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) and (max-width:800px) {

    .Fees .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .cat-fit,
    .About .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .cat-fit {
        transform: translate(35%, 30%);
    }
}

@media only screen and (max-width:600px) and (max-width:600px) and (max-width:600px) and (max-width:600px) {

    .Fees .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .cat-fit,
    .About .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .cat-fit {
        transform: translate(0, 0);
    }
}

.Fees .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .cat-fit p,
.About .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .cat-fit p {
    font: 400 42px/50px 'albra', serif;
    padding: 50px;
    color: #030448;
    text-align: center;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .cat-fit p,
    .About .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .cat-fit p {
        padding: 35px;
        font-size: 30px;
        line-height: 36px;
    }
}

@media only screen and (max-width:1130px) and (max-width:1130px) {

    .Fees .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .cat-fit p,
    .About .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .cat-fit p {
        font-size: 27px;
        line-height: 32px;
        padding: 20px;
    }
}

.Fees .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .bullets,
.About .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .bullets {
    width: 871px;
    aspect-ratio: 1;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 108px 0 159px;
    box-sizing: border-box;
    position: relative;
}

.Fees .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .bullets:before,
.About .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .bullets:before {
    content: '';
    display: none;
    width: 676px;
    height: 676px;
    background-color: #fff;
    position: absolute;
    z-index: -1;
    border-radius: 50%;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .bullets,
    .About .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .bullets {
        width: 616px;
        padding: 0 76px 0 112px;
    }
}

@media only screen and (max-width:1130px) and (max-width:1130px) {

    .Fees .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .bullets,
    .About .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .bullets {
        width: 100%;
        max-width: 676px;
        margin: 0 auto;
        padding: 0 29px 0 41px;
        background-color: unset;
    }

    .Fees .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .bullets:before,
    .About .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .bullets:before {
        display: block;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) and (max-width:800px) {

    .Fees .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .bullets,
    .About .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .bullets {
        padding: 100px 29px 0 41px;
    }
}

.Fees .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .bullets ul,
.About .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .bullets ul {
    max-width: 604px;
}

@media only screen and (max-width:1130px) {

    .Fees .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .bullets ul,
    .About .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .bullets ul {
        max-width: 400px;
    }
}

.Fees .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .bullets ul li,
.About .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .bullets ul li {
    font: 400 24px/34px 'acumin-pro', sans-serif;
    color: #fff;
    color: #030448;
    margin-bottom: 10px;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .bullets ul li,
    .About .Levels .Circles .Level-popup__wrapper .bottom-wrapper .List .bullets ul li {
        font-size: 18px;
        line-height: 26px;
    }
}

.Fees .Levels .Circles .Level-popup__wrapper .bottom-wrapper .content,
.About .Levels .Circles .Level-popup__wrapper .bottom-wrapper .content {
    flex: 0 1 401px;
    margin-top: 210px;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .Level-popup__wrapper .bottom-wrapper .content,
    .About .Levels .Circles .Level-popup__wrapper .bottom-wrapper .content {
        flex: 0 1 284px;
        margin-top: 126px;
    }
}

@media only screen and (max-width:1130px) and (max-width:1130px) {

    .Fees .Levels .Circles .Level-popup__wrapper .bottom-wrapper .content,
    .About .Levels .Circles .Level-popup__wrapper .bottom-wrapper .content {
        padding: 0 36px 0 42px;
    }
}

.Fees .Levels .Circles .Level-popup__wrapper .bottom-wrapper .content .content-wrapper,
.About .Levels .Circles .Level-popup__wrapper .bottom-wrapper .content .content-wrapper {
    margin-bottom: 47px;
}

.Fees .Levels .Circles .Level-popup__wrapper .bottom-wrapper .content .level-filter,
.About .Levels .Circles .Level-popup__wrapper .bottom-wrapper .content .level-filter {
    font: 400 24px/34px 'acumin-pro', sans-serif;
    color: #fff;
    color: #78e6c2;
    text-decoration: underline;
    max-width: 278px;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .Level-popup__wrapper .bottom-wrapper .content .level-filter,
    .About .Levels .Circles .Level-popup__wrapper .bottom-wrapper .content .level-filter {
        font-size: 18px;
        line-height: 26px;
    }
}

.Fees .Levels .Circles .Levels-preview,
.About .Levels .Circles .Levels-preview {
    display: none;
}

.Fees .Levels .Circles .Levels-preview .wrap,
.About .Levels .Circles .Levels-preview .wrap {
    display: flex;
    gap: 98px;
    flex-wrap: wrap;
    justify-content: center;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .Levels-preview .wrap,
    .About .Levels .Circles .Levels-preview .wrap {
        gap: 66px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {

    .Fees .Levels .Circles .Levels-preview .wrap,
    .About .Levels .Circles .Levels-preview .wrap {
        gap: 19px 13px;
        padding: 0 8px;
    }
}

.Fees .Levels .Circles .Levels-preview .wrap .preview,
.About .Levels .Circles .Levels-preview .wrap .preview {
    width: calc(25% - 98px * 3 / 4);
    border-radius: 50%;
    aspect-ratio: 1;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.Fees .Levels .Circles .Levels-preview .wrap .preview[data-level='One'],
.About .Levels .Circles .Levels-preview .wrap .preview[data-level='One'] {
    background: url('../images/Level-1.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.Fees .Levels .Circles .Levels-preview .wrap .preview[data-level='Two'],
.About .Levels .Circles .Levels-preview .wrap .preview[data-level='Two'] {
    background: url('../images/Level-2.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.Fees .Levels .Circles .Levels-preview .wrap .preview[data-level='Three'],
.About .Levels .Circles .Levels-preview .wrap .preview[data-level='Three'] {
    background: url('../images/Level-3.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.Fees .Levels .Circles .Levels-preview .wrap .preview[data-level='Four'],
.About .Levels .Circles .Levels-preview .wrap .preview[data-level='Four'] {
    background: url('../images/Level-4.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.Fees .Levels .Circles .Levels-preview .wrap .preview[data-level='Five'],
.About .Levels .Circles .Levels-preview .wrap .preview[data-level='Five'] {
    background: url('../images/Level-5.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .Levels-preview .wrap .preview,
    .About .Levels .Circles .Levels-preview .wrap .preview {
        width: calc(25% - 66px * 3 / 4);
    }
}

@media only screen and (max-width:1130px) and (max-width:1130px) {

    .Fees .Levels .Circles .Levels-preview .wrap .preview,
    .About .Levels .Circles .Levels-preview .wrap .preview {
        width: calc(50% - 66px);
        max-width: 308px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) and (max-width:800px) {

    .Fees .Levels .Circles .Levels-preview .wrap .preview,
    .About .Levels .Circles .Levels-preview .wrap .preview {
        width: calc(50% - 13px);
    }
}

.Fees .Levels .Circles .Levels-preview .wrap .preview .preview-inner-circle,
.About .Levels .Circles .Levels-preview .wrap .preview .preview-inner-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 50%;
    aspect-ratio: 1;
    width: 73%;
    background-color: #030448;
}

.Fees .Levels .Circles .Levels-preview .wrap .preview .level,
.About .Levels .Circles .Levels-preview .wrap .preview .level {
    font: 700 36px/50px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 31px;
    font-weight: 400;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Circles .Levels-preview .wrap .preview .level,
    .About .Levels .Circles .Levels-preview .wrap .preview .level {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {

    .Fees .Levels .Circles .Levels-preview .wrap .preview .level,
    .About .Levels .Circles .Levels-preview .wrap .preview .level {
        font-size: 24px;
        line-height: 34px;
    }
}

.Fees .Levels .Circles .Levels-preview .wrap .preview .link,
.About .Levels .Circles .Levels-preview .wrap .preview .link {
    font: 400 16px/22px 'acumin-pro', sans-serif;
}

.Fees .Levels .additional-content,
.About .Levels .additional-content {
    margin-bottom: 109px;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .additional-content,
    .About .Levels .additional-content {
        margin-bottom: 76px;
    }
}

.Fees .Levels .Levels-footer .wrap,
.About .Levels .Levels-footer .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 64px;
}

.Fees .Levels .Levels-footer .wrap .link,
.About .Levels .Levels-footer .wrap .link {
    font: 400 24px/34px 'acumin-pro', sans-serif;
    color: #fff;
    text-decoration: underline;
    max-width: 338px;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Levels-footer .wrap .link,
    .About .Levels .Levels-footer .wrap .link {
        font-size: 18px;
        line-height: 26px;
    }
}

.Fees .Levels .Levels-footer .wrap .button-wrapper .button,
.About .Levels .Levels-footer .wrap .button-wrapper .button {
    font-weight: 700;
    background: #78e6c2;
    background: linear-gradient(270deg, #78e6c2 0%, #6873f8 100%);
    border: 0;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 36px 59px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    text-decoration: none;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Levels-footer .wrap .button-wrapper .button,
    .About .Levels .Levels-footer .wrap .button-wrapper .button {
        padding: 21px 45px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {

    .Fees .Levels .Levels-footer .wrap .button-wrapper .button,
    .About .Levels .Levels-footer .wrap .button-wrapper .button {
        padding: 23px 13px;
    }
}

.Fees .Levels .Levels-footer .wrap .button-wrapper .button:hover:before,
.About .Levels .Levels-footer .wrap .button-wrapper .button:hover:before {
    transform: translateX(0);
}

.Fees .Levels .Levels-footer .wrap .button-wrapper .button:after,
.About .Levels .Levels-footer .wrap .button-wrapper .button:after {
    content: attr(data-text);
    font: 400 30px/42px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 54px;
    margin-bottom: 0;
    font-weight: 700;
    z-index: 1;
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Levels-footer .wrap .button-wrapper .button:after,
    .About .Levels .Levels-footer .wrap .button-wrapper .button:after {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {

    .Fees .Levels .Levels-footer .wrap .button-wrapper .button:after,
    .About .Levels .Levels-footer .wrap .button-wrapper .button:after {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 0.9rem;
    }
}

@media only screen and (max-width:1800px) {

    .Fees .Levels .Levels-footer .wrap .button-wrapper .button:after,
    .About .Levels .Levels-footer .wrap .button-wrapper .button:after {
        margin-bottom: 0;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {

    .Fees .Levels .Levels-footer .wrap .button-wrapper .button:after,
    .About .Levels .Levels-footer .wrap .button-wrapper .button:after {
        margin-bottom: 0;
    }
}

.Fees .Levels .Levels-footer .wrap .button-wrapper .button:before,
.About .Levels .Levels-footer .wrap .button-wrapper .button:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #6873f8;
    transform: translateX(-100%);
    transition: all 350ms ease-in-out;
}

@media only screen and (max-width:800px) {

    .Fees .Levels .Levels-footer .wrap .button-wrapper--desktop,
    .About .Levels .Levels-footer .wrap .button-wrapper--desktop {
        display: none;
    }
}

.Fees .Levels .Levels-footer .wrap .button-wrapper--mobile,
.About .Levels .Levels-footer .wrap .button-wrapper--mobile {
    display: none;
    text-align: center;
    padding: 0 17px;
}

@media only screen and (max-width:800px) {

    .Fees .Levels .Levels-footer .wrap .button-wrapper--mobile,
    .About .Levels .Levels-footer .wrap .button-wrapper--mobile {
        display: block;
    }
}

body.page-template-template-about {
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);
;
}

body.page-template-template-about>section {
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

}

body.page-template-template-about>section:after {
    pointer-events: none;
    background-image: none;
    z-index: -1;
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

    background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

}

body.page-template-template-about #footer-expanded {
    background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

    background-repeat: repeat-x;
    background-size: cover;
    overflow: hidden;
    background-image: url('../images/timothy-footer-pattern-transparent.html');
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: left;
}

.About .Started .wrap {
    padding-left: 28px;
    padding-right: 31px;
    max-width: 1500px;
    margin: 0 auto;
    box-sizing: content-box;
    text-align: center;
}

@media only screen and (max-width:1800px) {
    .About .Started .wrap {
        max-width: 1067px;
    }
}

.About .Started .wrap .link {
    font-weight: 700;
    background: #78e6c2;
    background: linear-gradient(270deg, #78e6c2 0%, #6873f8 100%);
    border: 0;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 36px 59px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    text-decoration: none;
    margin-bottom: 100px;
}

@media only screen and (max-width:1800px) {
    .About .Started .wrap .link {
        padding: 21px 45px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .About .Started .wrap .link {
        padding: 23px 13px;
    }
}

.About .Started .wrap .link:hover:before {
    transform: translateX(0);
}

.About .Started .wrap .link:after {
    content: attr(data-text);
    font: 400 30px/42px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 54px;
    margin-bottom: 0;
    font-weight: 700;
    z-index: 1;
}

@media only screen and (max-width:1800px) {
    .About .Started .wrap .link:after {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .About .Started .wrap .link:after {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 0.9rem;
    }
}

@media only screen and (max-width:1800px) {
    .About .Started .wrap .link:after {
        margin-bottom: 0;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .About .Started .wrap .link:after {
        margin-bottom: 0;
    }
}

.About .Started .wrap .link:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #6873f8;
    transform: translateX(-100%);
    transition: all 350ms ease-in-out;
}

body.page-template-template-services {
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);
;
}

body.page-template-template-services>section {
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

}

body.page-template-template-services>section:after {
    pointer-events: none;
    background-image: none;
    z-index: -1;
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

    background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

}

body.page-template-template-services #footer-expanded {
    background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

    background-repeat: repeat-x;
    background-size: cover;
    overflow: hidden;
    background-image: url('../images/timothy-footer-pattern-transparent.html');
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: left;
}

.Services .Chart .wrap {
    max-width: 964px;
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 31px;
    box-sizing: content-box;
}

@media only screen and (max-width:1800px) {
    .Services .Chart .wrap {
        max-width: 657px;
    }
}

.Services .Chart .wrap .table-container {
    width: 100%;
    margin-top: 30px;
}

@media only screen and (max-width:800px) {
    .Services .Chart .wrap .table-container {
        overflow-x: scroll;
        width: auto;
    }
}

.Services .Chart .wrap .table-container .services-table {
    width: 100%;
}

.Services .Chart .wrap .table-container .services-table td {
    padding: 2px 15px;
}

.Services .Chart .wrap .table-container .services-table td.level {
    text-align: center;
    width: auto;
}

.Services .Chart .wrap .table-container .services-table td .checkmark {
    display: inline-block;
    width: 21px;
    height: 21px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' id='Layer_1' x='0px' y='0px' width='92px' height='92px' viewBox='0 0 92 92' enable-background='new 0 0 92 92' xml:space='preserve'%3E%3Cpath id='XMLID_712_' d='M34.4,72c-1.2,0-2.3-0.4-3.2-1.3L11.3,50.8c-1.8-1.8-1.8-4.6,0-6.4c1.8-1.8,4.6-1.8,6.4,0l16.8,16.7 l39.9-39.8c1.8-1.8,4.6-1.8,6.4,0c1.8,1.8,1.8,4.6,0,6.4l-43.1,43C36.7,71.6,35.6,72,34.4,72z' fill='%23fff'/%3E%3C/svg%3E");
}

.Services .Chart .wrap .table-container .services-table th {
    padding: 2px 15px;
}

.Services .Chart .wrap .table-container .services-table th.category {
    text-align: right;
    max-width: 225px;
}

.Services .Chart .wrap .table-container .services-table th.category h3 {
    text-align: left;
    color: #fff;
    padding-top: 30px;
}

.Services .Chart .wrap .table-container .services-table th.level {
    text-align: center;
    width: auto;
    height: 70px;
}

.Services .Chart .wrap .table-container .services-table th.level h4 {
    color: #fff;
    font-size: 36px;
    font-weight: 400 !important;
    line-height: 0.4;
    text-transform: uppercase;
    padding-top: 0;
}

.Services .Chart .wrap .table-container .services-table th#level1:before,
.Services .Chart .wrap .table-container .services-table th#level2:before,
.Services .Chart .wrap .table-container .services-table th#level3:before,
.Services .Chart .wrap .table-container .services-table th#level4:before,
.Services .Chart .wrap .table-container .services-table th#level5:before {
    color: #fff;
    content: 'LEVEL';
    font-size: 13px;
    padding-top: 40px;
}

.Services .Estimate .wrap {
    padding-left: 28px;
    padding-right: 31px;
    max-width: 1500px;
    margin: 0 auto;
    box-sizing: content-box;
    text-align: center;
}

@media only screen and (max-width:1800px) {
    .Services .Estimate .wrap {
        max-width: 1067px;
    }
}

.Services .Estimate .wrap .link {
    font-weight: 700;
    background: #78e6c2;
    background: linear-gradient(270deg, #78e6c2 0%, #6873f8 100%);
    border: 0;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 36px 59px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    text-decoration: none;
    margin-bottom: 100px;
}

@media only screen and (max-width:1800px) {
    .Services .Estimate .wrap .link {
        padding: 21px 45px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .Services .Estimate .wrap .link {
        padding: 23px 13px;
    }
}

.Services .Estimate .wrap .link:hover:before {
    transform: translateX(0);
}

.Services .Estimate .wrap .link:after {
    content: attr(data-text);
    font: 400 30px/42px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 54px;
    margin-bottom: 0;
    font-weight: 700;
    z-index: 1;
}

@media only screen and (max-width:1800px) {
    .Services .Estimate .wrap .link:after {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .Services .Estimate .wrap .link:after {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 0.9rem;
    }
}

@media only screen and (max-width:1800px) {
    .Services .Estimate .wrap .link:after {
        margin-bottom: 0;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .Services .Estimate .wrap .link:after {
        margin-bottom: 0;
    }
}

.Services .Estimate .wrap .link:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #6873f8;
    transform: translateX(-100%);
    transition: all 350ms ease-in-out;
}

body.page-template-template-why-tim>section:after {
    pointer-events: none;
    background-image: none;
    z-index: -1;
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

    background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

}

body.page-template-template-why-tim #footer-expanded {
    background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

    background-repeat: repeat-x;
    background-size: cover;
    overflow: hidden;
    background-image: url('../images/timothy-footer-pattern-transparent.html');
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: left;
}

.Why-timothy .Link .wrap {
    max-width: 964px;
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 31px;
    box-sizing: content-box;
}

@media only screen and (max-width:1800px) {
    .Why-timothy .Link .wrap {
        max-width: 657px;
    }
}

.Why-timothy .Link .wrap .content {
    margin-bottom: 54px;
}

.Why-timothy .Link .wrap .link {
    font-weight: 700;
    background: #78e6c2;
    background: linear-gradient(270deg, #78e6c2 0%, #6873f8 100%);
    border: 0;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 36px 59px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    text-decoration: none;
    margin-bottom: 100px;
    text-align: center;
}

@media only screen and (max-width:1800px) {
    .Why-timothy .Link .wrap .link {
        padding: 21px 45px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .Why-timothy .Link .wrap .link {
        padding: 23px 13px;
    }
}

.Why-timothy .Link .wrap .link:hover:before {
    transform: translateX(0);
}

.Why-timothy .Link .wrap .link:after {
    content: attr(data-text);
    font: 400 30px/42px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 54px;
    margin-bottom: 0;
    font-weight: 700;
    z-index: 1;
}

@media only screen and (max-width:1800px) {
    .Why-timothy .Link .wrap .link:after {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .Why-timothy .Link .wrap .link:after {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 0.9rem;
    }
}

@media only screen and (max-width:1800px) {
    .Why-timothy .Link .wrap .link:after {
        margin-bottom: 0;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .Why-timothy .Link .wrap .link:after {
        margin-bottom: 0;
    }
}

.Why-timothy .Link .wrap .link:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #6873f8;
    transform: translateX(-100%);
    transition: all 350ms ease-in-out;
}

body.page-template-template-started {
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);
;
}

body.page-template-template-started>section {
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

}

body.page-template-template-started>section:after {
    pointer-events: none;
    background-image: none;
    z-index: -1;
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

    background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

}

body.page-template-template-started #footer-expanded {
    background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

    background-repeat: repeat-x;
    background-size: cover;
    overflow: hidden;
    background-image: url('../images/timothy-footer-pattern-transparent.html');
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: left;
}

.Get-started .Form {
    margin-bottom: 100px;
}

.Get-started .Form .wrap {
    padding-left: 28px;
    padding-right: 31px;
    max-width: 1500px;
    margin: 0 auto;
    box-sizing: content-box;
}

@media only screen and (max-width:1800px) {
    .Get-started .Form .wrap {
        max-width: 1067px;
    }
}

.Get-started .Form .wrap iframe {
    background: #fff;
}

body.page-template-template-faq {
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);
;
}

body.page-template-template-faq>section {
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

}

body.page-template-template-faq>section:after {
    pointer-events: none;
    background-image: none;
    z-index: -1;
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

    background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

}

body.page-template-template-faq #footer-expanded {
    background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

    background-repeat: repeat-x;
    background-size: cover;
    overflow: hidden;
    background-image: url('../images/timothy-footer-pattern-transparent.html');
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: left;
}

.FAQ .Hero {
    margin-bottom: 100px;
}

@media only screen and (max-width:800px) {
    .FAQ .Hero {
        margin-bottom: 30px;
    }
}

.FAQ .Hero .wrap {
    max-width: 964px;
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 31px;
    box-sizing: content-box;
}

@media only screen and (max-width:1800px) {
    .FAQ .Hero .wrap {
        max-width: 657px;
    }
}

.FAQ .Hero .wrap .headline {
    font: 600 100px/120px 'albra', serif;
    color: #fff;
    margin-bottom: 54px;
}

@media only screen and (max-width:1800px) {
    .FAQ .Hero .wrap .headline {
        font-size: 72px;
        line-height: 86px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .FAQ .Hero .wrap .headline {
        font-size: 42px;
        line-height: 50px;
    }
}

.FAQ .Hero .wrap .subhead {
    font: 400 30px/42px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 54px;
}

@media only screen and (max-width:1800px) {
    .FAQ .Hero .wrap .subhead {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .FAQ .Hero .wrap .subhead {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 0.9rem;
    }
}

.FAQ .Faqs .wrap {
    padding-left: 28px;
    padding-right: 31px;
    max-width: 1500px;
    margin: 0 auto;
    box-sizing: content-box;
}

@media only screen and (max-width:1800px) {
    .FAQ .Faqs .wrap {
        max-width: 1067px;
    }
}

.FAQ .Faqs .wrap .row {
    display: flex;
    gap: 40px;
}

@media only screen and (max-width:1040px) {
    .FAQ .Faqs .wrap .row {
        flex-direction: column;
    }
}

.FAQ .Faqs .wrap .row .legend {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    margin-top: 81px;
}

@media only screen and (max-width:1800px) {
    .FAQ .Faqs .wrap .row .legend {
        margin-top: 56px;
    }
}

.FAQ .Faqs .wrap .row .legend .jump-link {
    text-transform: uppercase;
    background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

    position: relative;
    padding: 12px 30px;
    border-bottom: 1px solid #030448;
    font: 400 30px/42px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 54px;
    margin-bottom: 0 !important;
}

@media only screen and (max-width:1800px) {
    .FAQ .Faqs .wrap .row .legend .jump-link {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .FAQ .Faqs .wrap .row .legend .jump-link {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 0.9rem;
    }
}

.FAQ .Faqs .wrap .row .legend .jump-link:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #78e6c2;
    transform: scaleY(0);
    transition: all 250ms ease;
    transform-origin: bottom;
}

.FAQ .Faqs .wrap .row .legend .jump-link:hover,
.FAQ .Faqs .wrap .row .legend .jump-link.active {
    background-color: #292c7b;
}

.FAQ .Faqs .wrap .row .legend .jump-link:hover:before,
.FAQ .Faqs .wrap .row .legend .jump-link.active:before {
    transform: scaleY(1);
}

.FAQ .Faqs .wrap .row .container {
    display: flex;
    flex-direction: column;
}

.FAQ .Faqs .wrap .row .container .category-questions {
    margin-bottom: 80px;
}

@media only screen and (max-width:800px) {
    .FAQ .Faqs .wrap .row .container .category-questions {
        margin-bottom: 30px;
    }
}

.FAQ .Faqs .wrap .row .container .category {
    font: 700 36px/50px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 31px;
    text-transform: uppercase;
}

@media only screen and (max-width:1800px) {
    .FAQ .Faqs .wrap .row .container .category {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .FAQ .Faqs .wrap .row .container .category {
        font-size: 24px;
        line-height: 34px;
    }
}

.FAQ .Faqs .wrap .row .container .accordion-item {
    margin-bottom: 10px;
    background: #fff;
}

.FAQ .Faqs .wrap .row .container .accordion-item.open h4 button>.box {
    transform: rotate(180deg);
}

.FAQ .Faqs .wrap .row .container .accordion-item h4 button {
    width: 100%;
    border: none;
    background: #fff;
    font: 700 36px/50px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 31px;
    margin-bottom: 0 !important;
    color: #030448;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin-bottom: 0;
    padding: 22px;
    gap: 20px;
}

@media only screen and (max-width:1800px) {
    .FAQ .Faqs .wrap .row .container .accordion-item h4 button {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .FAQ .Faqs .wrap .row .container .accordion-item h4 button {
        font-size: 24px;
        line-height: 34px;
    }
}

.FAQ .Faqs .wrap .row .container .accordion-item h4 button>.box {
    width: 48px;
    height: 48px;
    display: inline-block;
    pointer-events: none;
    flex: 0 0 48px;
    transition: 250ms ease;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='icon icon-tabler icon-tabler-chevron-down' width='24' height='24' viewBox='0 0 24 24' stroke-width='2' stroke='%236873f8' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'%3E%3C/path%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.FAQ .Faqs .wrap .row .container .accordion-item .content {
    display: none;
    padding: 22px;
    margin-bottom: 12px;
    position: relative;
}

.FAQ .Faqs .wrap .row .container .accordion-item .content ul,
.FAQ .Faqs .wrap .row .container .accordion-item .content ol {
    margin-left: 18px;
}

.FAQ .Faqs .wrap .row .container .accordion-item .content p,
.FAQ .Faqs .wrap .row .container .accordion-item .content li {
    color: #000;
}

.FAQ .Faqs .wrap .row .container .button-wrapper {
    margin-bottom: 100px;
}

@media only screen and (max-width:1040px) {
    .FAQ .Faqs .wrap .row .container .button-wrapper {
        text-align: center;
    }
}

.FAQ .Faqs .wrap .row .container .button-wrapper .button {
    font-weight: 700;
    background: #78e6c2;
    background: linear-gradient(270deg, #78e6c2 0%, #6873f8 100%);
    border: 0;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 36px 59px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    text-decoration: none;
}

@media only screen and (max-width:1800px) {
    .FAQ .Faqs .wrap .row .container .button-wrapper .button {
        padding: 21px 45px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .FAQ .Faqs .wrap .row .container .button-wrapper .button {
        padding: 23px 13px;
    }
}

.FAQ .Faqs .wrap .row .container .button-wrapper .button:hover:before {
    transform: translateX(0);
}

.FAQ .Faqs .wrap .row .container .button-wrapper .button:after {
    content: attr(data-text);
    font: 400 30px/42px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 54px;
    margin-bottom: 0;
    font-weight: 700;
    z-index: 1;
}

@media only screen and (max-width:1800px) {
    .FAQ .Faqs .wrap .row .container .button-wrapper .button:after {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .FAQ .Faqs .wrap .row .container .button-wrapper .button:after {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 0.9rem;
    }
}

@media only screen and (max-width:1800px) {
    .FAQ .Faqs .wrap .row .container .button-wrapper .button:after {
        margin-bottom: 0;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .FAQ .Faqs .wrap .row .container .button-wrapper .button:after {
        margin-bottom: 0;
    }
}

.FAQ .Faqs .wrap .row .container .button-wrapper .button:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #6873f8;
    transform: translateX(-100%);
    transition: all 350ms ease-in-out;
}

@media only screen and (max-width:800px) {
    .FAQ .Faqs .wrap .row .container .button-wrapper .button {
        width: 200px;
    }
}

body.page-template-template-contact {
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);
;
}

body.page-template-template-contact>section {
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

}

body.page-template-template-contact>section:after {
    pointer-events: none;
    background-image: none;
    z-index: -1;
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

    background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

}

body.page-template-template-contact #footer-expanded {
    background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

    background-repeat: repeat-x;
    background-size: cover;
    overflow: hidden;
    background-image: url('../images/timothy-footer-pattern-transparent.html');
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: left;
}

.Contact .Hero {
    margin-bottom: 100px;
}

@media only screen and (max-width:800px) {
    .Contact .Hero {
        margin-bottom: 30px;
    }
}

.Contact .Hero .wrap {
    max-width: 964px;
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 31px;
    box-sizing: content-box;
}

@media only screen and (max-width:1800px) {
    .Contact .Hero .wrap {
        max-width: 657px;
    }
}

.Contact .Hero .wrap .title {
    font: 600 100px/120px 'albra', serif;
    color: #fff;
    margin-bottom: 54px;
}

@media only screen and (max-width:1800px) {
    .Contact .Hero .wrap .title {
        font-size: 72px;
        line-height: 86px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .Contact .Hero .wrap .title {
        font-size: 42px;
        line-height: 50px;
    }
}

.Contact .Hero .wrap .sub {
    font: 400 30px/42px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 54px;
}

@media only screen and (max-width:1800px) {
    .Contact .Hero .wrap .sub {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .Contact .Hero .wrap .sub {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 0.9rem;
    }
}

.Contact .Form {
    margin-bottom: 100px;
}

@media only screen and (max-width:800px) {
    .Contact .Form {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width:800px) {
    .Contact .Form {
        margin-bottom: 30px;
    }
}

.Contact .Form .wrap {
    max-width: 964px;
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 31px;
    box-sizing: content-box;
}

@media only screen and (max-width:1800px) {
    .Contact .Form .wrap {
        max-width: 657px;
    }
}

.Contact .Form .wrap iframe {
    background: #fff;
}

.Contact .Wysiwyg {
    margin-bottom: 200px;
}

@media only screen and (max-width:800px) {
    .Contact .Wysiwyg {
        margin-bottom: 100px;
    }
}

.Contact .Map {
    margin-bottom: 200px;
}

@media only screen and (max-width:800px) {
    .Contact .Map {
        margin-bottom: 100px;
    }
}

.Contact .Map .wrap {
    max-width: 964px;
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 31px;
    box-sizing: content-box;
}

@media only screen and (max-width:1800px) {
    .Contact .Map .wrap {
        max-width: 657px;
    }
}

.Contact .Map .wrap iframe {
    width: 100%;
}

body.error404 {
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);
;
}

body.error404>section {
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

}

body.error404>section:after {
    pointer-events: none;
    background-image: none;
    z-index: -1;
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

    background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

}

body.error404 #footer-expanded {
    background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

    background-repeat: repeat-x;
    background-size: cover;
    overflow: hidden;
    background-image: url('../images/timothy-footer-pattern-transparent.html');
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: left;
}

.page-404 .wrap {
    padding-left: 28px;
    padding-right: 31px;
    max-width: 1500px;
    margin: 0 auto;
    box-sizing: content-box;
}

@media only screen and (max-width:1800px) {
    .page-404 .wrap {
        max-width: 1067px;
    }
}

.page-404 .button {
    font-weight: 700;
    background: #78e6c2;
    background: linear-gradient(270deg, #78e6c2 0%, #6873f8 100%);
    border: 0;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 36px 59px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    text-decoration: none;
}

@media only screen and (max-width:1800px) {
    .page-404 .button {
        padding: 21px 45px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .page-404 .button {
        padding: 23px 13px;
    }
}

.page-404 .button:hover:before {
    transform: translateX(0);
}

.page-404 .button:after {
    content: attr(data-text);
    font: 400 30px/42px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 54px;
    margin-bottom: 0;
    font-weight: 700;
    z-index: 1;
}

@media only screen and (max-width:1800px) {
    .page-404 .button:after {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .page-404 .button:after {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 0.9rem;
    }
}

@media only screen and (max-width:1800px) {
    .page-404 .button:after {
        margin-bottom: 0;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .page-404 .button:after {
        margin-bottom: 0;
    }
}

.page-404 .button:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #6873f8;
    transform: translateX(-100%);
    transition: all 350ms ease-in-out;
}

body.blog {
    background-color: #3d7485;
}

body.blog header {
    background: linear-gradient(180deg, #3d7485 0%, rgba(61, 116, 133, 0.6) 60%, rgba(0, 0, 0, 0) 100%);
}

body.blog>section {
    background: #3d7485;
}

body.blog>section:after {
    pointer-events: none;
    background-image: none;
    z-index: -1;
    background: #78e6c2;
    background: linear-gradient(180deg, #3d7485 0%, #4e9496 100%);
}

body.blog #footer-expanded {
    background: #4e9496;
    background-repeat: repeat-x;
    background-size: cover;
}

.archive-post .spinner-overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.archive-post .spinner-overlay .spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 10px solid #f3f3f3;
    border-top: 10px solid #78e6c2;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    z-index: 1;
    animation: spin 2s linear infinite;
}

.archive-post .wrap {
    padding-left: 28px;
    padding-right: 31px;
    max-width: 1500px;
    margin: 0 auto;
    box-sizing: content-box;
}

@media only screen and (max-width:1800px) {
    .archive-post .wrap {
        max-width: 1067px;
    }
}

.archive-post.nav-top {
    padding-top: 248px;
}

@media only screen and (max-width:1800px) {
    .archive-post.nav-top {
        padding-top: 177px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-post.nav-top {
        padding-top: 158px;
    }
}

.archive-post .headline .wrap .page-title {
    font: 600 100px/120px 'albra', serif;
    color: #fff;
    margin-bottom: 54px;
    margin-top: 127px;
    text-align: center;
    margin-bottom: 76px;
    margin-top: 0 !important;
}

@media only screen and (max-width:1800px) {
    .archive-post .headline .wrap .page-title {
        font-size: 72px;
        line-height: 86px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-post .headline .wrap .page-title {
        font-size: 42px;
        line-height: 50px;
    }
}

@media only screen and (max-width:1800px) {
    .archive-post .headline .wrap .page-title {
        margin-bottom: 53px;
    }
}

@media only screen and (max-width:800px) {
    .archive-post .headline .wrap .page-title {
        margin-bottom: 34px;
    }
}

.archive-post .headline .wrap .divider {
    border: 0;
    height: 5px;
    background-color: #78e6c2;
    width: 100%;
    margin: 0 auto;
    max-width: 385px;
    margin-bottom: 73px;
}

@media only screen and (max-width:1800px) {
    .archive-post .headline .wrap .divider {
        height: 4px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-post .headline .wrap .divider {
        height: 3px;
    }
}

@media only screen and (max-width:1800px) {
    .archive-post .headline .wrap .divider {
        margin-bottom: 54px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-post .headline .wrap .divider {
        border-top-width: 2px;
        margin-bottom: 34px;
    }
}

.archive-post .Categories {
    margin-bottom: 175px;
}

@media only screen and (max-width:1800px) {
    .archive-post .Categories {
        margin-bottom: 126px;
    }
}

@media only screen and (max-width:800px) {
    .archive-post .Categories {
        margin-bottom: 90px;
    }
}

.archive-post .Categories .title {
    font: 400 30px/42px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 54px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
    text-align: center;
}

@media only screen and (max-width:1800px) {
    .archive-post .Categories .title {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-post .Categories .title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 0.9rem;
    }
}

@media only screen and (max-width:800px) {
    .archive-post .Categories .title {
        font-size: 20px;
        line-height: 28px;
    }
}

.archive-post .Categories .container {
    display: flex;
    gap: 37px 38px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1290px;
    margin: 0 auto;
}

@media only screen and (max-width:1800px) {
    .archive-post .Categories .container {
        max-width: 922px;
        gap: 24px 25px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-post .Categories .container {
        gap: 27px 13px;
    }
}

.archive-post .Categories .container .category-link {
    background-color: #78e6c2;
    font: 400 30px/42px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 54px;
    color: #3d7485;
    padding: 0 8px;
    transition: all 150ms ease-in-out;
    text-align: center;
    position: relative;
    height: 45px;
    margin-bottom: 0 !important;
}

@media only screen and (max-width:1800px) {
    .archive-post .Categories .container .category-link {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-post .Categories .container .category-link {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 0.9rem;
    }
}

@media only screen and (max-width:1800px) {
    .archive-post .Categories .container .category-link {
        height: 32px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-post .Categories .container .category-link {
        height: 29px;
    }
}

.archive-post .Categories .container .category-link.active {
    background-color: #3d7485;
    color: #78e6c2;
    border: 2px solid #78e6c2;
}

.archive-post .Categories .container .category-link.active:hover {
    background-color: #356574;
}

@media only screen and (max-width:800px) {
    .archive-post .Categories .container .category-link {
        font-size: 18px;
        line-height: 26px;
    }
}

.archive-post .Categories .container .category-link:hover {
    background-color: #a3eed5;
}

.archive-post .Posts {
    position: relative;
}

.archive-post .Posts .filters {
    display: flex;
    justify-content: flex-end;
}

.archive-post .Posts .filters #clear-filters {
    background-color: #78e6c2;
    font: 400 30px/42px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 54px;
    color: #3d7485;
    padding: 0 8px;
    transition: all 150ms ease-in-out;
    text-align: center;
    margin-bottom: 40px;
    height: 45px;
}

@media only screen and (max-width:1800px) {
    .archive-post .Posts .filters #clear-filters {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-post .Posts .filters #clear-filters {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 0.9rem;
    }
}

@media only screen and (max-width:1800px) {
    .archive-post .Posts .filters #clear-filters {
        height: 32px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-post .Posts .filters #clear-filters {
        height: 29px;
    }
}

.archive-post .Posts .filters #clear-filters.active {
    display: none;
}

@media only screen and (max-width:800px) {
    .archive-post .Posts .filters #clear-filters {
        font-size: 18px;
        line-height: 26px;
    }
}

.archive-post .Posts .filters #clear-filters:hover {
    background-color: #a3eed5;
}

.archive-post .Posts .list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 172px;
    gap: 92px 65px;
}

@media only screen and (max-width:1800px) {
    .archive-post .Posts .list {
        gap: 62px 47px;
    }
}

@media only screen and (max-width:800px) {
    .archive-post .Posts .list {
        margin-bottom: 70px;
    }
}

@media only screen and (max-width:700px) and (max-width:700px) {
    .archive-post .Posts .list {
        gap: 60px;
    }
}

.archive-post .Posts .list .Post {
    display: none;
    opacity: 0;
    flex-direction: column;
    cursor: pointer;
    flex: 0 1 calc(100% / 3 - (65px * (2 / 3)));
    border-bottom: 5px solid #78e6c2;
    padding-bottom: 30px;
    transition: opacity 350ms ease-in-out, transform 350ms ease-out;
    transform: translateY(15px);
}

@media only screen and (max-width:1800px) {
    .archive-post .Posts .list .Post {
        border-bottom-width: 4px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-post .Posts .list .Post {
        border-bottom-width: 3px;
    }
}

@media only screen and (max-width:1040px) {
    .archive-post .Posts .list .Post {
        flex: 0 1 calc(50% - 47px / 2);
    }
}

@media only screen and (max-width:700px) and (max-width:700px) {
    .archive-post .Posts .list .Post {
        flex: 1 1 100%;
    }
}

.archive-post .Posts .list .Post--show {
    opacity: 1;
    transform: translateY(0);
}

.archive-post .Posts .list .Post:hover {
    border-color: #a3eed5;
}

.archive-post .Posts .list .Post:hover>.title,
.archive-post .Posts .list .Post:hover>.link {
    text-decoration: underline;
}

.archive-post .Posts .list .Post>.title {
    font: 600 60px/72px 'albra', serif;
    color: #fff;
    margin-bottom: 81px;
    margin-top: 0;
    text-align: left;
    margin-bottom: 20px;
    cursor: pointer;
}

@media only screen and (max-width:1800px) {
    .archive-post .Posts .list .Post>.title {
        font-size: 43px;
        line-height: 52px;
        margin-bottom: 54px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-post .Posts .list .Post>.title {
        font-size: 38px;
        line-height: 45px;
        margin-bottom: 32px;
    }
}

.archive-post .Posts .list .Post>.date {
    font: 400 24px/34px 'acumin-pro', sans-serif;
    color: #fff;
    text-align: left;
    margin-bottom: 31px;
}

@media only screen and (max-width:1800px) {
    .archive-post .Posts .list .Post>.date {
        font-size: 18px;
        line-height: 26px;
    }
}

.archive-post .Posts .list .Post .snippet {
    font: 400 30px/42px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 54px;
    flex: 1;
    margin-bottom: 30px;
}

@media only screen and (max-width:1800px) {
    .archive-post .Posts .list .Post .snippet {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-post .Posts .list .Post .snippet {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 0.9rem;
    }
}

.archive-post .Posts .list .Post .link {
    font: 400 30px/42px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 54px;
    color: #78e6c2;
    font-weight: 700;
    cursor: pointer;
    align-self: flex-start;
}

@media only screen and (max-width:1800px) {
    .archive-post .Posts .list .Post .link {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-post .Posts .list .Post .link {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 0.9rem;
    }
}

.archive-post .Posts .link-container {
    display: flex;
    justify-content: center;
    margin-bottom: 235px;
}

@media only screen and (max-width:800px) {
    .archive-post .Posts .link-container {
        margin-bottom: 175px;
    }
}

.archive-post .Posts #see-more {
    border: none;
    border-radius: 20px;
    width: 296px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 0;
    background: #78e6c2;
    background: linear-gradient(90deg, #78e6c2 0%, #fff 100%);
}

@media only screen and (max-width:800px) {
    .archive-post .Posts #see-more {
        width: 254px;
        height: 62px;
    }
}

.archive-post .Posts #see-more:hover:before {
    transform: translateX(0);
}

.archive-post .Posts #see-more:after {
    content: 'See more';
    font: 700 21px/29px 'acumin-pro', sans-serif;
    color: #fff;
    color: #3d7485;
    font-weight: 700;
    z-index: 1;
}

@media only screen and (max-width:1800px) {
    .archive-post .Posts #see-more:after {
        font-size: 18px;
        line-height: 26px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-post .Posts #see-more:after {
        font-size: 21px;
        line-height: 29px;
    }
}

.archive-post .Posts #see-more:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #78e6c2;
    transform: translateX(-100%);
    transition: all 350ms ease-in-out;
}

body.post-type-archive-team {
    background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

}

body.post-type-archive-team header {
    background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

}

body.post-type-archive-team>section {
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

}

body.post-type-archive-team>section:after {
    pointer-events: none;
    background-image: none;
    z-index: -1;
        background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

    background: linear-gradient(135deg, #6A11CB, #8E2DE2, #C337F5);

}

body.post-type-archive-team #footer-expanded {
    background: #496caa;
    background-repeat: repeat-x;
    background-size: cover;
    background-image: url('../images/timothy-footer-pattern-transparent.html');
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: left;
}

.archive-team .wrap {
    padding-left: 28px;
    padding-right: 31px;
    max-width: 1500px;
    margin: 0 auto;
    box-sizing: content-box;
}

@media only screen and (max-width:1800px) {
    .archive-team .wrap {
        max-width: 1067px;
    }
}

.archive-team .Heading .wrap .title {
    font: 600 100px/120px 'albra', serif;
    color: #fff;
    margin-bottom: 54px;
    max-width: 1067px;
    margin-bottom: 43px;
    margin-bottom: 30px;
}

@media only screen and (max-width:1800px) {
    .archive-team .Heading .wrap .title {
        font-size: 72px;
        line-height: 86px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-team .Heading .wrap .title {
        font-size: 42px;
        line-height: 50px;
    }
}

@media only screen and (max-width:1800px) {
    .archive-team .Heading .wrap .title {
        max-width: 816px;
        margin-bottom: 30px;
    }
}

.archive-team .Heading .wrap>.subtitle {
    font: 400 45px/63px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 36px;
    max-width: 1058px;
    margin-bottom: 61px;
}

@media only screen and (max-width:1800px) {
    .archive-team .Heading .wrap>.subtitle {
        font-size: 32px;
        line-height: 44px;
        margin-bottom: 26px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-team .Heading .wrap>.subtitle {
        font-size: 30px;
        line-height: 42px;
    }
}

@media only screen and (max-width:1800px) {
    .archive-team .Heading .wrap>.subtitle {
        max-width: 753px;
        margin-bottom: 44px;
    }
}

.archive-team .Heading .wrap .content {
    max-width: 980px;
    margin-bottom: 78px;
}

@media only screen and (max-width:1800px) {
    .archive-team .Heading .wrap .content {
        max-width: 698px;
        margin-bottom: 68px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-team .Heading .wrap .content {
        margin-bottom: 43px;
    }
}

.archive-team .Heading .wrap .content p:not(:last-child) {
    margin-bottom: 53px;
}

.archive-team .Heading .wrap .content h4 {
    margin-bottom: 43px;
}

.archive-team .Team {
    margin-bottom: 100px;
}

@media only screen and (max-width:1800px) {
    .archive-team .Team {
        margin-bottom: 100px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-team .Team {
        margin-bottom: 50px;
    }
}

.archive-team .Team .Filter {
    margin-bottom: 51px;
}

@media only screen and (max-width:1800px) {
    .archive-team .Team .Filter {
        margin-bottom: 37px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-team .Team .Filter {
        margin-bottom: 47px;
    }
}

.archive-team .Team .Filter__container {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media only screen and (max-width:1800px) {}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-team .Team .Filter__container {
        max-width: 291px;
        margin: 0 auto;
        justify-content: center;
    }
}

.archive-team .Team .Filter .Filter__text {
    font: 400 30px/42px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 54px;
    font-weight: 700;
}

@media only screen and (max-width:1800px) {
    .archive-team .Team .Filter .Filter__text {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-team .Team .Filter .Filter__text {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 0.9rem;
    }
}

@media only screen and (max-width:850px) {
    .archive-team .Team .Filter .Filter__text {
        flex: 1 1 100%;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-team .Team .Filter .Filter__text {
        text-align: center;
    }
}

.archive-team .Team .Filter .Filter__term,
.archive-team .Team .Filter #clear-filter {
    background-color: unset;
    border: none;
    font: 400 30px/42px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 54px;
    color: #78e6c2;
    position: relative;
}

@media only screen and (max-width:1800px) {

    .archive-team .Team .Filter .Filter__term,
    .archive-team .Team .Filter #clear-filter {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {

    .archive-team .Team .Filter .Filter__term,
    .archive-team .Team .Filter #clear-filter {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 0.9rem;
    }
}

@media only screen and (max-width:800px) {

    .archive-team .Team .Filter .Filter__term,
    .archive-team .Team .Filter #clear-filter {
        color: #fff;
        background-color: #6873f8;
        padding: 0 6px;
    }
}

.archive-team .Team .Filter .Filter__term:before,
.archive-team .Team .Filter #clear-filter:before {
    content: '';
    transform: scaleX(0);
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #78e6c2;
    transition: transform 300ms ease;
    transform-origin: left;
}

.archive-team .Team .Filter .Filter__term:hover,
.archive-team .Team .Filter #clear-filter:hover {
    color: #fff;
}

.archive-team .Team .Filter .Filter__term.active,
.archive-team .Team .Filter #clear-filter.active {
    color: #fff;
}

.archive-team .Team .Filter .Filter__term.active:before,
.archive-team .Team .Filter #clear-filter.active:before {
    transform: scaleX(1);
}

.archive-team .Team .Filter .Filter__term.active~#clear-filter,
.archive-team .Team .Filter #clear-filter.active~#clear-filter {
    display: block;
}

@media only screen and (max-width:800px) {

    .archive-team .Team .Filter .Filter__term.active,
    .archive-team .Team .Filter #clear-filter.active {
        color: #363aa1;
        background-color: #fff;
    }

    .archive-team .Team .Filter .Filter__term.active:before,
    .archive-team .Team .Filter #clear-filter.active:before {
        transform: scaleX(0);
    }
}

.archive-team .Team .Filter #clear-filter {
    margin-left: auto;
    display: none;
}

@media only screen and (max-width:800px) {
    .archive-team .Team .Filter #clear-filter {
        margin-left: unset;
    }
}

.archive-team .Team .Filter__notice {
    display: none;
    font: 400 24px/34px 'acumin-pro', sans-serif;
    color: #fff;
    flex: 1 1 100%;
    max-width: 942px;
    margin-top: 40px;
}

@media only screen and (max-width:1800px) {
    .archive-team .Team .Filter__notice {
        font-size: 18px;
        line-height: 26px;
    }
}

@media only screen and (max-width:800px) {
    .archive-team .Team .Filter__notice {
        margin-top: 60px;
    }
}

.archive-team .Team .Filter__notice span {
    font-weight: 700;
}

.archive-team .Team .Team-list {
    display: flex;
    flex-wrap: wrap;
    gap: 73px 42px;
}

@media only screen and (max-width:1800px) {
    .archive-team .Team .Team-list {
        gap: 52px 29px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-team .Team .Team-list {
        gap: 22px 8px;
    }
}

.archive-team .Team .Team-list.has-filter .team-member-card .content .job>span {
    background-color: unset;
}

.archive-team .Team .Team-list .team-member-card {
    display: flex;
    flex-direction: column;
    border: none;
    background-color: #fff;
    flex: 1 1 25%;
    max-width: 340px;
    align-items: center;
    justify-content: center;
}

.archive-team .Team .Team-list .team-member-card:hover .image-wrapper img {
    transform: scale(1.05);
}

@media only screen and (max-width:1800px) {
    .archive-team .Team .Team-list .team-member-card {
        max-width: 243px;
        flex: 1 1 25%;
    }
}

@media only screen and (max-width:1150px) and (max-width:1150px) {
    .archive-team .Team .Team-list .team-member-card {
        max-width: 340px;
        flex: 0 1 calc((100% / 3) - 29px);
    }
}

@media only screen and (max-width:800px) and (max-width:800px) and (max-width:800px) {
    .archive-team .Team .Team-list .team-member-card {
        flex: 0 1 calc((100% / 3) - 8px);
    }
}

@media only screen and (max-width:650px) and (max-width:650px) and (max-width:650px) and (max-width:650px) {
    .archive-team .Team .Team-list .team-member-card {
        flex: 1 1 calc(50% - 8px);
        max-width: 50%;
    }
}

.archive-team .Team .Team-list .team-member-card .image-wrapper {
    flex: 1;
    width: 100%;
    overflow: hidden;
}

.archive-team .Team .Team-list .team-member-card .image-wrapper img {
    transition: 250ms ease;
    transform: scale(1);
}

.archive-team .Team .Team-list .team-member-card .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 141px;
    text-align: center;
}

@media only screen and (max-width:1800px) {
    .archive-team .Team .Team-list .team-member-card .content {
        height: 91px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-team .Team .Team-list .team-member-card .content {
        height: 72px;
    }
}

.archive-team .Team .Team-list .team-member-card .content .name {
    font: 400 24px/34px 'acumin-pro', sans-serif;
    color: #fff;
    font-weight: 700;
    color: #030048;
}

@media only screen and (max-width:1800px) {
    .archive-team .Team .Team-list .team-member-card .content .name {
        font-size: 18px;
        line-height: 26px;
    }
}

@media only screen and (max-width:1800px) {
    .archive-team .Team .Team-list .team-member-card .content .name {
        font-size: 17px;
        line-height: 23px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-team .Team .Team-list .team-member-card .content .name {
        font-size: 12px;
        line-height: 20px;
    }
}

.archive-team .Team .Team-list .team-member-card .content .job {
    font: 400 24px/34px 'acumin-pro', sans-serif;
    color: #fff;
    color: #030048;
}

@media only screen and (max-width:1800px) {
    .archive-team .Team .Team-list .team-member-card .content .job {
        font-size: 18px;
        line-height: 26px;
    }
}

@media only screen and (max-width:1800px) {
    .archive-team .Team .Team-list .team-member-card .content .job {
        font-size: 17px;
        line-height: 23px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-team .Team .Team-list .team-member-card .content .job {
        font-size: 12px;
        line-height: 20px;
    }
}

.archive-team .Team .Team-list .team-member-card .content .job>span {
    background-color: rgba(120, 230, 194, 0.5);
    font: 400 24px/34px 'acumin-pro', sans-serif;
    color: #fff;
    color: #030048;
}

@media only screen and (max-width:1800px) {
    .archive-team .Team .Team-list .team-member-card .content .job>span {
        font-size: 18px;
        line-height: 26px;
    }
}

@media only screen and (max-width:1800px) {
    .archive-team .Team .Team-list .team-member-card .content .job>span {
        font-size: 17px;
        line-height: 23px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-team .Team .Team-list .team-member-card .content .job>span {
        font-size: 12px;
        line-height: 20px;
    }
}

.archive-team .Team .Team-list .Team-bio {
    display: none;
}

.archive-team .Team .Team-list .Team-bio__wrapper {
    display: flex;
    gap: 98px;
    border-top: 5px solid #78e6c2;
    border-bottom: 5px solid #78e6c2;
    padding-top: 95px;
    padding-bottom: 86px;
    position: relative;
}

@media only screen and (max-width:1800px) {
    .archive-team .Team .Team-list .Team-bio__wrapper {
        padding-top: 67px;
        padding-bottom: 69px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-team .Team .Team-list .Team-bio__wrapper {
        flex-direction: column-reverse;
        margin-top: 16px;
        padding-top: 0;
        border-top: 0;
        gap: 48px;
        padding-bottom: 92px;
        margin-bottom: 67px;
        border-bottom-width: 3px;
    }
}

.archive-team .Team .Team-list .Team-bio .close-dropdown {
    position: absolute;
    right: 0;
    top: 45px;
    width: 64px;
    height: 64px;
    background-color: #fff;
    border-radius: 50%;
    border: none;
    z-index: 1;
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236873f8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-x'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
}

@media only screen and (max-width:1800px) {
    .archive-team .Team .Team-list .Team-bio .close-dropdown {
        width: 44px;
        height: 45px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-team .Team .Team-list .Team-bio .close-dropdown {
        top: 8px;
        right: 8px;
    }
}

.archive-team .Team .Team-list .Team-bio .close-dropdown--mobile {
    display: none;
}

@media only screen and (max-width:800px) {
    .archive-team .Team .Team-list .Team-bio .close-dropdown--mobile {
        display: block;
        top: unset;
        bottom: 30px;
    }
}

.archive-team .Team .Team-list .Team-bio .image-wrapper {
    max-width: 445px;
    align-self: center;
}

@media only screen and (max-width:800px) {
    .archive-team .Team .Team-list .Team-bio .image-wrapper {
        display: none;
    }
}

.archive-team .Team .Team-list .Team-bio .image-wrapper.mobile-wrapper {
    display: none;
}

@media only screen and (max-width:800px) {
    .archive-team .Team .Team-list .Team-bio .image-wrapper.mobile-wrapper {
        display: flex;
    }
}

.archive-team .Team .Team-list .Team-bio .column--aside {
    flex: 0 1 445px;
}

@media only screen and (max-width:1800px) {
    .archive-team .Team .Team-list .Team-bio .column--aside {
        flex: 0 1 314px;
    }
}

@media only screen and (max-width:800px) {
    .archive-team .Team .Team-list .Team-bio .column--no-secondary {
        display: none;
    }
}

.archive-team .Team .Team-list .Team-bio .column--main {
    flex: 0 1 897px;
}

@media only screen and (max-width:1800px) {
    .archive-team .Team .Team-list .Team-bio .column--main {
        flex: 0 1 634px;
    }
}

.archive-team .Team .Team-list .Team-bio .column .image-wrapper {
    margin-bottom: 24px;
}

@media only screen and (max-width:800px) {
    .archive-team .Team .Team-list .Team-bio .column .secondary-content {
        border-top: 3px solid #78e6c2;
        padding-top: 50px;
    }
}

.archive-team .Team .Team-list .Team-bio .column .secondary-content h5 {
    margin-bottom: 15px;
}

.archive-team .Team .Team-list .Team-bio .column .secondary-content p {
    font: 400 24px/34px 'acumin-pro', sans-serif;
    color: #fff;
}

@media only screen and (max-width:1800px) {
    .archive-team .Team .Team-list .Team-bio .column .secondary-content p {
        font-size: 18px;
        line-height: 26px;
    }
}

.archive-team .Team .Team-list .Team-bio .column .content h5,
.archive-team .Team .Team-list .Team-bio .column .main-content h5 {
    margin-bottom: 15px;
}

.archive-team .Team .Team-list .Team-bio .column .content p,
.archive-team .Team .Team-list .Team-bio .column .main-content p {
    margin-bottom: 1.17em;
}

.archive-team .Team .Team-list .Team-bio .column .name {
    font: 600 60px/72px 'albra', serif;
    color: #fff;
    margin-bottom: 81px;
    margin-bottom: 10px;
}

@media only screen and (max-width:1800px) {
    .archive-team .Team .Team-list .Team-bio .column .name {
        font-size: 43px;
        line-height: 52px;
        margin-bottom: 54px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-team .Team .Team-list .Team-bio .column .name {
        font-size: 38px;
        line-height: 45px;
        margin-bottom: 32px;
    }
}

.archive-team .Team .Team-list .Team-bio .column .job {
    font: 600 48px/58px 'albra', serif;
    color: #fff;
    margin-bottom: 36px;
    margin-bottom: 63px;
}

@media only screen and (max-width:1800px) {
    .archive-team .Team .Team-list .Team-bio .column .job {
        font-size: 34px;
        line-height: 41px;
        margin-bottom: 26px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-team .Team .Team-list .Team-bio .column .job {
        font-size: 33px;
        line-height: 40px;
        margin-bottom: 32px;
    }
}

@media only screen and (max-width:1800px) {
    .archive-team .Team .Team-list .Team-bio .column .job {
        margin-bottom: 30px;
    }
}

.archive-team .cta .wrap {
    max-width: 964px;
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 31px;
    box-sizing: content-box;
    text-align: center;
}

@media only screen and (max-width:1800px) {
    .archive-team .cta .wrap {
        max-width: 657px;
    }
}

.archive-team .cta .wrap .link {
    font-weight: 700;
    background: #78e6c2;
    background: linear-gradient(270deg, #78e6c2 0%, #6873f8 100%);
    border: 0;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 36px 59px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    text-decoration: none;
    margin-bottom: 100px;
}

@media only screen and (max-width:1800px) {
    .archive-team .cta .wrap .link {
        padding: 21px 45px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-team .cta .wrap .link {
        padding: 23px 13px;
    }
}

.archive-team .cta .wrap .link:hover:before {
    transform: translateX(0);
}

.archive-team .cta .wrap .link:after {
    content: attr(data-text);
    font: 400 30px/42px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 54px;
    margin-bottom: 0;
    font-weight: 700;
    z-index: 1;
}

@media only screen and (max-width:1800px) {
    .archive-team .cta .wrap .link:after {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-team .cta .wrap .link:after {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 0.9rem;
    }
}

@media only screen and (max-width:1800px) {
    .archive-team .cta .wrap .link:after {
        margin-bottom: 0;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .archive-team .cta .wrap .link:after {
        margin-bottom: 0;
    }
}

.archive-team .cta .wrap .link:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #6873f8;
    transform: translateX(-100%);
    transition: all 350ms ease-in-out;
}

.post-type-archive-team .Team-popup .wrap {
    padding-left: 28px;
    padding-right: 31px;
    max-width: 1500px;
    margin: 0 auto;
    box-sizing: content-box;
}

@media only screen and (max-width:1800px) {
    .post-type-archive-team .Team-popup .wrap {
        max-width: 1067px;
    }
}

.post-type-archive-team .Team-popup__wrapper {
    display: flex;
    flex-direction: column;
    gap: 77px;
    padding-top: 95px;
    padding-bottom: 86px;
    position: relative;
}

@media only screen and (max-width:1800px) {
    .post-type-archive-team .Team-popup__wrapper {
        padding-top: 67px;
        padding-bottom: 69px;
        gap: 54px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .post-type-archive-team .Team-popup__wrapper {
        padding-top: 0;
        gap: 48px;
        padding-bottom: 92px;
    }
}

.post-type-archive-team .Team-popup__wrapper .image-wrapper--mobile {
    display: none;
    justify-content: center;
}

.post-type-archive-team .Team-popup__wrapper .image-wrapper--mobile img {
    max-width: 445px;
}

@media only screen and (max-width:800px) {
    .post-type-archive-team .Team-popup__wrapper .image-wrapper--mobile {
        display: flex;
    }
}

.post-type-archive-team .Team-popup__wrapper .row {
    display: flex;
    gap: 98px;
}

@media only screen and (max-width:1800px) {
    .post-type-archive-team .Team-popup__wrapper .row {
        gap: 69px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .post-type-archive-team .Team-popup__wrapper .row {
        gap: 48px;
    }
}

.post-type-archive-team .Team-popup__wrapper .row.no-secondary {
    justify-content: center;
}

.post-type-archive-team .Team-popup__wrapper .row>div:first-child {
    flex: 0 1 445px;
}

@media only screen and (max-width:1800px) {
    .post-type-archive-team .Team-popup__wrapper .row>div:first-child {
        flex: 0 1 314px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .post-type-archive-team .Team-popup__wrapper .row>div:first-child {
        flex: 1;
    }
}

.post-type-archive-team .Team-popup__wrapper .row>div:last-child {
    flex: 0 1 897px;
}

@media only screen and (max-width:1800px) {
    .post-type-archive-team .Team-popup__wrapper .row>div:last-child {
        flex: 0 1 634px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .post-type-archive-team .Team-popup__wrapper .row>div:last-child {
        flex: 1;
    }
}

@media only screen and (max-width:800px) {
    .post-type-archive-team .Team-popup__wrapper .row--top {
        flex-direction: column;
    }
}

.post-type-archive-team .Team-popup__wrapper .row--top .image-wrapper--desktop {
    max-width: 445px;
    align-self: center;
}

@media only screen and (max-width:800px) {
    .post-type-archive-team .Team-popup__wrapper .row--top .image-wrapper--desktop {
        display: none;
    }
}

.post-type-archive-team .Team-popup__wrapper .row--top .info {
    display: flex;
    flex-direction: column;
    margin-top: 144px;
}

@media only screen and (max-width:1800px) {
    .post-type-archive-team .Team-popup__wrapper .row--top .info {
        margin-top: 102px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .post-type-archive-team .Team-popup__wrapper .row--top .info {
        margin-top: 0;
        text-align: center;
    }
}

.post-type-archive-team .Team-popup__wrapper .row--top .info .name {
    font: 600 100px/120px 'albra', serif;
    color: #fff;
    margin-bottom: 54px;
    margin-bottom: 10px;
}

@media only screen and (max-width:1800px) {
    .post-type-archive-team .Team-popup__wrapper .row--top .info .name {
        font-size: 72px;
        line-height: 86px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .post-type-archive-team .Team-popup__wrapper .row--top .info .name {
        font-size: 42px;
        line-height: 50px;
    }
}

.post-type-archive-team .Team-popup__wrapper .row--top .info .job {
    font: 600 60px/72px 'albra', serif;
    color: #fff;
    margin-bottom: 81px;
    margin-bottom: 125px;
}

@media only screen and (max-width:1800px) {
    .post-type-archive-team .Team-popup__wrapper .row--top .info .job {
        font-size: 43px;
        line-height: 52px;
        margin-bottom: 54px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .post-type-archive-team .Team-popup__wrapper .row--top .info .job {
        font-size: 38px;
        line-height: 45px;
        margin-bottom: 32px;
    }
}

@media only screen and (max-width:1800px) {
    .post-type-archive-team .Team-popup__wrapper .row--top .info .job {
        margin-bottom: 89px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .post-type-archive-team .Team-popup__wrapper .row--top .info .job {
        margin-bottom: 42px;
    }
}

.post-type-archive-team .Team-popup__wrapper .row--top .info .divider {
    border: 0;
    height: 5px;
    background-color: #78e6c2;
    width: 100%;
    margin: 0 auto;
}

@media only screen and (max-width:1800px) {
    .post-type-archive-team .Team-popup__wrapper .row--top .info .divider {
        height: 4px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .post-type-archive-team .Team-popup__wrapper .row--top .info .divider {
        height: 3px;
    }
}

@media only screen and (max-width:800px) {
    .post-type-archive-team .Team-popup__wrapper .row--bio {
        flex-direction: column-reverse;
    }
}

@media only screen and (max-width:800px) {
    .post-type-archive-team .Team-popup__wrapper .row--bio .secondary-content {
        border-top: 3px solid #78e6c2;
        padding-top: 47px;
    }
}

.post-type-archive-team .Team-popup__wrapper .row--bio .secondary-content h5 {
    margin-bottom: 15px;
}

.post-type-archive-team .Team-popup__wrapper .row--bio .secondary-content p {
    font: 400 24px/34px 'acumin-pro', sans-serif;
    color: #fff;
}

@media only screen and (max-width:1800px) {
    .post-type-archive-team .Team-popup__wrapper .row--bio .secondary-content p {
        font-size: 18px;
        line-height: 26px;
    }
}

.post-type-archive-team .Team-popup__wrapper .row--bio .main-content,
.post-type-archive-team .Team-popup__wrapper .row--bio .content {
    margin-bottom: 109px;
}

@media only screen and (max-width:1800px) {

    .post-type-archive-team .Team-popup__wrapper .row--bio .main-content,
    .post-type-archive-team .Team-popup__wrapper .row--bio .content {
        margin-bottom: 89px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {

    .post-type-archive-team .Team-popup__wrapper .row--bio .main-content,
    .post-type-archive-team .Team-popup__wrapper .row--bio .content {
        margin-bottom: 0px;
    }
}

.post-type-archive-team .Team-popup__wrapper .row--bio .main-content h5,
.post-type-archive-team .Team-popup__wrapper .row--bio .content h5 {
    margin-bottom: 15px;
}

.post-type-archive-team .Team-popup__wrapper .row--bio .main-content p,
.post-type-archive-team .Team-popup__wrapper .row--bio .content p {
    margin-bottom: 1.17em;
}

.post-type-archive-team .Team-popup__wrapper .button-wrapper button {
    font: 400 30px/42px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 54px;
    font-weight: 700;
    background: #78e6c2;
    background: linear-gradient(270deg, #78e6c2 0%, #6873f8 100%);
    border: 0;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 36px 59px;
    position: relative;
    overflow: hidden;
}

@media only screen and (max-width:1800px) {
    .post-type-archive-team .Team-popup__wrapper .button-wrapper button {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .post-type-archive-team .Team-popup__wrapper .button-wrapper button {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 0.9rem;
    }
}

@media only screen and (max-width:1800px) {
    .post-type-archive-team .Team-popup__wrapper .button-wrapper button {
        padding: 21px 45px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .post-type-archive-team .Team-popup__wrapper .button-wrapper button {
        padding: 23px 13px;
    }
}

.post-type-archive-team .Team-popup__wrapper .button-wrapper button:hover:before {
    transform: translateX(0);
}

.post-type-archive-team .Team-popup__wrapper .button-wrapper button:after {
    content: 'Learn about other team members';
    font: 400 30px/42px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 54px;
    font-weight: 700;
    z-index: 1;
    margin-bottom: 0 !important;
}

@media only screen and (max-width:1800px) {
    .post-type-archive-team .Team-popup__wrapper .button-wrapper button:after {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .post-type-archive-team .Team-popup__wrapper .button-wrapper button:after {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 0.9rem;
    }
}

.post-type-archive-team .Team-popup__wrapper .button-wrapper button:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #6873f8;
    transform: translateX(-100%);
    transition: all 350ms ease-in-out;
}

@media only screen and (max-width:800px) {
    .post-type-archive-team .Team-popup__wrapper .button-wrapper--desktop {
        display: none;
    }
}

.post-type-archive-team .Team-popup__wrapper .button-wrapper--mobile {
    display: none;
    text-align: center;
    padding: 0 17px;
}

@media only screen and (max-width:800px) {
    .post-type-archive-team .Team-popup__wrapper .button-wrapper--mobile {
        display: block;
    }
}

body.single-post {
    background: #3d7485;
}

body.single-post header {
    background: linear-gradient(180deg, #3d7485 0%, rgba(61, 116, 133, 0.6) 60%, rgba(0, 0, 0, 0) 100%);
}

body.single-post>section {
    background: #3d7485;
}

body.single-post>section:after {
    pointer-events: none;
    background-image: none;
    z-index: -1;
    background: #78e6c2;
    background: linear-gradient(180deg, #3d7485 0%, #4e9496 100%);
}

body.single-post #footer-expanded {
    background: #4e9496;
    background-repeat: repeat-x;
    background-size: cover;
}

.single-post-blog .wrap {
    padding-left: 28px;
    padding-right: 31px;
    max-width: 1500px;
    margin: 0 auto;
    box-sizing: content-box;
}

@media only screen and (max-width:1800px) {
    .single-post-blog .wrap {
        max-width: 1067px;
    }
}

.single-post-blog .wrap .divider {
    border: 0;
    height: 5px;
    background-color: #78e6c2;
    width: 100%;
    margin: 0 auto;
}

@media only screen and (max-width:1800px) {
    .single-post-blog .wrap .divider {
        height: 4px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .single-post-blog .wrap .divider {
        height: 3px;
    }
}

.single-post-blog .wrap.nav-top {
    padding-top: 248px;
}

@media only screen and (max-width:1800px) {
    .single-post-blog .wrap.nav-top {
        padding-top: 177px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .single-post-blog .wrap.nav-top {
        padding-top: 158px;
    }
}

.single-post-blog .wrap .back-wrapper {
    margin-bottom: 20px;
}

.single-post-blog .wrap .back-wrapper a {
    font: 400 24px/34px 'acumin-pro', sans-serif;
    color: #fff;
}

@media only screen and (max-width:1800px) {
    .single-post-blog .wrap .back-wrapper a {
        font-size: 18px;
        line-height: 26px;
    }
}

.single-post-blog .wrap .back-wrapper a:hover {
    text-decoration: underline;
}

.single-post-blog .wrap .title {
    font: 600 100px/120px 'albra', serif;
    color: #fff;
    margin-bottom: 54px;
    margin-top: 93px;
    text-align: center;
    margin-bottom: 76px;
    margin-top: 0 !important;
}

@media only screen and (max-width:1800px) {
    .single-post-blog .wrap .title {
        font-size: 72px;
        line-height: 86px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .single-post-blog .wrap .title {
        font-size: 42px;
        line-height: 50px;
    }
}

@media only screen and (max-width:1800px) {
    .single-post-blog .wrap .title {
        margin-bottom: 53px;
    }
}

@media only screen and (max-width:800px) {
    .single-post-blog .wrap .title {
        margin-bottom: 34px;
    }
}

.single-post-blog .wrap .divider--title {
    max-width: 542px;
    margin-bottom: 92px;
}

@media only screen and (max-width:1800px) {
    .single-post-blog .wrap .divider--title {
        margin-bottom: 63px;
        max-width: 385px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .single-post-blog .wrap .divider--title {
        max-width: 254px;
        margin-bottom: 34px;
    }
}

.single-post-blog .wrap .topics {
    text-align: center;
    font: 400 24px/34px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 10px;
}

@media only screen and (max-width:1800px) {
    .single-post-blog .wrap .topics {
        font-size: 18px;
        line-height: 26px;
    }
}

.single-post-blog .wrap time {
    font: 400 24px/34px 'acumin-pro', sans-serif;
    color: #fff;
    text-align: center;
    display: block;
    margin-bottom: 38px;
}

@media only screen and (max-width:1800px) {
    .single-post-blog .wrap time {
        font-size: 18px;
        line-height: 26px;
    }
}

@media only screen and (max-width:1800px) {
    .single-post-blog .wrap time {
        margin-bottom: 25px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .single-post-blog .wrap time {
        margin-bottom: 29px;
    }
}

.single-post-blog .wrap .content {
    max-width: 806px;
    margin: 0 auto;
    margin-bottom: 197px;
}

@media only screen and (max-width:1800px) {
    .single-post-blog .wrap .content {
        margin-bottom: 82px;
        max-width: 574px;
    }
}

@media only screen and (max-width:800px) {
    .single-post-blog .wrap .content {
        margin-bottom: 42px;
    }
}

.single-post-blog .wrap .content p {
    font: 400 24px/34px 'acumin-pro', sans-serif;
    color: #fff;
}

@media only screen and (max-width:1800px) {
    .single-post-blog .wrap .content p {
        font-size: 18px;
        line-height: 26px;
    }
}

.single-post-blog .Recent-posts {
    margin-bottom: 50px;
}

.single-post-blog .Recent-posts .wrap {
    position: relative;
    padding-left: 28px;
    padding-right: 31px;
    max-width: 1500px;
    margin: 0 auto;
    box-sizing: content-box;
    padding-top: 52px;
}

@media only screen and (max-width:1800px) {
    .single-post-blog .Recent-posts .wrap {
        max-width: 1067px;
    }
}

@media only screen and (max-width:800px) {
    .single-post-blog .Recent-posts .wrap {
        padding-top: 47px;
    }
}

.single-post-blog .Recent-posts .wrap .title {
    font: 400 30px/42px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 54px;
    font-weight: 700;
    margin-bottom: 63px;
    margin-top: 0;
}

@media only screen and (max-width:1800px) {
    .single-post-blog .Recent-posts .wrap .title {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .single-post-blog .Recent-posts .wrap .title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 0.9rem;
    }
}

@media only screen and (max-width:1800px) {
    .single-post-blog .Recent-posts .wrap .title {
        margin-bottom: 42px;
    }
}

.single-post-blog .Recent-posts .wrap .posts {
    display: flex;
    gap: 35px;
}

@media only screen and (max-width:800px) {
    .single-post-blog .Recent-posts .wrap .posts {
        flex-direction: column;
    }
}

.single-post-blog .Recent-posts .wrap .posts .Post {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.single-post-blog .Recent-posts .wrap .posts .Post:hover>.title,
.single-post-blog .Recent-posts .wrap .posts .Post:hover>.link {
    text-decoration: underline;
}

.single-post-blog .Recent-posts .wrap .posts .Post>.title {
    font: 600 48px/58px 'albra', serif;
    color: #fff;
    margin-bottom: 36px;
    margin-top: 0;
    text-align: left;
    margin-bottom: 42px;
}

@media only screen and (max-width:1800px) {
    .single-post-blog .Recent-posts .wrap .posts .Post>.title {
        font-size: 34px;
        line-height: 41px;
        margin-bottom: 26px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .single-post-blog .Recent-posts .wrap .posts .Post>.title {
        font-size: 33px;
        line-height: 40px;
        margin-bottom: 32px;
    }
}

@media only screen and (max-width:1800px) {
    .single-post-blog .Recent-posts .wrap .posts .Post>.title {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width:800px) {
    .single-post-blog .Recent-posts .wrap .posts .Post>.title {
        margin-bottom: 0;
    }
}

.single-post-blog .Recent-posts .wrap .posts .Post>.date {
    font: 400 16px/22px 'acumin-pro', sans-serif;
    color: #fff;
    text-align: left;
    margin-bottom: 31px;
}

@media only screen and (max-width:800px) {
    .single-post-blog .Recent-posts .wrap .posts .Post>.date {
        display: none;
    }
}

.single-post-blog .Recent-posts .wrap .posts .Post .snippet {
    font: 400 24px/34px 'acumin-pro', sans-serif;
    color: #fff;
    flex: 1;
    margin-bottom: 30px;
}

@media only screen and (max-width:1800px) {
    .single-post-blog .Recent-posts .wrap .posts .Post .snippet {
        font-size: 18px;
        line-height: 26px;
    }
}

@media only screen and (max-width:800px) {
    .single-post-blog .Recent-posts .wrap .posts .Post .snippet {
        display: none;
    }
}

.single-post-blog .Recent-posts .wrap .posts .Post .link {
    font: 400 24px/34px 'acumin-pro', sans-serif;
    color: #fff;
    color: #78e6c2;
    font-weight: 700;
    align-self: flex-start;
}

@media only screen and (max-width:1800px) {
    .single-post-blog .Recent-posts .wrap .posts .Post .link {
        font-size: 18px;
        line-height: 26px;
    }
}

.single-post-blog .Categories .wrap {
    position: relative;
    padding-top: 52px;
    padding-left: 28px;
    padding-right: 31px;
    max-width: 1500px;
    margin: 0 auto;
    box-sizing: content-box;
}

@media only screen and (max-width:1800px) {
    .single-post-blog .Categories .wrap {
        max-width: 1067px;
    }
}

@media only screen and (max-width:800px) {
    .single-post-blog .Categories .wrap {
        padding-top: 47px;
    }
}

.single-post-blog .Categories .title {
    font: 400 30px/42px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 54px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
}

@media only screen and (max-width:1800px) {
    .single-post-blog .Categories .title {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .single-post-blog .Categories .title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 0.9rem;
    }
}

@media only screen and (max-width:800px) {
    .single-post-blog .Categories .title {
        font-size: 20px;
        line-height: 28px;
    }
}

.single-post-blog .Categories .container {
    display: flex;
    gap: 37px 38px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    margin-bottom: 69px;
    max-width: 1290px;
}

@media only screen and (max-width:1800px) {
    .single-post-blog .Categories .container {
        max-width: 922px;
        gap: 24px 25px;
    }
}

@media only screen and (max-width:800px) {
    .single-post-blog .Categories .container {
        gap: 27px;
    }
}

.single-post-blog .Categories .container .category-link {
    background-color: #78e6c2;
    font: 400 30px/42px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 54px;
    color: #3d7485;
    padding: 0 8px;
    transition: all 150ms ease-in-out;
    text-align: center;
    height: 45px;
    margin-bottom: 0 !important;
}

@media only screen and (max-width:1800px) {
    .single-post-blog .Categories .container .category-link {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .single-post-blog .Categories .container .category-link {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 0.9rem;
    }
}

@media only screen and (max-width:1800px) {
    .single-post-blog .Categories .container .category-link {
        height: 32px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .single-post-blog .Categories .container .category-link {
        height: 29px;
        font-size: 18px;
        line-height: 26px;
    }
}

.single-post-blog .Categories .container .category-link:hover {
    background-color: #a3eed5;
}

.single-post-blog .Categories .link-container {
    display: flex;
    justify-content: center;
    margin-bottom: 235px;
}

@media only screen and (max-width:800px) {
    .single-post-blog .Categories .link-container {
        margin-bottom: 175px;
    }
}

.single-post-blog .Categories .back-link {
    border-radius: 20px;
    width: 296px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 0;
    background: #78e6c2;
    background: linear-gradient(90deg, #78e6c2 0%, #fff 100%);
}

@media only screen and (max-width:800px) {
    .single-post-blog .Categories .back-link {
        width: 254px;
        height: 62px;
    }
}

.single-post-blog .Categories .back-link:hover:before {
    transform: translateX(0);
}

.single-post-blog .Categories .back-link:after {
    content: 'Go to blog';
    font: 400 30px/42px 'acumin-pro', sans-serif;
    color: #fff;
    margin-bottom: 54px;
    color: #3d7485;
    font-weight: 700;
    z-index: 1;
    margin-bottom: 0 !important;
}

@media only screen and (max-width:1800px) {
    .single-post-blog .Categories .back-link:after {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .single-post-blog .Categories .back-link:after {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 0.9rem;
    }
}

.single-post-blog .Categories .back-link:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #78e6c2;
    transform: translateX(-100%);
    transition: all 350ms ease-in-out;
}

body:not(.home) #home-hire-us {
    position: relative;
    z-index: 6;
    padding: 183px 25px 105px;
}

body:not(.home) #home-hire-us .wrap {
    width: 1240px;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

body:not(.home) #home-hire-us h2 {
    font: 400 55px/73px 'albra', serif;
    text-align: center;
    margin-bottom: 67px;
}

body:not(.home) #home-hire-us img {
    display: block;
    margin: 0 auto 29px;
}

body:not(.home) #home-hire-us h3 {
    font: 400 32px/44px 'acumin-pro', sans-serif;
}

body:not(.home) #home-hire-us p {
    font: 400 18px/26px 'acumin-pro', sans-serif;
    margin-bottom: 1em;
}

body:not(.home) #home-hire-us .why-cols {
    display: flex;
    justify-content: space-between;
}

body:not(.home) #home-hire-us .why-cols>div {
    width: 240px;
    max-width: 23%;
}

@media (min-width:1751px) and (min-height:881px) {
    body:not(.home) #home-hire-us {
        padding: 254px 25px 105px;
    }

    body:not(.home) #home-hire-us .wrap {
        width: 1732px;
    }

    body:not(.home) #home-hire-us h2 {
        font-size: 72px;
        line-height: 96px;
        margin-bottom: 100px;
    }

    body:not(.home) #home-hire-us img {
        margin-bottom: 40px;
    }

    body:not(.home) #home-hire-us h3 {
        font-size: 45px;
        line-height: 63px;
    }

    body:not(.home) #home-hire-us p {
        font-size: 24px;
        line-height: 34px;
    }

    body:not(.home) #home-hire-us .why-cols>div {
        width: 335px;
    }
}

@media (max-width:980px) {
    body:not(.home) #home-hire-us {
        padding: 92px 25px 50px;
    }

    body:not(.home) #home-hire-us h2 {
        font-size: 38px;
        line-height: 51px;
        margin-bottom: 57px;
    }

    body:not(.home) #home-hire-us .why-cols {
        flex-wrap: wrap;
        max-width: 680px;
        margin: 0 auto;
    }

    body:not(.home) #home-hire-us .why-cols>div {
        position: relative;
        padding: 0 0 50px 114px;
        max-width: 45%;
        width: 337px;
        box-sizing: border-box;
    }

    body:not(.home) #home-hire-us img {
        margin: 0;
        width: 90px;
        height: auto;
        position: absolute;
        top: 0;
        left: 0;
    }

    body:not(.home) #home-hire-us h3 {
        font-size: 30px;
        line-height: 42px;
    }
}

@media (max-width:660px) {
    body:not(.home) #home-hire-us .why-cols {
        display: block;
    }

    body:not(.home) #home-hire-us .why-cols>div {
        max-width: 100%;
        width: 100%;
    }
}

.Testimonial-btn {
    border: none;
    background: transparent;
}

.Testimonial-btn:not(.shortcode) {
    position: absolute;
    right: 31px;
    bottom: 0;
}

@media only screen and (max-width:800px) {
    .Testimonial-btn:not(.shortcode) {
        bottom: -22px;
    }
}

.Testimonial-btn .button-container {
    position: relative;
}

.Testimonial-btn .button-container .animated-button {
    position: absolute;
    display: inline-block;
    transform: translate(-100%);
    transition: opacity 250ms 0;
    z-index: 1;
}

.Testimonial-btn .button-container .animated-button.hidden {
    display: none;
    transform: translate(-100%, -100vh);
}

.Testimonial-btn .button-container .animated-button:not(.hidden) {
    animation-duration: 1s;
    animation-name: bounce;
    animation-timing-function: ease-out;
}

.Testimonial-btn .button-container .animated-button.pulse {
    animation-duration: 0.7s;
    animation-name: pulse;
    animation-timing-function: linear;
    animation-iteration-count: 4;
}

.Testimonial-btn .button-container .animated-button .chat {
    position: relative;
    width: 106px;
    height: 106px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../../../uploads/2022/07/testimonial-icon.png');
}

@media only screen and (max-width:1800px) {
    .Testimonial-btn .button-container .animated-button .chat {
        width: 76px;
        height: 75px;
    }
}

@media only screen and (max-width:850px) and (max-width:850px) {
    .Testimonial-btn .button-container .animated-button .chat {
        width: 48px;
        height: 48px;
    }
}

.Testimonial-btn .button-container .animated-button .star {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -55%);
    width: 62px;
    height: 57px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236873F8' stroke='%236873F8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'%3E%3C/polygon%3E%3C/svg%3E");
}

@media only screen and (max-width:1800px) {
    .Testimonial-btn .button-container .animated-button .star {
        width: 44px;
        height: 42px;
    }
}

@media only screen and (max-width:850px) and (max-width:850px) {
    .Testimonial-btn .button-container .animated-button .star {
        width: 28px;
        height: 26px;
    }
}

.Testimonial-btn.shortcode {
    float: right;
}

.Testimonial-btn.shortcode .button-container {
    transform: translateX(100%);
}

.Testimonial-btn.shortcode .button-container .animated-button {
    position: relative;
}

.Testimonial-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 0, 72, 0.75);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    opacity: 0;
    transition: all 250ms ease;
}

.Testimonial-modal.show {
    opacity: 1;
}

.Testimonial-modal.show .popup {
    transform: scale(1);
    opacity: 1;
}

@media only screen and (max-width:800px) {
    .Testimonial-modal {
        padding-top: 97px;
    }
}

.Testimonial-modal .wrap {
    padding-left: 28px;
    padding-right: 31px;
    max-width: 1500px;
    margin: 0 auto;
    box-sizing: content-box;
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

@media only screen and (max-width:1800px) {
    .Testimonial-modal .wrap {
        max-width: 1067px;
    }
}

.Testimonial-modal .popup {
    background: #fff;
    padding: 130px 76px 86px 194px;
    border-radius: 59px;
    max-width: 1020px;
    position: relative;
    width: 68%;
    box-sizing: border-box;
    transform: scale(0.1);
    opacity: 0;
    transition: all 250ms ease;
}

.Testimonial-modal .popup:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    border-top: 179px solid #fff;
    border-left: 211px solid transparent;
    border-right: 0px solid transparent;
    transform: translate(-50%, 50%);
}

@media only screen and (max-width:1800px) {
    .Testimonial-modal .popup {
        max-width: 725px;
        padding: 93px 53px 35px 138px;
        width: 100%;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .Testimonial-modal .popup {
        width: auto;
        border-radius: 30px;
        padding: 122px 28px 35px 32px;
    }

    .Testimonial-modal .popup:before {
        transform: translate(-60px, 25%);
    }
}

.Testimonial-modal .popup .close {
    position: absolute;
    top: 0;
    right: 0;
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236873f8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-x'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-x'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
    width: 64px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #6873f8;
    border: none;
    transform: translate(25%, -25%);
}

@media only screen and (max-width:1800px) {
    .Testimonial-modal .popup .close {
        width: 46px;
        transform: translate(15%, -15%);
    }
}

.Testimonial-modal .popup .content {
    position: relative;
}

.Testimonial-modal .popup .content:before {
    content: '';
    position: absolute;
    left: -12px;
    top: 0;
    width: 132px;
    height: 138px;
    background-repeat: no-repeat;
    transform: translate(-100%, -11px);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='132' height='395' viewBox='0 0 132 395'%3E%3Ctext id='_' data-name='“' transform='translate(66 304)' fill='%236873f8' font-size='395' font-family='Helvetica' opacity='0.5'%3E%3Ctspan x='-65.769' y='0'%3E“%3C/tspan%3E%3C/text%3E%3C/svg%3E%0A");
}

@media only screen and (max-width:1800px) {
    .Testimonial-modal .popup .content:before {
        width: 91px;
        height: 91px;
        background-size: cover;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .Testimonial-modal .popup .content:before {
        width: 78px;
        height: 78px;
        left: 0;
        top: -10px;
        transform: translate(0, -100%);
    }
}

@media only screen and (max-width:800px) {
    .Testimonial-modal .popup .content .content-wrapper {
        max-height: 50vh;
        overflow-y: scroll;
    }
}

.Testimonial-modal .popup .content p {
    font: 400 24px/34px 'acumin-pro', sans-serif;
    color: #fff;
    color: #030448;
}

@media only screen and (max-width:1800px) {
    .Testimonial-modal .popup .content p {
        font-size: 18px;
        line-height: 26px;
    }
}

.Testimonial-modal .popup .content * {
    color: #030448;
}

.Testimonial-modal .popup .content .disclaimer {
    font: 400 18px/21px 'acumin-pro', sans-serif;
    color: #030448;
    font-style: italic;
    margin-top: 30px;
}

@media only screen and (max-width:1800px) {
    .Testimonial-modal .popup .content .disclaimer {
        font-size: 16px;
        line-height: 19px;
    }
}

@media only screen and (max-width:800px) {
    .Testimonial-modal .popup .content .disclaimer {
        font-size: 14px;
        line-height: 17px;
    }
}

.Wysiwyg {
    margin-bottom: 54px;
}

@media only screen and (max-width:1800px) {
    .Wysiwyg {
        margin-bottom: 38px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .Wysiwyg {
        margin-bottom: 32px;
    }
}

.Wysiwyg .wrap {
    padding-left: 28px;
    padding-right: 31px;
    max-width: 1500px;
    margin: 0 auto;
    box-sizing: content-box;
}

@media only screen and (max-width:1800px) {
    .Wysiwyg .wrap {
        max-width: 1067px;
    }
}

.Wysiwyg .wrap--interior {
    max-width: 964px;
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 31px;
    box-sizing: content-box;
}

@media only screen and (max-width:1800px) {
    .Wysiwyg .wrap--interior {
        max-width: 657px;
    }
}

.Wysiwyg .divider {
    border: 0;
    height: 5px;
    background-color: #78e6c2;
    width: 100%;
    margin: 0 auto;
    margin: 61px 0;
}

@media only screen and (max-width:1800px) {
    .Wysiwyg .divider {
        height: 4px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .Wysiwyg .divider {
        height: 3px;
    }
}

@media only screen and (max-width:1800px) {
    .Wysiwyg .divider {
        margin: 44px 0;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .Wysiwyg .divider {
        margin: 32px 0;
    }
}

.Wysiwyg .container {
    display: flex;
    gap: 30px;
}

@media only screen and (max-width:1800px) {
    .Wysiwyg .container {
        gap: 21px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .Wysiwyg .container {
        flex-direction: column;
        gap: 32px;
    }
}

.Wysiwyg .container--thirds .left-col {
    flex: 1 1 33%;
}

.Wysiwyg .container--thirds .right-col {
    flex: 1 1 66%;
}

.Wysiwyg .container--halves {
    gap: 95px;
}

@media only screen and (max-width:1800px) {
    .Wysiwyg .container--halves {
        gap: 67px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .Wysiwyg .container--halves {
        gap: 32px;
    }
}

.Wysiwyg .container--halves .left-col {
    flex: 1 1 50%;
}

.Wysiwyg .container--halves .right-col {
    flex: 1 1 50%;
}

.Wysiwyg .container--halves .vertical-divider {
    width: 5px;
    background-color: #78e6c2;
}

@media only screen and (max-width:1800px) {
    .Wysiwyg .container--halves .vertical-divider {
        width: 4px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .Wysiwyg .container--halves .vertical-divider {
        width: 3px;
        display: none;
    }
}

.Wysiwyg .container .content.full-width {
    flex: 1 1 auto;
}

.Wysiwyg .container .content.one-third {
    flex: 0 1 33%;
}

.Wysiwyg .container .content.one-half {
    flex: 0 1 50%;
}

.Wysiwyg .container .content.two-thirds {
    flex: 0 1 66%;
}

.Wysiwyg .container .content.two-thirds>*:not(h1) {
    max-width: 806px;
}

@media only screen and (max-width:1800px) {
    .Wysiwyg .container .content.two-thirds>*:not(h1) {
        max-width: 573px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .Wysiwyg .container .content.two-thirds>*:not(h1) {
        max-width: 100%;
    }
}

@media only screen and (max-width:800px) {
    .Wysiwyg .container .content {
        flex: 1 1 auto;
    }
}

.Our-services .wrap {
    padding-left: 28px;
    padding-right: 31px;
    max-width: 1500px;
    margin: 0 auto;
    box-sizing: content-box;
}

@media only screen and (max-width:1800px) {
    .Our-services .wrap {
        max-width: 1067px;
    }
}

.Our-services .divider {
    border: 0;
    height: 5px;
    background-color: #78e6c2;
    width: 100%;
    margin: 0 auto;
    margin: 61px 0;
}

@media only screen and (max-width:1800px) {
    .Our-services .divider {
        height: 4px;
    }
}

@media only screen and (max-width:800px) and (max-width:800px) {
    .Our-services .divider {
        height: 3px;
    }
}

.Our-services .content {
    margin-bottom: 54px;
}

@media only screen and (max-width:800px) {
    .Our-services .content {
        margin-bottom: 32px;
    }
}

@media only screen and (max-width:800px) {
    .Our-services .columns .container {
        gap: 0;
    }
}