/*
VARIABLES
CORE
HEADER
FOOTER
*/

/*******************************************************************************************
HEADER
*******************************************************************************************/
:root {
    /* Colours */
    --color-dark: #6f6f6f;
    --color-gray: #CCCCCC;
    --color-dark-gray: #b9b9b9;
    --color-gray-100: #f8f6f6;
    --color-black: #000;
    --color-white: #fff;
    --color-cyan: #38a3c2;
    --color-green: #038420;
    --color-red: #c72a1c;
    --color-blue: #2e6cdc;
    --color-blue-dark: #2e6cdc;
    --color-purple: #763797;

    /* Link Style */
    --link-color-base: inherit;
    --link-decoration-base: underline;
    --link-hover-color-base: inherit;
    --link-hover-decoration-base: none;

    /* Transitions */
    --speed-fast: .125s;
    --speed-default: .25s;
    --speed-slow: .5s;
    --speed-sluggish: 1s;
    --speed-snail: 2s;
    --cubic-bezier: cubic-bezier(.05, .69, .14, 1);
    --cubic-bezier-2: cubic-bezier(.215, .61, .355, 1);

    /* Body Style */
    --body-bg: var(--color-white);
    --font-family-base: 'Arial', sans-serif;
    --font-family-arial-black: 'Arial-Black', sans-serif;
    --font-family-icon: 'icomoon', sans-serif;
    --font-family-franklin: 'Franklin Gothic Demi', sans-serif;
    --text-color-base: var(--color-dark);

    /* Headings Style */
    --heading-font-family: 'Rosella', sans-serif;
    --heading-margin: 0 0 20px 0;
    --heading-font-weight: 700;
    --heading-color: inherit;


    /* Font sizes */
    --font-size-h1: 30px;
    --font-size-h2: 28px;
    --font-size-h3: 27px;
    --font-size-h4: 22px;
    --font-size-h5: 20px;
    --font-size-h6: 18px;
    --font-size-base: 16px;
    --font-size-small: 12px;
    --font-size-btn: var(--font-size-base);

    /* Line heights */
    --line-height-base: 1.56;
    --heading-line-height: 1.1;

    /* Paddings */
    --py-section: 45px;
    --py-section-small: 55px;
    --py-section-medium: 55px;
    --py-section-large: 55px;
    --px-form-control: 13px;
    --py-form-control: 15px;
    --px-gutter-base: 12px;

    /* Heights */
    --height-btn: 40px;
    --height-btn-sm: 40px;
    --height-form-control: 48px;
    --height-header-base: 88px;

    /* Widths */
    --width-base: 1729px;
    --width-large: 1820px;

    /* Sizes */
    --size-bullet: 5px;
    --size-btn-play: 60px;
    --size-radius-btn: 4px;
    --size-form-check-indicator: 16px;
    --size-accordion-indicator: 10px;
}

@media screen and (min-width: 768px) {
    :root {
        --font-size-h1: 38px;
        --font-size-h2: 35px;
    }
}

/*******************************************************************************************
CORE - Top-level styling
*******************************************************************************************/
*,
*:before,
*:after {
    box-sizing: inherit;
}

*:focus {
    outline: none;
}

html {
    box-sizing: border-box;
}

body {
    line-height: var(--line-height-base);
    color: var(--color-black);
    font-size: var(--font-size-base);
    font-family: var(--font-family-base);
    margin: 0;
    line-height: 1.4;
    font-size: 17px;
    font-weight: 400;
    background: var(--color-white);
}

/* CORE > Global */
img {
    max-width: 100%;
}

main {

}

.clear:after {
    display: block;
    clear: both;
    content: '';
}

/* CORE > Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 20px;
    font-weight: 400;
    color: var(--heading-color);
    font-family: var(--heading-font-family);
    line-height: var(--heading-line-height);
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

h4 {
    font-size: var(--font-size-h4);
}

h5 {
    font-size: var(--font-size-h5);
}

h6 {
    font-size: var(--font-size-h6);
}

p {
    margin: 0 0 30px;
}

ul {
    list-style: none;
}

/* CORE > Form */
label {
    margin-bottom: 10px;
    display: block;
    font-size: var(--font-size-base);
    font-weight: 400;
    color: var(--text-color-base);
}

/* Contact form specific styles - scoped to .connect container */
.connect input,
.connect select,
.connect textarea {
    padding: 15px;
    display: block;
    width: 100%;
    height: 50px;
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    color: var(--text-color-base);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    background: var(--color-white);
    box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.35);

    &::placeholder {
       color: var(--color-dark);
    }

    &:focus:not(:read-only):not([type='submit']):not([type='reset']):not([type='button']) {
        border-color: var(--color-border);
    }

    &.is-error {
        border-color: var(--color-error);
    }

    &:disabled {
        opacity: .8;
        color: var(--color-border);
        background-color: var(--color-white);
    }

    &[type='radio'],
    &[type='checkbox'] {
        margin-right: 10px;
        padding: 0;
        display: inline-block;
        height: auto;
    }

    &[type='radio'],
    &[type='checkbox'],
    &[type='submit'],
    &[type='reset'],
    &[type='button'] {
        display: inline-block;
        width: auto;
    }
}

.connect input[type='submit'],
.connect input[type='reset'],
.connect input[type='button'] {
    color: var(--color-white);
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);

    &:hover {
        color: var(--color-white);
        background-color: var(--color-secondary);
        border-color: var(--color-secondary);
    }
}

.connect select {
    background-image: url('data:image/png;base64,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');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: auto 5px;
    appearance: none;
}

.connect textarea {
    width: 100%;
    height: 200px;
}

/* CORE > Links and Buttons */
a {
    color: var(--link-color-base);
    text-decoration: var(--link-decoration-base);
}

a:hover,
a:focus {
    color: var(--link-hover-color-base);
    text-decoration: var(--link-hover-decoration-base);
}

a,
button,
.button {
    transition: all 0.3s;
}

button,
.button {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    padding: 9px 22px;
    border-radius: var(--size-radius-btn);
    text-align: center;
    align-items: center;
    display: inline-block;
    text-decoration: none;
    color: var(--color-white);
    text-transform: uppercase;
    background-color: var(--color-cyan);
    cursor: pointer;
}

.header-btn .button,
.footer-btn .button,
.banner-btn .button {
    border-radius: 40px;
}

.button.button-primary {
    background-color: var(--color-red);
}

.button.button-primary:hover,
.button.button-primary:focus {
    background-color: var(--color-cyan);
}

button:hover,
button:focus,
.button:hover,
.button:focus {
    color: var(--color-white);
    background-color: var(--color-red);
}

button.no-button,
.button.no-button {

}

button.no-button:hover,
button.no-button:focus,
.button.no-button:hover,
.button.no-button:focus {

}

.button.outline {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 20px;
    text-transform: inherit;
    color: var(--color-blue);
    background-color: transparent;
    border: 2px solid var(--color-blue-dark);
}

.button.outline i {
    vertical-align: middle;
}

.button.outline:focus,
.button.outline:hover {
    color: var(--color-white);
    background-color: var(--color-blue);
}

.button.outline.white {
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.button.white:focus,
.button.white:hover {
    color: var(--color-black);
    background-color: var(--color-white);
}

#memberLoginBtn {
    background-color: #1a6bb8;
}
#memberLoginBtn:hover {
    background-color: #145a9e;
}

/* CORE > Layout */
.container-wide,
.container-narrow {
    max-width: 1080px;
    margin-right: auto;
    margin-left: auto;
}

.container {
    padding-left: var(--px-gutter-base);
    padding-right: var(--px-gutter-base);
}

.container-lg {
    padding-left: var(--px-gutter-base);
    padding-right: var(--px-gutter-base);
}


/* CORE > Utility Classes */
.no-margin {
    margin: 0 !important;
}

.no-padding {
    padding: 0 !important;
}

.no-transition {
    transition: none !important;
}

.no-min-height {
    min-height: 0;
}

.position-static {
    position: static !important;
}

.position-relative {
    position: relative !important;
}

.block {
    display: block !important;
}

.full-width {
    width: 100%;
}

.center,
.align-center,
.text-center {
    text-align: center;
}

.right,
.align-right,
.text-right {
    text-align: right;
}

.uppercase {
    text-transform: uppercase;
}

.hide {
    display: none !important;
}

.overflow-hidden {
    overflow: hidden;
}

.visually-hidden {
    border: none !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
}

.flex-container {
    display: flex;
    align-items: center;
}

.flex-align-vertical {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-align-horizontal {
    display: flex;
    justify-content: center;
    text-align: center;
}

.small-text {
    font-size: 0.9rem;
}

.larger-text {
    font-size: 1.2rem;
}

.font-light {
    font-weight: 300;
}

.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.small-margin-left {
    margin-left: 10px;
}

.small-margin-right {
    margin-right: 10px;
}

.no-background {
    background: none !important;
}

.transition-all {
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
    .hide-for-medium {
        display: none !important;
    }

    .connect input,
    .connect select,
    .connect textarea {
        padding: 15px 36px;
        height: 102px;
        font-size: 21px;
    }
}

@media (min-width: 1025px) {
    .hide-for-large {
        display: none !important;
    }
}

@media screen and (max-width: 767px) {
    .hide-for-small-only {
        display: none !important;
    }
}

@media screen and (max-width: 0px), screen and (min-width: 768px) {
    .show-for-small-only {
        display: none !important;
    }
}

@media screen and (max-width: 1023px) {
    .show-for-medium {
        display: none !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .hide-for-medium-only {
        display: none !important;
    }
}

@media screen and (max-width: 767px), screen and (min-width: 1025px) {
    .show-for-medium-only {
        display: none !important;
    }
}

@media screen and (max-width: 1024px) {
    .show-for-large {
        display: none !important;
    }
}

/* ### wrapper ### */
.wrapper {
    position: relative;
    display: block;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    padding-top: 107px;
}

/*******************************************************************************************
HEADER
*******************************************************************************************/
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 15;
    background-color: var(--color-white);
}

.header.header-sticky .header-holder {
    padding-top: 15px;
    padding-bottom: 15px;
}

.header-holder {
    display: flex;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    transition: all 0.3s;
    border-bottom: 1px solid var(--color-dark);
}

.header-logo {
    width: 180px;
}

.header-logo img {
    display: block;
}

.header-menu {
    margin-bottom: 25px;
}

.header-menu ul {
    margin: 0;
    padding: 0;
}

.header-menu li {
    margin-bottom: 15px;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
}

.header-menu li a {
    text-decoration: none;
}

.header-menu li.has-children > a {
    cursor: pointer;
}

.header-menu .js-toggle-arrow,
.header-menu .icon-arrow {
    cursor: pointer;
}

.header-menu .submenu {
    width: 100%;
    padding: 10px;
    background-color: var(--color-gray-100);
    display: none;
}
.header-menu .submenu li {
    padding-top: 5px;
    padding-bottom: 5px;
    margin-right: 0;
    margin-bottom: 0;
    transition: background-color 0.2s ease;
    border-radius: 4px;
}

.header-menu .submenu li:hover {
    background-color: rgba(45, 80, 22, 0.1);
}

.header-menu .submenu li a {
    font-size: 16px;
    display: block;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color 0.2s ease;
}

.header-menu .submenu li:hover a {
    color: var(--color-red);
}

.header-menu li a:focus,
.header-menu li a:hover {
    color: var(--color-red);
}

.header-menu-icon {
   display: none;
}

.header-menu-arrow {
    position: relative;
}

.header-menu-arrow i {
    position: absolute;
    right: -17px;
    top: -1px;
}

.header-btn .button {
    margin-bottom: 15px;
}

/* ### mobileMenu ### */
.mobileMenu {
    position: absolute;
    top: 50%;
    right: 44px;
    z-index: 15;
    transform: translateY(-50%);
    cursor: pointer;
}

.mobileMenu span {
    position: absolute;
    width: 28px;
    height: 4px;
    border-radius: 5px;
    background: #000;
    transition: all 0.3s;
}

.mobileMenu span:before,
.mobileMenu span:after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 5px;
    background-color: #000;
    transition: all 0.3s;
    content: '';
}

.mobileMenu span:before {
    top: -10px;
}

.mobileMenu span:after {
    bottom: -10px;
}

.mobileMenu.is-active span {
    background: none;
}

.mobileMenu.is-active span:before {
    top: auto;
    transform: rotate(45deg);
}

.mobileMenu.is-active span:after {
    bottom: auto;
    transform: rotate(-45deg);
}

.is-menu-open .header-right {
    opacity: 1;
    visibility: visible;
    left: 0;
}

/* banner */
.banner {
    padding-top: 50px;
    position: relative;
    margin-bottom: 50px;
}

.banner-image {
    width: 100%;
    height: 250px;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner h1 {
    line-height: 1;
    font-size: 60px;
    margin-bottom: 15px;
    text-shadow: 7px 0 18px rgba(0, 0, 0, 0.35);
    font-family: var(--font-family-arial-black);
}

.banner-text {
    position: absolute;
    top: 31%;
    left: 12%;
    color: var(--color-white);
    text-transform: uppercase;
    font-family: var(--font-family-arial-black);
    line-height: 1;
}

.banner-text span {
    font-size: 18px;
    line-height: 1;
    text-shadow: 7px 0 18px rgba(0, 0, 0, 0.35);
}

.banner-text strong {
    display: block;
    font-size: 29px;
    line-height: 1;
    text-shadow: 7px 0 18px rgba(0, 0, 0, 0.35);
}

.banner-btn {
    display: flex;
    justify-content: center;
}

.banner-btn .button {
    font-family: var(--font-family-base);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 403px;
    box-shadow: 7px 0 18px rgba(0, 0, 0, 0.35);
}

/* products */
.products {
    margin-bottom: 65px;
}

.products-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
}

.products-heading h2 {
    margin-bottom: 14px;
    display: flex;
    font-size: 25px;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.5);
}

.products-heading h2 img {
    margin-right: 5px;
}

/* card-products */
.card-products {
    display: block;
    text-decoration: none;
    margin-bottom: 35px;
}

.card-products-image {
    margin-bottom: 10px;
}

.card-products-image img {
    display: block;
}

.card-products-info {
    text-align: center;
    max-width: 639px;
    margin: 0 auto;
}

.card-products-info h3 {
    transition: all 0.3s;
    font-size: 20px;
    margin-bottom: 10px;
    font-family: var(--font-family-arial-black);
}

.card-products-info p {
    margin-bottom: 0;
}

.card-products:focus h3,
.card-products:hover h3 {
    color: var(--color-red);
}

/* join */
.join {
    margin-bottom: 50px;
}

.join-holder {
    display: flex;
    justify-content: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #a9a9a9;
}

.join img {
    border-radius: 4px;
    border: 4px solid #c4c4c4;
}

/* history */
.history {
    margin-bottom: 50px;
}

.history-heading {
    text-align: center;
    margin-bottom: 40px;
}

.history h2 {
    margin-bottom: 14px;
    display: flex;
    font-size: 34px;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.5);
}

.history h2 img {
    margin-right: 10px;
}

.history-block {
    position: relative;
}

.history .swiper {
    z-index: 2;
    margin: 0 35px;
}

.history .swiper-button-next:after,
.history .swiper-button-prev:after {
    display: none;
}

.history .swiper-button-next,
.history .swiper-button-prev {
    font-size: 50px;
    color: #bababa;
}


.history-controller {
    position: absolute;
    top: 113px;
    width: 100%;
    z-index: 1;
}

.history .swiper-button-next {
    right: 10px;
}

.history .swiper-button-next.swiper-button-disabled,
.history .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

/* card history */
.card-history {
    text-align: center;
}

/* About Learn More Link */
.about-learn-more {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.about-learn-more a {
    display: inline-block;
    color: var(--color-green);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.about-learn-more a::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.about-learn-more a::before {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-green);
    transition: width 0.3s ease;
}

.about-learn-more a:hover {
    color: #1a6bb8;
}

.about-learn-more a:hover::before {
    width: calc(100% - 4rem);
}

.about-learn-more a:hover::after {
    transform: translateX(5px);
}

.card-history-image {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.card-history-image img {
    display: block;
}

.card-history-info h3 {
    font-size: 26px;
    color: var(--color-cyan);
    font-family: var(--font-family-arial-black);
}

.card-history-info h3 strong {
    display: block;
    color: var(--color-black);
}

.card-history-info p {
    font-style: italic;
    margin-bottom: 0;
}

/* connect */
.connect {
    padding-top: 50px;
    padding-bottom: 60px;
    background-color: #2a62c3;
}

.connect-heading {
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-white);
}

.connect-heading h2 {
  font-size: 30px;
}

.connect-holder {
    max-width: 1638px;
    margin: 0 auto;
}

.connect-wrap {
    margin-bottom: 40px;
}

.connect-item {
    margin-bottom: 20px;
}

.connect textarea {
    height: 150px;
    resize: none;
}

.connect-btn {
    display: flex;
    justify-content: center;
}

.connect-btn button {
    border: none;
    border-radius: 0;
    cursor: pointer;
    min-height: 60px;
    width: 100%;
    max-width: 408px;
}

/* footer */
.footer {
    padding-top: 53px;
    padding-bottom: 50px;
    color: var(--color-white);
    background-color: var(--color-black);
}

.footer-top {
    margin-bottom: 50px;
}

.footer-btn {
    margin-bottom: 25px;
}

.footer-btn .white {
    width: 100%;
}

.footer-btn .button + .button {
    margin-top: 25px;
}

.footer-social {
    font-size: 18px;
    text-align: center;
}

.footer-social ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.footer-social p:last-of-type {
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-social li:not(:last-of-type) {
    margin-right: 15px;
}

.footer-social li a {
    font-size: 17px;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    border: solid 2px var(--color-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social li a:focus,
.footer-social li a:hover {
    color: var(--color-black);
    background-color: var(--color-white);
}

.footer-column {
    margin-bottom: 25px;
}

.footer-column-2 {
    margin-bottom: 25px;
}

.footer-title {
    font-size: 22px;
    margin-bottom: 3px;
    text-transform: uppercase;
    font-family: var(--font-family-arial-black);
}

.footer-link {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.footer-link li {
    margin-bottom: 0;
}

.footer-link li a {
    display: block;
    text-decoration: none;
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.footer-link li a:focus,
.footer-link li a:hover {
    color: var(--color-red);
}

/* copyright */
.copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: center;
}

.copyright p {
    margin-bottom: 20px;
}

.copyright-social {
    margin: 0 auto 20px;
    font-size: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 100%;
    color: var(--color-white);
    background-color: var(--color-black);
}

.copyright-social:focus,
.copyright-social:hover {
    color: var(--color-white);
    background-color: var(--color-red);
}

.copyright-links {
    margin: 0;
    padding-left: 0;
    display: flex;
    justify-content: center;
}

.copyright-links li:not(:last-of-type) {
    margin-right: 15px;
}

.copyright-links li a {
    text-decoration: none;
}

.copyright-links li a:focus,
.copyright-links li a:hover {
    color: var(--color-red);
}


/* ### media query ### */
@media screen and (max-width: 1024px) {
    .header-right {
        padding: 130px 20px 50px;
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100vh;
        background-color: var(--color-white);
        overflow-y: scroll;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: -1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .header-right .header-menu {
        width: 100%;
        text-align: center;
    }
    
    .header-right .header-menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .header-right .header-menu li {
        text-align: center;
    }
    
    .header-right .header-btn {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .header-right .member-area {
        justify-content: center;
    }
    
    .header-right .member-welcome {
        align-items: center;
    }
    
    .header-right .member-welcome span {
        text-align: center;
    }
}

@media screen and (min-width: 768px) {
    .banner {
        padding-top: 75px;
        margin-bottom: 80px;
    }

    .banner-image {
        height: 400px;
    }

    .banner h1 {
        margin-left: -7px;
        font-size: 103px;
    }

    .banner-text span {
        font-size: 30px;
    }

    .banner-text strong {
        font-size: 48px;
    }

    .banner-btn .button {
        min-height: 65px;
        font-size: 25px;
    }

    .products-heading {
        margin: 0 auto 77px;
        font-size: 21px;
    }

    .products-heading h2 {
        font-size: 44px;
    }

    .products-holder {
        display: grid;
        grid-row-gap: 70px;
        grid-column-gap: 50px;
        grid-template-columns: repeat(2, 1fr);
    }

    .card-products {
        font-size: 20px;
        margin-bottom: 0;
    }

    .card-products-image {
        margin-bottom: 39px;
    }

    .card-products-info h3 {
        font-size: 25px;
        margin-bottom: 30px;
    }

    .join {
        margin-bottom: 87px;
    }

    .join-holder {
        padding-bottom: 50px;
    }

    .history {
        margin-bottom: 100px;
    }

    .history-heading {
        margin-bottom: 82px;
        font-size: 21px;
    }

    .history h2 {
        font-size: 44px;
    }

    .history .swiper:before {
        position: absolute;
        top: 111px;
        left: 90px;
        width: calc(100% - 176px);
        height: 4px;
        content: '';
        background-color: #bababa;
    }

    .history .swiper-button-next,
    .history .swiper-button-prev {
        font-size: 85px;
    }

    .history-next {
        position: absolute;
    }

    .history-prev:before,
    .history-next:before {
        position: absolute;
        top: 20px;
        right: 0;
        width: 150px;
        pointer-events: none;
        height: 4px;
        content: '';
        background-color: #bababa;
    }

    .history-prev:before {
        left: 0;
        right: unset;
    }

    .card-history-image {
        margin-bottom: 48px;
    }

    .card-history-info p {
        font-size: 21px;
    }

    .connect-heading {
        font-size: 21px;
        margin-bottom: 66px;
    }

    .connect-heading h2 {
        font-size: 43px;
    }

    .connect-wrap {
        display: grid;
        grid-column-gap: 37px;
        margin-bottom: 42px;
        grid-template-columns: repeat(2, 1fr);
    }

    .connect-item {
        margin-bottom: 31px;
    }

    .connect textarea {
        height: 368px;
        padding: 42px 18px;
    }

    .connect-btn button {
        min-height: 82px;
        font-size: 24px;
    }

    .footer-top {
        display: flex;
        max-width: 1065px;
        margin: 0 auto 77px;
        justify-content: space-between;
    }

    .footer-btn {
        width: 50%;
        margin-bottom: 0;
    }

    .footer-btn .white {
        width: auto;
    }

    .footer-btn .button + .button {
        margin-top: 0;
    }

    .footer-social {
        text-align: unset;
        display: flex;
        align-items: center;
    }

    .footer-social li a {
        font-size: 20px;
        width: 42px;
        height: 42px;
    }

    .footer-social p:last-of-type {
        margin-bottom: 0;
        margin-right: 15px;
    }

    .footer-holder {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding-left: 21px;
        padding-right: 21px;
    }
    
    .footer-link {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    
    .footer-link li a {
        padding: 0.5rem 1.5rem;
        font-size: 1.05rem;
    }

    .footer-column {
        width: 45%;
    }

    .footer-column-2 {
        width: 45%;
    }

    .footer-column-3 {
        width: 45%;
    }

    .copyright {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .copyright p {
        margin-bottom: 0;
    }

    .copyright-social {
        margin: 0;
    }

    .copyright-links li:not(:last-of-type) {
        margin-right: 25px;
    }
}

@media screen and (min-width: 1025px) {
    .wrapper {
        padding-top: 147px;
    }

    .header-logo {
        width: 220px;
    }

    .header-right {
        width: 80%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header-menu {
        width: 66%;
        margin-bottom: 0;
    }

    .header-menu ul {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .header-menu li {
        margin-right: 32px;
        margin-bottom: 0;
    }

    .header-menu li:last-of-type {
        margin-right: 0;
    }

    .header-menu .submenu {
        position: absolute;
        width: 250px;
        top: 22px;
        left: 0;
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        padding: 8px 0;
    }

    .header-menu li.has-children:hover ul {
        opacity: 1;
        visibility: visible;
    }
    
    .header-menu .submenu li {
        padding: 6px 12px;
        margin: 2px 8px;
    }
    
    .header-menu .submenu li:hover {
        background-color: rgba(45, 80, 22, 0.1);
    }
    
    .header-menu .submenu li a {
        padding: 0;
    }

    .header-menu-icon {
        display: block;
        line-height: 1;
        margin: 0 auto;
        text-align: center;
    }

    .header-btn {
        width: 29%;
    }

    .header-btn .button {
        width: 100%;
    }

    .mobileMenu {
        display: none;
    }

    .banner-image {
        height: 450px;
    }

    .banner-text {
        top: 27%;
    }

    .banner h1 {
        margin-top: -23px;
        font-size: 165px;
    }

    .banner-text span {
        font-size: 49px;
    }

    .banner-text strong {
        font-size: 78px;
    }

    .products-holder {
        grid-row-gap: 125px;
    }

    .card-products {
        font-size: 28px;
    }

    .card-products-info h3 {
        font-size: 35px;
    }

    .join-holder {
        padding-bottom: 100px;
    }

    .card-history-info h3 {
        font-size: 30px;
    }

    .footer-column {
        width: 33%;
    }

    .footer-column-2 {
        width: 33%;
    }

    .footer-column-3 {
        width: 33%;
    }

    .footer-btn .button + .button {
        margin-left: 25px;
    }

    .footer-btn .white {
        max-width: 230px;
        width: 100%;
    }

    .footer-social {
        font-size: 21px;
    }

    .footer-social li:not(:last-of-type) {
        margin-right: 25px;
    }

    .footer-social li a {
        font-size: 25px;
    }

    .copyright p {
        font-size: 21px;
    }

    .copyright-social {
        width: 60px;
        height: 60px;
    }

    .copyright-links li a {
        font-size: 22px;
    }
}

@media screen and (min-width: 1441px) {
    .wrapper {
        padding-top: 182px;
    }

    .header-holder {
        padding-top: 46px;
        padding-bottom: 33px;
    }

    .header-logo {
        width: 280px;
    }

    .header-right {
        margin-bottom: 16px;
    }

    .header-menu {
        width: 60%;
    }

    .header-menu li {
        margin-right: 55px;
    }

    .header-btn {
        width: 32.7%;
    }

    .header-btn .button {
        width: auto;
        margin-bottom: 0;
    }

    .header-btn .button:not(:last-of-type) {
        margin-right: 23px;
    }

    .banner-image {
        height: 500px;
    }

    .banner-text {
        left: 24.3%;
    }

    .products-holder {
        grid-column-gap: 147px;
    }

    .footer-social p:last-of-type {
        margin-right: 30px;
    }

    .footer-column {
        width: 17.8%;
        margin-bottom: 0;
    }

    .footer-column-2 {
        width: 18%;
        margin-bottom: 0;
    }

    .footer-column-3 {
        width: 10%;
    }
}

@media screen and (min-width: 1680px) {
    .header-right {
        width: 83%;
    }

    .header-menu li {
        margin-right: 96px;
    }

    .header-btn {
        width: 26.7%;
    }

    .banner-image {
        height: auto;
    }

}

@media screen and (min-width: 1850px) {
    .container {
        padding-right: calc((100% - var(--width-base)) / 2); padding-left: calc((100% - var(--width-base)) / 2);
    }

    .container-lg {
        padding-right: calc((100% - var(--width-large)) / 2); padding-left: calc((100% - var(--width-large)) / 2);
    }

    .header-right {
        width: 85%;
    }

    .header-menu {
        width: 49%;
    }

    .header-btn {
        width: 31.1%;
    }

    .header-btn .button:not(:last-of-type) {
        width: 100%;
        max-width: 225px;
    }

}

/*******************************************************************************************
MEMBER MODAL & LOGIN
*******************************************************************************************/

/* Member Area in Header */
.member-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.member-welcome {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.member-welcome span {
    color: var(--text-color-base);
    font-size: 0.9rem;
    text-align: right;
}

.member-welcome strong {
    font-weight: 600;
}

.member-welcome .button {
    align-self: flex-end;
    background-color: #1a6bb8;
    transition: background-color 0.3s;
}

.member-welcome .button:hover,
.member-welcome .button:focus {
    background-color: #145a9e;
}

/* Member Modal Styles */
.member-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1005;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 2rem 0;
}

.member-modal.active {
    display: flex;
}

.member-modal-content {
    background: white;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    max-height: calc(100vh - 4rem);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: relative;
    margin: auto 0;
}

.member-modal-content.dashboard-content {
    max-width: 550px;
}

.member-modal-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 2px solid var(--color-green);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.member-modal-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-green);
}

.member-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0.25rem 0.5rem;
    line-height: 1;
}

.member-modal-close:hover {
    color: var(--color-black);
}

.member-modal-body {
    padding: 1rem 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.member-info {
    background: #e7f3ff;
    border: 1px solid #0066cc;
    color: #0052a3;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.member-info p {
    margin: 0 0 0.75rem 0;
}

.access-content-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.access-content-icons img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 4px;
    background: white;
    padding: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.member-error {
    background: #fee;
    border: 1px solid #c33;
    color: #c33;
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.member-success {
    background: #efe;
    border: 1px solid #3c3;
    color: #3c3;
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 0.75rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color-base);
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-green);
}

.btn-member-submit {
    width: 100%;
    padding: 0.875rem;
    background: var(--color-green);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.2s;
}

.button {
    cursor: pointer;
}

.btn-member-submit:hover {
    background: #026a18;
}

.btn-member-submit:disabled {
    background: #999;
    cursor: not-allowed;
}

.member-modal-footer-text {
    text-align: center;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.9rem;
}

.member-modal-footer-text a {
    color: var(--color-green);
    font-weight: 600;
    text-decoration: none;
}

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

/* Dashboard Styles */
.dashboard-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.btn-logout {
    background: #c72a1c;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-logout:hover {
    background: #a02015;
}

.dashboard-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.dashboard-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.dashboard-section h3 {
    color: var(--color-green);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.account-summary {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.account-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.account-summary-item .label {
    font-weight: 600;
    color: #666;
}

.account-summary-item .value {
    color: var(--text-color-base);
}

/* Dashboard Tabs */
.dashboard-tabs {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    margin: -1rem -1.5rem 1.5rem -1.5rem;
    padding: 0;
    background: #f7f7f7;
    border-radius: 0;
}

.dashboard-tab {
    flex: 1;
    padding: 0.875rem 1.25rem;
    background: #f7f7f7;
    border: 0px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: #666;
    transition: all 0.2s ease;
    margin-bottom: -1px;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-tab + .dashboard-tab {
    margin-left: -1px;
}

.dashboard-tab:hover {
    color: var(--color-green);
    background: rgba(0, 0, 0, 0.02);
}

.dashboard-tab.active {
    color: var(--color-green);
    background: #fff;
    border-bottom-color: #fff;
    font-weight: 600;
    border-radius: 0;
    box-shadow: inset 0 1px 0 rgba(45, 80, 22, 0.15);
}

.dashboard-tab.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: #fff;
}

.dashboard-tab-content {
    display: none;
}

.dashboard-tab-content.active {
    display: block;
}

/* Service Items */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: #f5f9f5;
    border: 1px solid #d4e5d4;
    border-left: 3px solid var(--color-green);
    border-radius: 4px;
}

.service-item.pending-cancel {
    opacity: 0.5;
    background: #fee;
    border-color: #fcc;
    border-left-color: #c33;
}

.service-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.service-thumbnail {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.service-name {
    font-weight: 500;
    color: #333;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-fee {
    font-size: 0.9rem;
    color: #666;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 80px;
    text-align: right;
}

.service-expiration {
    font-size: 0.8rem;
    color: #666;
}

.btn-service-access {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-green);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    text-align: center;
}

.btn-service-access:hover {
    background: #026a18;
    color: white;
}

.btn-service-remove {
    padding: 0.4rem 0.75rem;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}

.btn-service-remove:hover {
    background: #c82333;
}

.btn-service-undo {
    padding: 0.4rem 0.75rem;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
}

.pending-removal-badge {
    display: inline-block;
    background: #dc3545;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 500;
}

.service-item.already-cancelled {
    background: #f8f9fa;
}

.already-cancelled-label {
    color: #6c757d;
    font-size: 0.85rem;
    font-style: italic;
    flex-shrink: 0;
}

.billing-status {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.85rem;
    background: #eee;
}

.billing-status.active {
    background: #d4edda;
    color: #155724;
}

.no-billing {
    color: #888;
    font-style: italic;
}

.manage-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--color-green);
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
}

.manage-link:hover {
    text-decoration: underline;
}

/* Manage Account Tab */
.manage-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.manage-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.manage-section h4 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.form-select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
    background: white;
}

.form-select:focus {
    outline: none;
    border-color: var(--color-green);
}

.form-help-text {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}

.cancel-all-section {
    background: #fff5f5;
    border: 1px solid #fcc;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1rem;
}

.cancel-all-section p {
    margin: 0 0 0.75rem 0;
    color: #666;
    font-size: 0.9rem;
}

.btn-cancel-all {
    padding: 0.5rem 1rem;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-cancel-all:hover {
    background: #c82333;
}

.btn-save-changes {
    width: 100%;
    padding: 0.875rem;
    background: var(--color-green);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
}

.btn-save-changes:hover {
    background: #026a18;
}

.btn-save-changes:disabled {
    background: #999;
    cursor: not-allowed;
}

.pending-changes-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.scheduled-changes-notice {
    background: #e7f3ff;
    border: 1px solid #b8daff;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1rem;
}

.scheduled-changes-notice h4 {
    margin: 0 0 0.5rem 0;
    color: #004085;
    font-size: 0.95rem;
}

.scheduled-changes-notice p {
    margin: 0.25rem 0;
    color: #004085;
    font-size: 0.9rem;
}

.scheduled-changes-notice ul {
    margin: 0.5rem 0 0 1.5rem;
    padding: 0;
}

.scheduled-changes-notice li {
    color: #004085;
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .account-summary {
        grid-template-columns: 1fr;
    }
}

.reset-instruction {
    margin-bottom: 1rem;
    color: var(--text-color-base);
    font-size: 0.9rem;
}

.reset-or {
    text-align: center;
    margin: 1rem 0;
    color: #666;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
}

.reset-or::before,
.reset-or::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #ddd;
}

.reset-or::before {
    left: 0;
}

.reset-or::after {
    right: 0;
}

.reset-customer-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

@media (max-width: 480px) {
    .reset-customer-fields {
        grid-template-columns: 1fr;
    }
}

.page-padded {
	padding: 0 20px;
}