/* ------------------------------------------------------------ *\
	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.4rem;
    background-color: var(--button-background-primary);
    border: 0;
    padding: 0 1.5rem;
    min-height: 4.6rem;
    line-height: 4.6rem;
    font-family: "Lato", sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: -0.006em;
    color: var(--button-text-color);
    position: relative;
}

.btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background: var(--button-background-primary);
    border-radius: 5px;
    transition: opacity 0.3s;
    z-index: 1;
}

.btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.4rem;
    opacity: 1;
    visibility: visible;
    transition:
        opacity 0.3s,
        visibility 0.3s;
}

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

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

    .btn:focus:before {
        opacity: 1;
    }
}

/*  btn blue  */

.btn--blue {
    color: var(--button-text-color);
    background: linear-gradient(
            180deg,
            var(--button-secondary-overlay-highlight) 0%,
            var(--button-secondary-overlay-midpoint) 42.71%,
            var(--button-secondary-overlay-shade) 100%
        ),
        var(--button-background-secondary);
}

.btn--blue:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            180deg,
            var(--button-primary-overlay-highlight) 0%,
            var(--button-primary-overlay-shade) 100%
        ),
        linear-gradient(
            180deg,
            var(--button-secondary-overlay-highlight) 0%,
            var(--button-secondary-overlay-midpoint) 42.71%,
            var(--button-secondary-overlay-shade) 100%
        ),
        var(--button-background-secondary);
    border-radius: 3px;
    opacity: 1;
    visibility: visible;
    transition:
        opacity 0.3s,
        visibility 0.3s;
}

/* ------------------------------------------------------------ *\
	section dark
\* ------------------------------------------------------------ */

.section-dark-alt {
    padding: 1.5rem 0 1.3rem;
    background: var(--nav-background-secondary-color);
    color: var(--nav-text-color);
}

.section-dark-alt h2 {
    margin-left: 0.2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--nav-text-color);
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .section-dark-alt h2 {
        font-size: 3.4rem;
        letter-spacing: -0.004rem;
    }
}

/* ------------------------------------------------------------ *\
	Section alt
\* ------------------------------------------------------------ */

.section-alt {
    background-color: var(--body-background-color);
    padding: 2.4rem 0;
}

.section-alt .section__head {
    padding: 1.8rem 0;
    background: var(--banner-background-color);
}

.section-alt .section__head h1 {
    font-size: 3.1rem;
    line-height: 1.2;
    letter-spacing: -0.004em;
    font-weight: 700;
    color: var(--banner-text-color);
    margin-bottom: 0;
}

.section-alt h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2.4rem;
}

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

    .section-alt .section__head {
        padding: 1.7rem 0 1.6rem;
    }

    .section-alt .section__head h1 {
        font-size: 2.7rem;
    }

    .section-alt h2 {
        font-size: 2.2rem;
        margin-bottom: 2.4rem;
    }
}

/*  section alt reviews  */

.section-alt--reviews {
    padding: 1.6rem 0;
}

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

/* ------------------------------------------------------------ *\
	list stars
\* ------------------------------------------------------------ */

.list-stars {
    display: inline-flex;
    list-style: none;
    padding: 0rem 0.2rem;
}

.list-stars li {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .list-stars li img {
        max-width: 1.9rem;
        max-height: 1.9rem;
    }
}

/*  list stars alt  */

.list-stars--alt li + li {
    margin-left: -0.1rem;
}

@media only screen and (max-width: 767px) {
    .list-stars--alt li img {
        max-width: 100%;
        max-height: 100%;
    }
}

/*  list stars small  */

.list-stars--small li img {
    width: 2rem;
    max-width: 2rem;
    height: 2rem;
    max-height: 2rem;
}

/* ------------------------------------------------------------ *\
	Reviews
\* ------------------------------------------------------------ */
.section-alt .reviews-subheader {
    line-height: 1;
    text-align: center;
    font-size: 2rem;
}
.section-alt .reviews-subheader span{
    font-size: 1.4rem;
}
.reviews .reviews__btn {
    min-width: 31.1rem;
}

.reviews .reviews__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.2rem;
}

.reviews .reviews__head-inner {
    display: flex;
}

.reviews .reviews__head-inner span {
    font-style: italic;
    font-size: 1.6rem;
    line-height: 1.2;
    color: var(--body-text-color);
    display: block;
}

.reviews h3 {
    margin-bottom: 0;
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--header-text-primary);
}

.reviews__rating {
    margin-left: 1.9rem;
    text-align: center;
}

.reviews .reviews__items {
    display: flex;
    flex-flow: row wrap;
    margin: 0rem -0.8rem -0.8rem;
}

.reviews .reviews__item {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0rem 0.8rem;
    margin-bottom: 0.8rem;
}

.reviews {
    display: none;
}

.reviews.show {
    display: block;
}

@media only screen and (max-width: 767px) {
    .section-alt .reviews-subheader {
        line-height: 1;
        text-align: center;
        font-size: 2rem;
    }
    .section-alt .reviews-subheader span{
        font-size: 1.4rem;
    }
    .reviews .reviews__head {
        display: block;
    }

    .reviews .reviews__head-inner {
        justify-content: space-between;
        padding-right: 0.8rem;
    }

    .reviews .reviews__title {
        margin-bottom: 2.5rem;
    }

    .reviews h3 {
        font-size: 2.2rem;
        margin-bottom: 0.3rem;
    }

    .reviews .reviews__btn.btn {
        width: 31.1rem;
        max-width: 100%;
        min-width: unset;
    }

    .reviews__actions {
        text-align: center;
    }

    .reviews .reviews__head-inner span {
        font-size: 1.4rem;
    }

    .reviews .reviews__items {
        display: block;
        margin: 0 0 -0.8rem;
    }

    .reviews .reviews__item {
        max-width: 100%;
        padding: 0rem;
    }
}

/* ------------------------------------------------------------ *\
	Review
\* ------------------------------------------------------------ */

.review {
    border: 0.1rem solid var(--container-border-color-subtle);
    border-radius: 0.4rem;
    padding: 2.2rem 1.5rem;
}

.review h4 {
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 0;
}

.review .review__head {
    display: flex;
    align-items: center;
    margin-bottom: 0.4rem;
}

.review .review__rating {
    padding-top: 0.2rem;
    margin-left: 0.8rem;
}

.review p:not(:last-child) {
    font-size: 1.2rem;
    margin-bottom: 1.6rem;
}

.review blockquote {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--body-text-color);
}

@media only screen and (max-width: 767px) {
    .review {
        padding: 2.1rem 1.5rem 2.2rem;
    }

    .review h4 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .review .review__rating {
        padding-top: 0.2rem;
        margin-left: 0.6rem;
    }
}

/* ------------------------------------------------------------ *\
	Paging
\* ------------------------------------------------------------ */

.paging {
    position: relative;
    margin: 0 auto;
    padding: 1.6rem 0 0;
    display: none;
    align-items: center;
    justify-content: center;
}

.paging.show {
    display: flex;
}

.paging ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style-type: none;
    margin: 0rem 1.6rem;
}

.paging li {
    font-size: 1.6rem;
    line-height: 1.2;
    letter-spacing: -0.004em;
    font-weight: 700;
    color: var(--anchor-text-color-paging);
}

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

.paging li a {
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
    background-blend-mode: overlay, normal;
    isolation: isolate;
}

.paging a {
    transition: opacity 0.3s;
}

.paging a:hover {
    opacity: 0.7;
}

.paging li a:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
            180deg,
            var(--vector-image-overlay-gradient-highlight) 0%,
            var(--vector-image-overlay-gradient-shade) 100%
        ),
        var(--anchor-text-color-paging);
    border-radius: 0.4rem;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.paging li.is-current {
    color: var(--pagination-text-color-alt);
}

.paging li.is-current a {
    padding: 0.4rem 0.7rem;
}

.paging li.is-current a:after {
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .paging {
        padding-top: 1.7rem;
    }

    .paging li {
        font-size: 1.4rem;
    }

    .paging .paging__spacer {
        display: inline-block;
    }

    .paging li:last-child {
        display: inline-block;
    }
}

.paging .paging__spacer.hide-spacer {
    display: none;
}

/* ------------------------------------------------------------ *\
	link gray
\* ------------------------------------------------------------ */

.link-gray {
    font-weight: 700;
    color: var(--anchor-text-color-subtle);
    text-decoration: none;
}

/* ------------------------------------------------------------ *\
	Form contact help
\* ------------------------------------------------------------ */

.form-contact-help .form__head {
    padding: 1.3rem 0;
    margin-bottom: 0.7rem;
}

.form-contact-help .form__head h2 {
    margin-left: -0.8rem;
    margin-bottom: 1.3rem;
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 700;
}

.form-contact-help .form__entry {
    letter-spacing: 0;
}

.form-contact-help .form__entry h3 {
    text-transform: uppercase;
    margin-bottom: 0.7rem;
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 700;
}

.form-contact-help .form__entry a {
    font-weight: 700;
    color: var(--anchor-text-color-subtle);
    text-decoration: none;
}

.form-contact-help .form__row + .form__row {
    margin-top: 1.8rem;
}

.form-contact-help .form__row + .form__row--alt {
    margin-top: 2.6rem;
}

.form-contact-help label {
    color: var(--header-text-primary);
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.1rem;
}

.form-contact-help .form__hint {
    font-size: 1.2rem;
    line-height: 1.2;
    font-style: italic;
    display: block;
    margin-top: 0.9rem;
}

.form-contact-help .form__hint--alt {
    margin-top: 0.1rem;
}

.form-contact-help .form__controls {
    width: 100%;
}

.form-contact-help .form__field {
    border: solid 0.1rem var(--input-border-color-subtle);
    border-radius: 0.4rem;
    font-size: 1.8rem;
    letter-spacing: -0.008em;
    line-height: 1.2;
    height: 4.6rem;
    width: 100%;
    padding: 0rem 1.6rem;
    background-color: var(--input-background-color-default);
    transition: all 0.3s;
}

.form-contact-help .form__controls.has-error .form__field {
    border-color: var(--input-border-color-error);
    color: var(--input-text-color-error);
    background: var(--input-background-color-error);
    box-shadow: none;
}

.form-contact-help .form__error-message {
    color: var(--input-text-color-error);
    font-size: 1.4rem;
    line-height: 1.2;
    display: none;
    margin-top: 0.4rem;
}

.form-contact-help .form__controls.has-error .form__error-message {
    display: block;
}

.form-contact-help .form__field:focus {
    border: 1px solid var(--input-border-color-default);
    box-shadow:
        0px 0px 4px var(--input-boxshadow-color-highlight-active),
        0px 8px 8px var(--input-boxshadow-color-midpoint-active),
        inset 0px 0px 4px var(--input-boxshadow-color-fade-active);
}

.form-contact-help .form__field::-webkit-input-placeholder {
    color: var(--input-text-color-placeholder);
}

.form-contact-help .form__field:-moz-placeholder {
    color: var(--input-text-color-placeholder);
    opacity: 1;
}

.form-contact-help .form__field::-moz-placeholder {
    color: var(--input-text-color-placeholder);
    opacity: 1;
}

.form-contact-help .form__field:-ms-input-placeholder {
    color: var(--input-text-color-placeholder);
}

.form-contact-help .form__field::-ms-input-placeholder {
    color: var(--input-text-color-placeholder);
}

.form-contact-help .form__field::placeholder {
    color: var(--input-text-color-placeholder);
}

.form-contact-help .form__field--alt {
    height: 4.9rem;
}

.form-contact-help .form__cols {
    display: flex;
    align-items: center;
    margin: 0rem -0.4rem;
}

.form-contact-help .form__col {
    flex: 1;
    padding: 0rem 0.4rem;
}

.form-contact-help .form__col--size1 {
    max-width: 31.2%;
    min-width: 35.4rem;
}

.form-contact-help .form__col--size2 {
    max-width: 9.9rem;
    flex: 0 0 9.9rem;
}

.form-contact-help .form__col--size3 {
    max-width: 12.1rem;
    flex: 0 0 12.1rem;
}

.form-contact-help .form__textarea {
    height: 17rem;
    resize: none;
}

.form-contact-help .form__actions {
    text-align: center;
    margin-top: 1.3rem;
}

.form-contact-help .form__actions .form__hint {
    margin-bottom: 0.7rem;
}

.form-contact-help .form__captcha {
    margin-bottom: 1.6rem;
}

.form-contact-help .form__btn {
    width: 32.8rem;
}

@media only screen and (max-width: 767px) {
    .form-contact-help .form__head {
        padding: 1.8rem 0;
        margin-bottom: 0.4rem;
    }

    .form-contact-help .form__head h2 {
        font-size: 2.2rem;
    }

    .form-contact-help .form__entry {
    }

    .form-contact-help .form__entry h3 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.6rem;
    }

    .form-contact-help .form__body {
        padding-right: 3.1rem;
    }

    .form-contact-help .form__row + .form__row {
        margin-top: 2.5rem;
    }

    .form-contact-help .form__row + .form__row--alt {
        margin-top: 2.5rem;
    }

    .form-contact-help label {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .form-contact-help .form__field {
        font-size: 1.6rem;
        height: 4.9rem;
        padding: 0rem 1.5rem;
    }

    .form-contact-help .form__textarea {
        height: 10rem;
    }

    .form-contact-help .form__hint {
        font-size: 1.1rem;
        margin-top: 0.4rem;
    }

    .form-contact-help .form__col--size1 {
        min-width: 0;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .form-contact-help .form__actions {
        margin-top: 1rem;
        padding: 0rem 1.6rem;
    }

    .form-contact-help .form__actions .form__hint {
        margin-bottom: 0.4rem;
    }

    .form-contact-help .form__captcha {
        margin-bottom: 1.6rem;
    }

    .form-contact-help .form__btn {
        width: 100%;
        max-width: 32.8rem;
    }
}

@media only screen and (max-width: 389px) {
    .form-contact-help .form__col--size2 {
        max-width: 31.5%;
        flex: 0 0 31.5%;
    }

    .form-contact-help .form__col--size3 {
        max-width: 37%;
        flex: 0 0 37%;
    }
}

/* ------------------------------------------------------------ *\
	Disclaimer
\* ------------------------------------------------------------ */

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

.disclaimer .disclaimer__inner {
    max-width: 112rem;
    margin: 0 auto;
}

.disclaimer a {
    color: inherit;
}

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

    .disclaimer .disclaimer__inner {
        padding-right: 0.2rem;
    }
}
/* ------------------------------------------------------------ *\
	SEO changes
\* ------------------------------------------------------------ */

.section-dark-alt .SEO-h1 {
    margin-left: 0.2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--nav-text-color);
    margin-bottom: 0;
    font-size: 4rem;
}

@media only screen and (max-width: 767px) {
    .section-dark-alt .SEO-h1{
        font-size: 3.4rem;
        letter-spacing: -0.004rem;
    }
}