@font-face {
    font-family: 'Advisor';
    src: url('./assets/fonts/advisor-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Advisor';
    src: url('./assets/fonts/advisor-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
html {
    box-sizing: border-box;
}
*,
*:before,
*:after {
    box-sizing: inherit;
}
body {
    margin: 0;
}
body,
input,
select,
textarea,
button {
    font-family: "Advisor", Arial, Helvetica, sans-serif;
    color: #232323;
    font-size: 1.125rem;
    line-height: 1.75;
}
a {
    background-color: transparent;
}
.site-header {
    position: sticky;
    background: #181716;
    color: #cbcbcb;
    z-index: 1000;
    top: 0;
}
.header-container {
    position: relative;
    text-align: right;
    padding: 15px;
}
.menu-toggle {
    position: absolute;
    left: 15px;
    top: 15px;
    width: 20px;
    height: 24px;
    cursor: pointer;
    z-index: 1000;
}
.site-header svg {
    fill: #fff;
    height: 24px;
    width: 20px;
    transition: opacity 0.3s ease;
}
.site-header svg.close {
    display: none;
    opacity: 0;
}
.logo {
    line-height: 24px;
}
.logo a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
}
.logo span {
    text-transform: uppercase;
}
.site-navigation {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background: #222424;
    transition: left 0.3s ease;
    z-index: 1001;
    margin: 54px 0 0 0;
    text-align: left;
    overflow-y: auto;
}
.site-navigation ul {
    padding: 0;
    list-style-type: none;
    margin: 0;
    font-size: 15px;
}
.site-navigation ul li {
    position: relative;
    padding: 0;
}
.site-navigation ul > li a,
.submenu-trigger {
    display: block;
    padding: 10px 20px;
}
.site-navigation ul li a,
.site-navigation ul li div {
    color: #cbcbcb;
    text-decoration: none;
    cursor: pointer;
}
.site-navigation .submenu {
    display: none;
    background: #181716;
}
ul.submenu li a {
    padding: 10px 20px 10px 30px;
    transition: all .3s ease;
}
ul.submenu li a:hover {
    background: #000000;
}
.expandable div {
    position: relative;
}
.chevron-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease;
}
.chevron-arrow::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border: solid #bfc8fb;
    border-width: 0 2px 2px 0;
}
.expandable.expanded .chevron-arrow {
    transform: translateY(-50%) rotate(-135deg);
}
body.menu-open .site-navigation {
    left: 0;
}
body.menu-open .menu-toggle .open {
    display: none;
    opacity: 0;
}
body.menu-open .menu-toggle .close {
    display: block;
    opacity: 1;
}
#main-content {
    position: relative;
    z-index: 1;
}
#main-content a {
    color: #4657a1;
    text-decoration: none;
}
#main-content a:hover {
    text-decoration: underline;
}
.container {
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
}
.flex {
    display: flex;
}
.flex-wrap {
    flex-wrap: wrap;
}
.items-center {
    align-items: center;
}
.justify-center {
    justify-content: center;
}
.break-word {
    word-break: break-word;
}
.unstyled {
    list-style: none;
}
.hero {
    overflow: hidden;
}
.banner {
    background: #4657a1;
    color: #fff;
}
.banner,
.categories {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.hero-image {
    display: none;
}
h1 {
    font-size: 48px;
    line-height: 53px;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}
.hero h1 {
    margin-top: 0;
}
.single h1,
.page h1 {
    font-size: 24px;
    line-height: 30px;
}
.banner-text ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.banner-text li {
    position: relative;
    padding-left: 26px;
    line-height: 30px;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}
.banner-text li:before {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTIgNy4yODYgMy4zNyAzLjMwNCA4LjQyNy04LjI2IiBzdHJva2U9IiM3MkQ5QUQiIHN0cm9rZS13aWR0aD0iMi43NzYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjwvc3ZnPg==) no-repeat;
    content: "";
    display: inline-block;
    height: 12px;
    left: 0;
    position: absolute;
    top: 10px;
    width: 16px;
}
.categories ul {
    margin: 0;
    padding: 0;
    gap: 20px;
}
.categories li {
    width: 100%;
}
.categories a {
    display: flex;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px 15px;
    color: #0b1d73;
    align-items: center;
    flex-grow: 1;
    min-height: 60px;
    transition: all .3s ease;
}
.categories a:hover {
    background: #4657a1;
    color: #fff;
}
.category-icon {
    display: block;
    height: 40px;
    margin-right: 15px;
    width: 40px;
}
.category-title {
    line-height: 23px;
}
#best-providers li {
    display: none;
}
.best-providers-buttons {
    text-align: center;
    margin: 10px 0;
}
.toggle-best-providers {
    border: 0;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    padding: 5px 15px;
    color: #0b1d73;
    text-decoration: underline;
    background: none;
}

#best-providers li.visible {
    display: flex;
}

.toggle-best-providers {
    display: inline-block;
}

#less-best-providers {
    display: none;
}
#main-content {
    font-size: 1rem;
}
.author {
    font-size: 12px;
    line-height: 24px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    position: relative;
}
.authors img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}
.author-image-wrapper {
    margin-right: 8px;
    cursor: pointer;
}
.author a {
    text-decoration: none;
    font-weight: 700;
    color: #000
}
.author-role {
    color: #999;
}
.author-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}
.author-modal-content {
    background-color: #fefefe;
    padding: 20px 15px 15px 15px;
    border: 1px solid #999;
    width: 90%;
    max-width: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.author-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    margin-top: -15px;
    margin-right: -5px;
}
.author-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 10px;
}

.author-links a {
    display: inline-flex;
    align-items: center;
}

.author-links svg {
    width: 18px;
    height: 18px;
}
.date {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
    margin-bottom: 24px;
}
.date span {
    display: none;
}
.featured-image {
    height: auto;
    max-width: 100%;
    vertical-align: top;
}
.site-footer {
    background: #dedede;
    color: #333;
    overflow: hidden;
}
.copyright {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
    font-size: 12px;
    text-align: center;
}
.footer-links {
    font-size: 0;
    text-align: center;
    margin: 0 0 30px 0;
    padding: 0;
}
.footer-links li {
    display: block;
    font-size: 12px;
}
.article ul {
    padding-left: 20px;
}
.article ol {
    padding-left: 27px;
}
.article h2:not(:first-child) {
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid #333;
}
.footer-links a {
    color: #333;
    text-decoration: none;
    display: block;
}
.site-footer .logo {
    margin: 30px auto;
    display: block;
    text-align: center;
}
.site-footer .logo a {
    color: #333;
}
.author-header {
    text-align: center;
    background: #f5f7ff;
    margin: 0 -15px;
    padding: 12px 15px 16px;
}
.author-bio {
    background: #4657a1;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    border-radius: 10px;
    padding: 20px;
    margin-top: 35px;
    margin-bottom: 24px;
}
.author-bio-heading {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 8px;
    margin-top: 0;
}
.authorpage .image-wrapper {
    text-align: center;
    margin-top: 32px;
    margin-bottom: 24px;
}
.authorpage .image-wrapper img {
    border-radius: 50%;
    vertical-align: top;
}
.authorpage h1 {
    text-align: center;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    color: #4657a1;
}
.author-role {
    text-transform: capitalize;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #475569;
    text-align: center;
}
ul.similar-titles {
    list-style: none;
    padding: 0;
    margin: 0;
}
.related-content h2 {
    font-size: 18px;
    border-bottom: 1px solid #ccc;
    line-height: 20px;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.contact-form {
    display: flex;
    flex-direction: column-reverse;
}
.contact-left,
.contact-right {
    width: 100%;
}
.contact-left {
    flex: none;
}
.website-form {
    padding: 2rem 1rem;
    background: #fff;
    box-shadow: 0 6px 9px rgba(0,0,0,.06);
    border-radius: .5rem;
    margin-bottom: 2rem;
}
.form-part {
    margin-bottom: 1.5rem;
}
form label {
    display: block;
    margin-bottom: .75rem;
}
form input,
form textarea {
    padding-left: 1rem;
    padding-right: 1rem;
    background: #fff;
    border: 1px solid #dadada;
    line-height: 1.75rem;
    width: 100%;
    border-radius: .5rem;
}
form input {
    height: 56px;
}
form textarea {
    padding-top: 1rem;
    height: 120px;
}
input[type="submit"] {
    background: #35b782;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    line-height: 2rem;
    border: 0;
    cursor: pointer;
    -webkit-appearance: button;
    color: #fff;
    transition: all .3s ease;
}
input[type="phone"] {
    appearance: none;
    -webkit-appearance: none;
}
input[type="submit"]:hover {
    background: #2fa575;
}
::placeholder {
    font-size: 16px;
    color: #aaa;
}
form select {
    width: 100%;
    height: 56px;
    background: #fff;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.133 1.066 7 6.566l5.867-5.5' stroke='%2364748B' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-position: right 21px center;
    background-repeat: no-repeat;
    padding-right: 21px;
    padding-left: 21px;
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #dadada;
    border-radius: .25rem;
}
.page h1 {
    padding: 30px 15px;
    background: #f5f7ff;
}
@media screen and (min-width: 320px) {
    .header-container {
        text-align: center;
    }
    .logo {
        margin-left: 17.5px;
    }
}
@media screen and (min-width: 480px) {
    .authors {
        display: flex;
        justify-content: space-between;
    }
    .author {
        flex-basis: 48%;
    }
    .footer-links li {
        display: inline-block;
    }
    .footer-links li:not(:first-child) {
        margin-left: 10px;
    }
    .date span {
        display: unset;
    }
}
@media screen and (min-width: 768px) {
    .banner-text {
        width: 55%;
    }
    .banner-image {
        display: block;
        width: 45%;
    }
    .categories {
        background: #4657a1;
    }
    .categories li {
        flex: 1 1 calc(50% - 20px);
        flex-direction: column;
        display: flex;
    }
    .categories a {
        background: #fff;
        min-height: 70px;
    }
    .categories a:hover {
        background: #4657a1;
        color: #fff;
    }
    #best-providers li {
        display: flex;
    }
    .toggle-best-providers {
        display: none;
    }
    .date {
        justify-content: flex-end;
    }
    .date > :first-child {
        margin-right: 10px;
    }
    .author-modal-content {
        max-width: 400px;
    }
    .single h1,
    .page h1 {
        font-size: 32px;
        line-height: 44px;
    }
}
@media screen and (min-width: 992px) {
    .categories li {
        flex: 1 1 calc(25% - 20px);
    }
    .categories a {
        flex-direction: column;
    }
    .category-icon {
        margin: 0 auto 10px auto;
    }
    .category-title {
        text-align: center;
    }
    .post-wrapper {
        display: flex;
        flex-wrap: wrap;
    }
    .related-content {
        width: 270px;
        margin-left: 30px;
    }
    .post {
        width: calc(100% - 300px)
    }
    #main-content {
        font-size: 1.125rem;
    }
}
@media screen and (min-width: 1024px) {
    .single h1,
    .page h1 {
        font-size: 48px;
        line-height: 59px;
    }
    .contact-form {
        flex-direction: row;
    }
    .contact-left {
        max-width: 680px;
        padding-right: 30px;
    }
}