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

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

.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;
        max-width: 7.5rem;
    }

    .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;
    }
}

/* ------------------------------------------------------------ *\
	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);
}

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

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

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

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

.nav li:not(:last-child) {
    padding: 0rem 1.2rem;
}

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

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

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

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

/* ------------------------------------------------------------ *\
	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: 5.33rem;
    background-color: var(--button-background-primary);
    border: 0;
    padding: 0 1.5rem;
    min-height: 4.6rem;
    line-height: 4.6rem;
    font-family: var(--button-text-font);
    font-size: 2.1rem;
    font-weight: 700;
    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: 5.33rem;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s, visibility 0.3s;
}

@media (hover: hover) {
    .search__btn.btn:hover {
        box-shadow: 0px 4px 8px var(--button-dropshadow-alt);
    }
}

.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-primary);
;
}

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

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

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

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

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

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

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

.hero .hero__body {
    display: contents;
}

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

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

    .hero h1 {
        margin: 0 auto 3.3rem;
    }

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

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

    .hero .hero__body {
        display: contents;
    }
}

/* ------------------------------------------------------------ *\
	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-subtle);
}

.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: center;
    align-items: center;
}

.search .search__label {
    display: none;
}

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

.search .search__field:focus,
.search .search__field:active {
    box-shadow: 0px 0px 4px var(--input-boxshadow-color-highlight-active),
        0px 0px 8px var(--input-boxshadow-color-midpoint-active),
        inset 0px 0px 4px var(--input-boxshadow-color-fade-active);
}
.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 {
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 4.7rem;
    line-height: 4.7rem;
    padding: 0 2.4rem;
}

.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: 5.33rem;
    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__field {
        max-width: 100%;
        margin-bottom: 1.8rem;
        margin-right: 0;
        order: -2;
    }

    .search .search__controls {
        flex-direction: column;
        align-items: stretch;
    }

    .search .search__btn {
        width: 100%;
        max-width: 100%;
        min-height: 4.7rem;
        line-height: 4.7rem;
        white-space: nowrap;
    }

    .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: 0.8rem;
    }

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

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

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

.section-stats:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--divider-color-dark);
    opacity: 0.3;
    height: 0.1rem;
    width: 100%;
    max-width: 100rem;
}

.section-stats h2 {
    font-weight: 800;
    letter-spacing: 0;
}

.stats__subtitle {
    margin-bottom: 2.4rem;
    font-weight: 400;
}

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

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

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

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

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

.stats .stats__items {
    display: flex;
    flex-flow: row wrap;
    margin: 0rem -3.5rem -3.7rem;
}

.stats .stats__item {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0rem 3.5rem;
    margin-bottom: 3.7rem;
}

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

    .stats .stats__item {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0rem 2rem;
    }
}

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

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

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

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

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

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

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

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

    .stats__items .stats__item:last-child::after
        {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 5.6rem);
        height: 0.1rem;
        background-color: var(--divider-color-dark);
        opacity: 0.3;
    }

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

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

    .stat .stat__icon {
        margin-bottom: 0.8rem;
    }
}

/*  stat icon-offset  */

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

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

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

/* ------------------------------------------------------------ *\
	Section services
\* ------------------------------------------------------------ */

.section-services {
    text-align: center;
    padding: 9.1rem 0 7.4rem;
    position: relative;
}

.section-services h2 {
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 7.2rem;
}

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

    .section-services h2 {
        margin-bottom: 2.4rem;
        margin-left: -5px;
        margin-right: -5px;
    }
}

/* ------------------------------------------------------------ *\
	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-white);
    font-size: 1.8rem;
    background-color: var(--hero-background-color-accent);
}

.callout:after {
    content: "";
    position: absolute;
    top: -11rem;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hero-background-color-accent);
    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-white);
    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: 4rem 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.2rem;
    line-height: 1.67;
    letter-spacing: -0.018em;
    padding: 2.4rem 0;
    color: var(--disclaimer-text-color-base);
}

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

.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 {
        max-width: 4.3rem;
        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;
    }
}

/* ------------------------------------------------------------ *\
	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;
}

.get-started-link {
    text-align: center;
    padding: 0rem 3.5rem;
    margin-bottom: 35px;
}
.get-started-link a {
    font-size: 18.66px;
    font-weight: 700;
    color: var(--anchor-text-color-vibrant);
    line-height: normal;
}