/* ------------------------------------------------------------ *\
	Corp-lp Shell
\* ------------------------------------------------------------ */
.wrapper .shell,
.wrapper .header-alt .shell-alt,
body .footer .shell-alt {
    max-width: calc(160rem + 1.6rem * 2);
}

/* ------------------------------------------------------------ *\
	Header
\* ------------------------------------------------------------ */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.8rem 0;
    z-index: 100;
}

body .wrapper {
    overflow: visible;
}

.wrapper .header-alt {
    position: sticky;
    top: 0;
}

.header-alt.shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.header .header__inner {
    padding-right: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .header__btn {
    min-width: 16.2rem;
    font-weight: 400;
    min-height: 4.3rem;
    line-height: 4.3rem;
    font-size: 2.4rem;
}

.header .header__nav {
    padding-bottom: 0.2rem;
}

@media only screen and (max-width: 767px) {
    .header {
        padding: 1.6rem 0;
    }

    .header__logo {
        display: inline-block;
    }

    .header .header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: calc(100vh - 100%);
        background-color: var(--nav-background-color);
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: auto;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    }

    .header .header__nav.is-active {
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    body .wrapper {
        overflow: hidden;
    }

    .wrapper .header-alt {
        position: relative;
    }

    .header-alt.shadow {
        box-shadow: none;
    }
}

/* ------------------------------------------------------------ *\
	nav trigger
\* ------------------------------------------------------------ */

.nav-trigger {
    position: relative;
    width: 2.7rem;
    height: 1.7rem;
    display: none;
    margin-right: -0.7rem;
}

.nav-trigger span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.3rem;
    background-color: var(--nav-icon-color);
    border-radius: 2rem;
    transition: all 0.3s;
}

.nav-trigger span:first-child {
    top: 0;
}

.nav-trigger span:nth-child(2) {
    top: 0.7rem;
}

.nav-trigger span:last-child {
    top: 1.4rem;
}

.nav-trigger.is-active span:nth-child(2) {
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
}

.nav-trigger.is-active span:first-child {
    top: 0.7rem;
    transform: rotate(45deg);
}

.nav-trigger.is-active span:last-child {
    top: 0.7rem;
    transform: rotate(-45deg);
}

@media only screen and (max-width: 767px) {
    .nav-trigger {
        display: block;
    }

    .nav-trigger.is-active span {
        background-color: white;
    }
}

/* ------------------------------------------------------------ *\
	Nav
\* ------------------------------------------------------------ */

.nav ul {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.nav li {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--nav-text-color);
}

.nav li a {
    color: white;
    text-decoration: none;
}

@media only screen and (max-width: 767px) {
    .nav ul {
        display: block;
        text-align: center;
    }

    .nav .nav-phone-number {
        font-size: 2.4rem;
        font-weight: 600;
    }

    .nav li {
        font-size: 1.6rem;
        color: white;
    }

    .nav li + li {
        margin-left: 0;
        margin-top: 2.4rem;
    }
}

/* ------------------------------------------------------------ *\
	main
\* ------------------------------------------------------------ */

.main {
    background-color: var(--body-background-color);
    flex: 1 0 auto;
    position: relative;
    z-index: 1;
}

/* ------------------------------------------------------------ *\
	btn

	Basic classes for all buttons throgh out all pages.
\* ------------------------------------------------------------ */

.btn {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    appearance: none;
    border-radius: 0.8rem;
    background-color: var(--button-background-primary);
    border: 0;
    padding: 0 1.5rem;
    min-height: 5.2rem;
    line-height: 5.2rem;
    font-family: var(--button-text-font);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: -0.006em;
    color: var(--button-text-color);
    position: relative;
}

.btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--button-background-primary);
    border-radius: 0.8rem;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s, visibility 0.3s;
}

.btn span {
    z-index: 1;
    position: relative;
}

@media (hover: hover) {
    .btn:hover:after {
        opacity: 0;
        visibility: hidden;
    }
}

/*  btn blue  */

.btn--blue {
    color: var(--button-text-color);
    border: 2px solid var(--button-stroke-color-secondary);
    background: var(--button-background-secondary);
}

.btn--blue:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--button-background-secondary);
    border-radius: 3px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s, visibility 0.3s;
}

/* ------------------------------------------------------------ *\
	Hero
\* ------------------------------------------------------------ */

.hero {
    padding: 2.2rem 0 4.8rem;
    background: var(--hero-background-color-prominent);
    color: var(--hero-text-color-prominent);
    font-size: 2.2rem;
}

.hero .hero__inner {
    display: flex;
    flex-direction: row;
}

.hero__inner__search {
    position: relative;
    background: var(--hero-background-color-accent);
    padding: 4rem 4rem 6.2rem;
    border-radius: 1.6rem 0 0 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero__inner__search .search .search__controls {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.hero .hero__inner__search__tag-line {
    font-size: 2.1rem;
    font-weight: 600;
    padding-bottom: 1.6rem;
    padding-top: 3.6rem;
    max-width: 75%;
}

.hero .hero__inner__search__paragraph {
    padding-bottom: 2rem;
    font-size: 2rem;
}

.hero h1 {
    font-weight: 700;
    font-size: 4.8rem;
    max-width: 115.5rem;
    margin: 0 0 4rem;
    color: var(--hero-text-color-prominent);
}

.hero h1 b {
    font-weight: 900;
}

.hero b {
    font-weight: 600;
}

.hero .hero__head {
    text-align: center;
    margin-bottom: 8rem;
}

.hero .hero__entry {
    color: var(--hero-text-color-subtle);
    font-style: italic;
    font-weight: 400;
}

.hero .hero__body {
    display: contents;
    padding-bottom: 1.6rem;
}

.hero .hero__body .tabs {
    padding-bottom: 1.6rem;
}

.hero .search__ai {
    text-align: left;
    padding-bottom: 0.8rem;
    font-size: 1.4rem;
}

.hero .search__meta {
    font-size: 1.4rem;
    text-align: left;
    display: block;
    width: 100%;
}

.hero .hero__accent-dots {
    position: absolute;
    top: 40px;
    right: 40px;
    height: 80px;
    width: 80px;
}

.hero .search__meta i {
    margin-right: 0.4rem;
}

@media only screen and (max-width: 1040px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero .hero__inner__search__paragraph {
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 767px) {
    .hero {
        padding: 1.6rem 0;
        font-size: 1.8rem;
    }

    .hero h1 {
        margin-bottom: 2rem;
    }

    .hero .hero__inner__search__tag-line {
        font-size: 1.8rem;
    }

    .hero .hero__inner {
        display: flex;
        flex-direction: column;
        gap: 1.6rem;
    }

    .hero .hero__inner__search {
        border-radius: 1.6rem;
        padding: 1.6rem 1.6rem 2.4rem;
    }

    .hero .hero__accent-dots {
        top: 16px;
        right: 16px;
    }

    .hero .hero__head {
        text-align: left;
        margin-bottom: 4rem;
    }

    .hero .hero__entry {
        padding: 0rem 0.7rem;
    }

    .hero .search__ai {
        font-size: 1.8rem;
        text-align: center;
    }

    .hero .search__meta {
        font-size: 1.3rem;
        text-align: center;
    }
    .hero .search__summary__report {
        font-size: 1.5rem;
        margin-top: 2rem;
        text-align: center;
    }

    .hero .hero__body {
        display: contents;
    }
}

@media only screen and (min-width: 768px) {
    .hero .hero__inner__search {
        text-align: center;
        border-radius: 1.6rem;
    }
    .hero .hero__inner__search__tag-line {
        max-width: unset;
    }
    .hero .hero__inner__search__paragraph {
        align-self: center;
        max-width: 69rem;
    }
    .hero h1 {
        align-self: center;
        max-width: 90%;
    }

    .hero .search__ai {
        margin-top: 1.2rem;
        text-align: center;
    }
    .hero .search__meta {
        text-align: center;
    }
    .hero .search__summary__report {
        margin-top: 2rem;
        font-size: 1.8rem;
        text-align: center;
    }

    .hero__inner__search .search .search__controls,
    .section__search__content .search .search__controls {
        align-items: center;
        flex-direction: row;
        gap: 1rem;
    }

    .search .search__field {
        margin-bottom: 0;
    }
}

/* ------------------------------------------------------------ *\
	Tabs
\* ------------------------------------------------------------ */

.tabs__head .tabs__nav {
    width: 100%;
    max-width: 42.3rem;
    margin: 0 auto 3rem;
}

.tabs__head .tabs__nav ul {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0rem -1.6rem;
}

.tabs__head .tabs__nav li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0rem 1.6rem 1.2rem;
    position: relative;
    text-transform: uppercase;
    text-align: center;
}

.tabs__head .tabs__nav li:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 1.6rem;
    width: calc(100% - 3.2rem);
    height: 0.5rem;
    background-color: var(--tab-body-background-color);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.tabs__head .tabs__nav li.is-current:after {
    transform: none;
}

.tabs__head .tabs__nav li.is-current a,
.tabs__head .tabs__nav li:hover a {
    color: var(--anchor-text-color-white);
}

.tabs__head .tabs__nav a {
    text-decoration: none;
    font-size: 1.8rem;
    color: var(--hero-text-color-subdued);
    transition: color 0.4s;
}

@media only screen and (max-width: 767px) {
    .tabs .tabs__body {
        max-width: 42.3rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.tabs .tab {
    display: none;
}

.tabs .tab.is-current {
    display: block;
}

@media only screen and (max-width: 767px) {
    .tabs__head .tabs__nav ul {
        margin: 0;
    }

    .tabs__head .tabs__nav li {
        padding: 0rem 0rem 1.3rem;
    }

    .tabs__head .tabs__nav li:after {
        width: calc(100%);
        left: 0;
    }
}

/* ------------------------------------------------------------ *\
	Search

	Basic classes for all search fields throgh out all pages.
\* ------------------------------------------------------------ */

.search {
    position: relative;
    max-width: 69rem;
    width: 100%;
    margin: 0 auto;
}

.search .search__controls {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

.search .search__label {
    display: none;
}

.search .search__field {
    padding: 0 1.5rem;
    min-height: 5.2rem;
    background: var(--input-background-color-default);
    border: 0.1rem solid var(--input-border-color-default);
    border-radius: 0.8rem;
    font-size: 1.8rem;
    line-height: 0.095;
    letter-spacing: -0.008em;
    width: 100%;
    max-width: 45.8rem;
    margin-bottom: 0.8rem;
    color: var(--input-text-color-default);
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.4s;
}

.search .search__field:focus,
.search .search__field:active {
    border: 2px solid var(--semantic-color-success);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}

.search .search__field::-webkit-input-placeholder {
    color: var(--input-text-color-placeholder);
}

.search .search__field:-moz-placeholder {
    color: var(--input-text-color-placeholder);
}

.search .search__field::-moz-placeholder {
    color: var(--input-text-color-placeholder);
}

.search .search__field::-ms-input-placeholder {
    color: var(--input-text-color-placeholder);
}

.search .search__field::placeholder {
    color: var(--input-text-color-placeholder);
}

.search.is-disabled .search__field,
.search .search__field:disabled {
    background-color: var(--input-background-color-disabled);
    border-color: var(--input-border-color-disabled);
    pointer-events: none;
    opacity: 1;
}

.search.has-error .search__field {
    background: var(--input-background-color-error);
    border-color: var(--input-border-color-error);
    color: var(--input-text-color-error);
}

.search.has-error .search__field:focus {
    box-shadow: none;
}

.search .search__btn {
    width: 100%;
    max-width: 45.8rem;
}

.search .search__error {
    display: inline-block;
    position: relative;
    width: 100%;
    max-width: 45.8rem;
    background: var(--input-background-color-default);
    border: 0.1rem solid var(--input-errormessage-border-color);
    color: var(--input-text-color-error);
    font-size: 1.4rem;
    border-radius: 0.8rem;
    margin-top: 0.6rem;
    padding: 0.6rem 1.2rem;
    margin-left: 0;
    transition: transform 0.4s;
    transform-origin: center top;
    transform: scaleY(0);
    pointer-events: none;
    position: absolute;
    filter: drop-shadow(0 0.4rem 0.4rem var(--input-errormessage-dropshadow));
}

.search.has-error .search__error {
    position: relative;
    transform: none;
}

.search .search__error:before {
    content: "";
    position: absolute;
    left: 1rem;
    bottom: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0.75rem 0.5rem 0.75rem;
    border-color: transparent transparent var(--input-errormessage-border-color)
        transparent;
}

.search .search__meta {
    display: block;
    max-width: 50%;
    text-align: center;
    margin: 2.2rem auto 0;
    font-size: 1.4rem;
    letter-spacing: -0.008em;
    color: var(--hero-text-color-subtle);
}

.search .search__meta i {
    margin-right: 0.4rem;
}

.search.is-disabled .search__btn:after,
.search .search__btn:disabled:after {
    pointer-events: none;
    background: linear-gradient(
            180deg,
            var(--button-primary-overlay-highlight) 0%,
            var(--button-primary-overlay-shade) 100%
        ),
        var(--input-background-color-disabled);
}

.search.is-disabled .search__btn,
.search .search__btn:disabled {
    background: linear-gradient(
            180deg,
            var(--button-primary-overlay-highlight) 0%,
            var(--button-primary-overlay-shade) 100%
        ),
        var(--input-background-color-disabled);
}

@media only screen and (max-width: 767px) {
    .search form {
        display: flex;
        flex-direction: column;
    }

    .search .search__controls {
        display: contents;
    }

    .search .search__field {
        max-width: 100%;
        margin-bottom: 0.8rem;
        margin-right: 0;
        order: -2;
    }

    .search .search__btn {
        max-width: 100%;
    }

    .search .search__error {
        order: -1;
        margin-top: -0.7rem;
        max-width: 100%;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        padding: 0.7rem 0.9rem;
    }

    .search .search__meta {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    .search .search__meta svg {
        max-width: 1rem;
        max-height: 1.2rem;
    }
}

@media only screen and (min-width: 768px) {
    .search .search__field {
        margin-bottom: 0;
    }
    .search .search__btn {
        width: 100%;
        max-width: calc(100% - 46.7rem);
        font-size: 2.1rem;
    }
}

/* ------------------------------------------------------------ *\
	Section stats
\* ------------------------------------------------------------ */

.section-stats {
    text-align: center;
    padding: 0 0 4.8rem;
    position: relative;
}

.section-stats h2 {
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 6.8rem;
}

@media only screen and (max-width: 767px) {
    .section-stats {
        padding: 0 0 1.6rem;
    }

    .section-stats:after {
        display: none;
    }

    .section-stats h2 {
        max-width: 36.9rem;
        margin: 0 auto 4.8rem;
    }

    .section-stats h2 span {
        display: block;
    }
}

/* ------------------------------------------------------------ *\
	stats
\* ------------------------------------------------------------ */

.stats .stats__items {
    display: flex;
    flex-flow: row;
    gap: 2.4rem;
    max-width: 100%;
}

.stats .stats__item {
    flex: 0 0 1;
    max-width: 33%;
    width: 33%;
    padding: 2.4rem 1.6rem;
    border-radius: 16px;
    background: #f5f5f5;
}

@media only screen and (max-width: 767px) {
    .stats .stats__items {
        display: flex;
        flex-flow: row wrap;
        margin: 0;
        gap: 1.6rem;
    }

    .stats .stats__item {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        padding: 3.2rem 1.6rem;
        margin-bottom: 0rem;
    }
}

/* ------------------------------------------------------------ *\
	stat
\* ------------------------------------------------------------ */

.stat {
    position: relative;
    text-align: center;
}

.stat .stat__icon img:nth-child(2) {
    display: none;
}

.stat h3 {
    font-size: 2.4rem;
    line-height: 1.2;
    font-family: var(--semantic-text-font-primary);
    letter-spacing: -0.0215em;
    color: var(--body-text-color);
    margin-bottom: 0rem;
}

.stat .title {
    color: var(--header-text-success);
    font-weight: 900;
    letter-spacing: -0.0125em;
    margin-bottom: 0.4rem;
    font-size: 48px;
}

.stat p {
    font-size: 2rem;
    font-family: var(--semantic-text-font-primary);
    text-align: left;
}

@media only screen and (max-width: 1040px) {
    .stat p {
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 767px) {
    .stat p {
        font-size: 1.6rem;
    }

    .stat .title {
        font-size: 4.8rem;
    }

    .stat .stat__image img {
        width: 100%;
    }
}

/*  stat icon-offset  */

.stat--icon-offset .stat__icon {
    margin-bottom: 2rem;
}

@media only screen and (max-width: 767px) {
    .stat--icon-offset .stat__icon {
        margin-bottom: 2.6rem;
    }
}

/* ------------------------------------------------------------ *\
	Section AI
\* ------------------------------------------------------------ */

.section__ai {
    padding-bottom: 4.8rem;
}

.section__ai .section__inner {
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background-color: #181819;
    padding: 6.4rem;
    border-radius: 16px;
}

.section__ai .section__inner .section__inner__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section__inner__content__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
}

.section__ai .section__inner h1,
.section__ai .section__inner h3 {
    color: white;
    margin-bottom: 0;
}

.section__ai .section__inner h3 {
    font-size: 1.8rem;
    font-weight: 400;
}

.section__ai .section__inner h3 b {
    font-weight: 600;
}

.section__ai .section__inner h1 {
    font-size: 3.4rem;
    font-weight: 700;
}

.section__ai .section__inner p {
    font-size: 2rem;
}

.section__ai .section__inner .search__ai__tag {
    color: #181819;
    align-self: flex-start;
}

.section__ai .section__inner__image {
    flex: 0 0 35%;
}

@media only screen and (max-width: 1040px) {
    .section__ai .section__inner__image {
        display: none;
    }

    .section__ai .section__inner h1 {
        font-size: 2.8rem;
    }

    .section__ai .section__inner p {
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 767px) {
    .section__ai {
        padding-bottom: 1.6rem;
    }

    .section__ai .section__inner {
        padding: 3.2rem 1.6rem;
    }

    .section__ai .section__inner h1 {
        font-size: 2.4rem;
    }

    .section__ai .section__inner p {
        font-size: 1.6rem;
    }
}

/* ------------------------------------------------------------ *\
	Section Search
\* ------------------------------------------------------------ */
.section__search {
    padding-bottom: 4.8rem;
}

.section__search h2 {
    font-size: 3.4rem;
}

.section__search .section__search__content {
    position: relative;
    border-radius: 16px;
    background: #ffed78;
    display: flex;
    padding: 6.2rem 1.6rem;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
    align-self: stretch;
}

.section__search .section__search__content .hero__body {
    align-self: stretch;
}

.section__search .section__accent-dots {
    position: absolute;
    top: 40px;
    right: 40px;
    height: 80px;
    width: 80px;
}

@media only screen and (max-width: 1040px) {
    .section__search h2 {
        font-size: 2.4rem;
    }
}

@media only screen and (max-width: 767px) {
    .section__search h2 {
        text-align: center;
    }

    .section__search .section__search__content {
        padding: 3.2rem 1.6rem;
    }

    .section__search .search__ai {
        font-size: 1.8rem;
    }

    .section__search .search__meta {
        font-size: 1.3rem;
    }

    .section__search .section__accent-dots {
        display: none;
    }
}

/* ------------------------------------------------------------ *\
	Businesses
\* ------------------------------------------------------------ */

.section__businesses {
    padding-bottom: 4.8rem;
}

.section__businesses .section__businesses__content {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.section__businesses .section__businesses__content h4 {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
}

.section__businesses
    .section__businesses__content
    .section__businesses__content__businesses {
    display: flex;
    flex-direction: row;
    gap: 2.4rem;
    justify-content: space-around;
    align-items: center;
}

.section__businesses__content__businesses .businesses__business-item {
    align-self: center;
    list-style: none;
}

.section__businesses__content__businesses
    .businesses__business-item[aria-hidden="true"] {
    display: none;
}

@media screen and (max-width: 1040px) {
    .section__businesses .section__businesses__content h4 {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    .section__businesses__content__businesses__container {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        overflow: hidden;
        -webkit-mask: linear-gradient(
            90deg,
            transparent,
            white 10%,
            white 90%,
            transparent
        );
        mask: linear-gradient(
            90deg,
            transparent,
            white 20%,
            white 80%,
            transparent
        );
    }

    .section__businesses__content__businesses
        .businesses__business-item[aria-hidden="true"] {
        display: block;
    }

    .section__businesses__content__businesses .businesses__business-item {
        padding: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 0.5rem 1rem -0.25rem var(--clr-primary-900);
    }

    .section__businesses__content__businesses .businesses__business-item img {
        max-width: 100%;
        height: auto;
    }

    .section__businesses__content__businesses {
        width: max-content;
        display: flex;
        flex-wrap: nowrap;
        animation: scroll 30s linear infinite forwards;
        gap: 1.6rem;
    }

    .section__businesses__content__businesses .businesses__business-item {
        flex: 0 0 auto;
        margin-right: 0;
    }

    @keyframes scroll {
        to {
            transform: translate(calc(-50% - 0.8rem));
        }
    }
}

/* ------------------------------------------------------------ *\
	Reviews
\* ------------------------------------------------------------ */

.section__reviews {
    padding-bottom: 4.8rem;
    position: relative;
}

.section__reviews .section__reviews__content {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin: 0 6.4rem;
}

.section__reviews .section__reviews__content .reviews__review {
    flex: 0 0 33%;
    padding: var(--xl, 32px) var(--m, 16px);
    border-radius: 16px;
    background: #f5f5f5;
    box-shadow: 0px 20px 60px -10px rgba(0, 0, 0, 0.05);
}

.reviews__review .review__content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1 0 0;
    font-size: 2rem;
}

.review__content .review__author {
    font-weight: 600;
}

.review__content .review__text {
    color: #5b5b5b;
}

.section__reviews .buttons {
    display: none;
}

@media screen and (max-width: 1040px) {
    .reviews__review .review__content {
        font-size: 1.6rem;
    }

    .reviews__review .review__content .review__author {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .section__reviews .section__reviews__content {
        overflow: hidden;
        scroll-snap-type: x mandatory;
        margin: 0;
    }

    .section__reviews .reviews__review {
        scroll-snap-align: start;
        box-sizing: border-box;
        padding-left: 16px;
        padding-right: 16px;
    }

    .section__reviews .section__reviews__content .reviews__review {
        flex: 0 0 100%;
    }

    .section__reviews .section__reviews__content {
        scroll-behavior: smooth;
    }

    .section__reviews .buttons {
        display: flex;
        justify-content: space-between;
        padding-top: 1.6rem;
    }

    /* Arrow styles */
    .arrow {
        cursor: pointer;
        z-index: 10;
        border: none;
        background: none;
        padding: 1.6rem;
    }

    .left-arrow {
        transform: rotate(180deg);
    }
}

/* ------------------------------------------------------------ *\
	Blog
\* ------------------------------------------------------------ */

.section__blog {
    padding-bottom: 1.6rem;
}

.section__blog .section__blog__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4.8rem;
    border-radius: 16px;
    background: #f5f5f5;
    padding: 6.2rem 8rem;
}

.section__blog .section__blog__content h2 {
    font-size: 3.4rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.section__blog .section__blog__content .section__blog__content__blog-posts {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    align-self: stretch;
}

.section__blog__content__blog {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    flex: 1 0 0;
}

.section__blog__content__blog .blog__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex: 1 0 0;
    color: #5b5b5b;
    font-size: 1.6rem;
}

.section__blog__content__blog .blog__text .blog__title a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--body-text-color);
    text-decoration: none;
}

.section__blog__content__blog .blog__text .blog__date {
    font-size: 1.4rem;
}

.section__blog__content__blog img {
    width: 111px;
    border-radius: 8px;
    height: 92px;
}
@media screen and (max-width: 767px) {
    .section__blog__content__blog img {
        width: 91px;
        height: 76px;
    }
}

.blog__see-more {
    font-size: 2rem;
    color: var(--body-text-color);
}

@media screen and (max-width: 1040px) {
    .section__blog .section__blog__content .section__blog__content__blog-posts {
        flex-direction: column;
        gap: 2rem;
    }
}

@media only screen and (max-width: 767px) {
    .section__blog .section__blog__content {
        padding: 3.2rem 1.6rem;
    }

    .section__blog .section__blog__content h2 {
        font-size: 2.4rem;
    }

    .section__blog__content__blog .blog__text .blog__title {
        font-size: 1.8rem;
    }

    .section__blog__content__blog .blog__text .blog__date {
        font-size: 1.2rem;
    }

    .blog__see-more {
        font-size: 1.6rem;
    }
}

/* ------------------------------------------------------------ *\
	Slider
\* ------------------------------------------------------------ */

.slider {
    max-width: 97rem;
    margin: 0 auto;
    position: relative;
}

.slider .slider__controls {
    display: none;
}

.slider .slider__arrow {
    position: absolute;
    top: 44.5%;
    transform: translateY(-50%);
    transition: opacity 0.3s;
}

.slider .slider__prev {
    left: 1rem;
}

.slider .slider__next {
    right: 1rem;
}

.slider .slider__arrow:hover {
    opacity: 0.7;
}

.slider .slider__slides {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin: 0rem -2rem -4rem;
}

.slider .slider__slide {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0rem 2rem;
    margin-bottom: 4rem;
}

.slider .slick-dots {
    margin-top: 2.3rem;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider .slick-dots li + li {
    margin-left: 1.1rem;
}

.slider .slick-dots li {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    border: solid 0.1rem var(--vector-border-color-success);
    transition: background-color 0.3s;
}

.slider .slick-dots li.slick-active {
    background-color: var(--container-head-background-color-alt);
}

@media only screen and (max-width: 1023px) {
    .slider .slider__slide {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media only screen and (max-width: 767px) {
    .slider {
        padding: 0rem 3rem;
    }

    .slider .slider__controls {
        display: block;
    }

    .slider .slider__slides {
        display: initial;
        margin: 0 -1rem;
    }

    .slider .slider__slide {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0rem 1rem;
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 375px) {
    .slider {
        padding: 0rem 0.5rem;
    }

    .slider .slider__prev {
        left: -0.5rem;
    }

    .slider .slider__next {
        right: -0.5rem;
    }
}

/* ------------------------------------------------------------ *\
	Card
\* ------------------------------------------------------------ */

.card {
    height: 100%;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.36;
    letter-spacing: 0;
    color: var(--container-text-color-default);
    display: flex;
    flex-direction: column;
}

.card .card__head {
    padding: 1.5rem 2rem 1.8rem;
    background: var(--container-head-background-color-alt);
    border-radius: 0.8rem 0.8rem 0px 0px;
}

.card .card__head h4 span {
    display: block;
    color: var(--container-head-text-color);
    font-weight: 900;
    font-size: 3.6rem;
    line-height: 1.2;
    margin-bottom: 0rem;
}

.card .card__head h4 {
    color: var(--container-head-text-color);
    font-weight: 900;
    font-size: 2.4rem;
    line-height: 1.33;
    margin-bottom: 0;
}

.card .card__body {
    min-height: 25.3rem;
    flex: 1;
    background: var(--container-background-color-alt);
    border-radius: 0px 0px 0.8rem 0.8rem;
    padding: 2.2rem 0rem 1rem;
}

.card .card__content {
    font-family: var(--body-text-font-alt);
    padding: 0rem 2.3rem;
}

.card .card__body h4 {
    color: var(--header-text-success);
    margin-bottom: 2.2rem;
    font-size: 2.4rem;
    font-weight: 700;
}

.card .card__body h4 span {
    display: block;
    margin-top: 0.3rem;
}

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

/* ------------------------------------------------------------ *\
	callout

	Can be found on the index.html page.
\* ------------------------------------------------------------ */

.callout {
    padding: 11.8rem 0rem 3.3rem;
    position: relative;
    text-align: center;
    color: var(--hero-text-color-prominent);
    font-size: 1.8rem;
}

.callout:after {
    content: "";
    position: absolute;
    top: -11rem;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hero-background-color-prominent);
    z-index: -1;
}

.callout .callout__inner {
    position: relative;
    max-width: 57.6rem;
    margin: 0 auto;
}

.callout h3 {
    font-weight: 400;
    color: var(--hero-text-color-prominent);
    margin-bottom: 1.8rem;
}

.callout h3 i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.callout strong {
    font-weight: 900;
}

.callout .callout__entry {
    margin-bottom: 1.8rem;
}

.callout .callout__btn {
    min-width: 35.4rem;
    min-height: 5.1rem;
    line-height: 5.1rem;
    margin-bottom: 4.6rem;
}

@media only screen and (max-width: 767px) {
    .callout {
        padding: 3.5rem 0 2rem;
        font-size: 1.4rem;
    }

    .callout h3 {
        font-weight: 400;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        letter-spacing: -0.022em;
        margin-left: -0.4rem;
    }

    .callout h3 i {
        display: inline-block;
        width: 2.2rem;
        height: auto;
        margin-right: 0.6rem;
    }

    .callout i img {
        width: 100%;
    }

    .callout .callout__entry {
        letter-spacing: -0.015em;
        max-width: 55%;
        margin: 0 auto;
    }

    .callout .callout__btn {
        min-width: 0;
        width: 100%;
        min-height: 4.6rem;
        line-height: 4.6rem;
        margin-bottom: 3rem;
    }
}

/* ------------------------------------------------------------ *\
	disclaimer

	Can be found on the index.html page.
\* ------------------------------------------------------------ */

.disclaimer {
    background: var(--disclaimer-background-color);
    font-size: 1.3rem;
    letter-spacing: -0.018em;
    padding: 2.4rem 0;
    color: var(--disclaimer-text-color-base);
}

.disclaimer .disclaimer__inner {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.disclaimer a {
    color: inherit;
    text-decoration: underline;
}

@media only screen and (max-width: 767px) {
    .disclaimer {
        padding: 1.5rem 0;
        line-height: 1.33;
        letter-spacing: -0.017em;
    }

    .disclaimer .disclaimer__inner {
        padding-right: 0.2rem;
    }
}

/* ------------------------------------------------------------ *\
	footer
\* ------------------------------------------------------------ */

.footer {
    position: relative;
    flex-shrink: 0;
    position: relative;
    background-color: var(--footer-background-color);
    padding: 2.6rem 0;
    color: var(--footer-text-color-base);
    font-size: 1.5rem;
    line-height: 1.2;
}

.footer .footer__logo {
    display: inline-block;
    margin-bottom: 2.2rem;
}

.footer .footer__inner {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer .footer__content {
    flex: 0 0 16.3%;
    max-width: 16.3%;
    padding-right: 1rem;
}

.footer .footer__cols {
    display: flex;
    flex: 1;
    margin: 0rem -1rem;
}

.footer .footer__col {
    padding: 0rem 1rem;
}

.footer .footer__col--size1 {
    flex: 0 0 26.2%;
    max-width: 26.2%;
}

.footer .footer__col--size2 {
    flex: 0 0 25%;
    max-width: 25%;
}

.footer .footer__col--size3 {
    flex: 0 0 31.8%;
    max-width: 31.8%;
}

.footer h5 {
    font-size: 2.4rem;
    color: var(--footer-text-color-base);
    margin-bottom: 1rem;
}

.footer .footer__nav ul {
    list-style: none;
}

.footer .footer__nav li + li {
    margin-top: 1.2rem;
}

.footer .footer__nav li a {
    color: var(--footer-text-color-anchor);
    text-decoration: none;
}

.footer .footer__nav a:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 1023px) {
    .footer .footer__content {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .footer {
        padding: 1.5rem 0 1.8rem;
    }

    .footer .footer__inner {
        display: block;
    }

    .footer .footer__nav {
        text-align: center;
    }

    .footer .footer__logo {
        margin-bottom: 3rem;
    }

    .footer .footer__content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer .footer__cols {
        display: block;
        margin: 0 0 -4.5rem;
    }

    .footer .footer__col {
        text-align: center;
        padding: 0;
        margin-bottom: 4.5rem;
    }

    .footer .footer__col--size1 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer .footer__col--size2 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer .footer__col--size3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer .footer__socials {
        position: absolute;
        top: 0.6rem;
        right: -0.1rem;
    }
}

/* ------------------------------------------------------------ *\
	ai badge
\* ------------------------------------------------------------ */

.search__ai__tag {
    font-size: 1.4rem;
    padding: 0.2rem 0.2rem 0.2rem 0.4rem;
    background: #f9ae00;
    border-radius: 0.4rem;
    vertical-align: middle;
    font-weight: 600;
    align-items: center;
}

/* ------------------------------------------------------------ *\
	copyright

	Can be found on the index.html page.
\* ------------------------------------------------------------ */

.copyright {
    text-align: right;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.copyright span {
    display: block;
}

.copyright span.copyright-year {
    display: inline;
}

@media only screen and (max-width: 767px) {
    .copyright {
        text-align: center;
    }
}

/* ------------------------------------------------------------ *\
	Socials
\* ------------------------------------------------------------ */

.socials ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
}

.socials li + li {
    margin-left: 1.6rem;
}

.socials li a {
    transition: opacity 0.3s;
}

.socials li:hover a {
    opacity: 0.7;
}

@media only screen and (max-width: 767px) {
    .socials li {
        transform: scale(0.95);
    }

    .socials li + li {
        margin-left: 1.6rem;
    }
}

.footer .shell-alt {
    max-width: calc(117.2rem + 1.8rem * 2);
    padding: 0rem 1.6rem;
    margin: 0 auto;
}

/* ------------------------------------------------------------ *\
	Popup Modals
\* ------------------------------------------------------------ */
.js-popup.popup {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--modal-background-color);
    z-index: 1;
    max-width: 100%;
}

.js-popup.popup:before {
    content: none;
}

.js-popup.popup .popup__content {
    padding: 28px 21px 20px;
    width: 616px;
    background-color: red;
    margin: 0 auto;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: -o-radial-gradient(
        center top,
        ellipse,
        var(--modal-content-background-color) 0,
        var(--modal-content-background-color) 100%
    );
    background: radial-gradient(
        ellipse at center top,
        var(--modal-content-background-color) 0,
        var(--modal-content-background-color) 100%
    );
    border-radius: 12px;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

@media (max-width: 767px) {
    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }
}

@media (max-width: 767px),
    screen and (max-width: 812px) and (orientation: landscape) {
    .js-popup.popup .popup__content {
        width: 94%;
    }
}

.js-popup.popup .popup__title {
    text-align: center;
    font-size: 24px;
    color: var(--modal-header-text-color);
    text-transform: uppercase;
    margin-bottom: 23px;
    pointer-events: none;
}

.js-popup.popup .popup__body {
    background-color: var(--modal-content-background-color);
    padding: 33px 20px 20px 28px;

    border-radius: 5px;
    overflow: auto;
    height: 368px;
    font-size: 13px;
    letter-spacing: -0.0125em;
    margin-bottom: 23px;
    max-width: 100%;
    text-align: left;
}

.js-popup.popup .popup__body h4 {
    color: var(--body-text-color);
    font-size: 13px;
    margin-bottom: 0;
}

.js-popup.popup .popup__body h4 {
    color: var(--body-text-color);
    font-size: 13px;
    margin-bottom: 0;
}

.js-popup.popup .popup__body h4 {
    color: var(--body-text-color);
    font-size: 13px;
    margin-bottom: 0;
}

.js-popup.popup .popup__body h4 {
    color: var(--body-text-color);
    font-size: 13px;
    margin-bottom: 0;
}

.js-popup.popup .popup__body h4 {
    color: var(--body-text-color);
    font-size: 13px;
    margin-bottom: 0;
}

.js-popup.popup .popup__body h4 {
    color: var(--body-text-color);
    font-size: 13px;
    margin-bottom: 0;
}

.js-popup.popup .popup__body h4 {
    color: var(--body-text-color);
    font-size: 13px;
    margin-bottom: 0;
}

.js-popup.popup .popup__body h3 {
    color: var(--modal-content-header-text-color);
    margin-bottom: 17px;
    font-size: 16px;
    letter-spacing: 0.017em;
    text-transform: uppercase;
}

.js-popup.popup .popup__body p {
    margin-bottom: 42px;
}

.js-popup.popup .popup__actions {
    text-align: center;
    margin-bottom: 6px;
}

/* .js-popup.popup .popup__actions .btn {
    background: var(--button-background-secondary);
} */
.js-popup.popup.is-visible {
    opacity: 1;
    pointer-events: all;
    z-index: 1060;
}

.wrapper.is-fixed {
    overflow: hidden;
}

.offer-wrapper.is-fixed {
    overflow: inherit;
}

.is-fixed {
    overflow: hidden;
}

.popup__actions .js-close:after {
    content: normal;
    min-width: 280px;
}

/* ------------------------------------------------------------ *\
	Ai Badge
\* ------------------------------------------------------------ */

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.sc-layout--flex {
    display: flex;
    gap: 2px;
    align-items: center;
}

.sc-tag {
    --gradient-background--1: #a9dbfa;
    --gradient-background--2: #dff493;
    font-family: "Open Sans", sans-serif;
    padding: 4px 8px;
    border-radius: 8px;
    color: #181819;
    display: inline-block;
    margin-left: 0.4rem;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    bottom: 0.125rem;
    position: relative;
    font-style: normal;
    background: linear-gradient(
        101deg,
        var(--gradient-background--1) 0%,
        var(--gradient-background--2) 50%,
        var(--gradient-background--1) 100%
    );
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

.sc-tag--alt {
    --gradient-background--1: #a9dbfa;
    --gradient-background--2: #bff207;
}

.sc-tag--silver {
    --gradient-background--1: #ffffff;
    --gradient-background--2: #e6dfdf;
}
