:root {
    --color-magnetic: #0e100f;
    --color-magnetic-surface: #fffce1;
    --ease-in: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out: cubic-bezier(0.86, 0, 0.07, 1);
    --ease-out-quart: cubic-bezier(0.175, 0.79, 0.38, 0.905);
    --ease-in-out-quart: cubic-bezier(0.645, 0.045, 0.355, 1);
}

#adaptive-cursor {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    z-index: 9;
    background-color: #0000003d;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    pointer-events: none;
    font-family: "Shrikhand";
    font-style: italic;
    font-weight: 400;
    font-size: 25px;
    line-height: 33px;
    color: #ffffff;
    text-shadow: 1px 4px 0px #b93520;
}

.hover-zone {
    position: relative;
}

.header {
    max-width: 100vw;
    background-color: transparent;
    background: linear-gradient(
        180deg,
        #fff9ee 0%,
        rgba(255, 249, 238, 0.245) 52.5%,
        rgba(255, 255, 255, 0) 100%
    );
    padding: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
}
.header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff9ee;
    z-index: -1;
    transition: opacity 0.3s;
    opacity: 0;
}
@media screen and (max-width: 1024px) {
    .header {
        padding: 0;
    }
}
.header .nav {
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 1024px) {
    .header .nav {
        padding: 10px;
        position: relative;
    }
}
@media screen and (max-width: 445px) {
    .header .nav {
        padding: 0 1rem;
    }
}
.header .nav .nav-left {
    display: flex;
    align-items: center;
    flex: 0 0 calc(50% - 175px);
}
.header .nav .nav-left a,
.header .nav .nav-left .nav-dropdown button {
    text-decoration: none;
    padding: 10px 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-family: Poppins;
    color: #b93520;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 31.5px;
    letter-spacing: 4%;
}
.header .nav .nav-left a.active,
.header .nav .nav-left a:hover,
.header .nav .nav-left .nav-dropdown button.active,
.header .nav .nav-left .nav-dropdown button:hover {
    text-decoration: underline;
    text-decoration-color: #c41111;
    text-underline-offset: 5px;
    text-decoration-thickness: 5px;
}
@media screen and (max-width: 1300px) {
    .header .nav .nav-left a,
    .header .nav .nav-left .nav-dropdown button {
        font-size: 1rem;
    }
}
.header .nav .nav-center {
    display: flex;
    align-items: center;
    flex: 0 0 250px;
    justify-content: center;
    margin-bottom: -30px;
}
@media screen and (max-width: 1300px) {
    .header .nav .nav-center {
        flex: 0 0 auto;
        margin-bottom: 0;
    }
}
.header .nav .nav-center a {
    margin-left: 1rem;
    color: #333;
    text-decoration: none;
    padding: 10px 15px;
    border: 1px solid #2e2e2e;
    cursor: pointer;
}
.header .nav .nav-center a:hover {
    text-decoration: underline;
}
@media screen and (max-width: 1300px) {
    .header .nav .nav-center img {
        width: 150px;
    }
}
@media screen and (max-width: 395px) {
    .header .nav .nav-center img {
        width: 120px;
    }
}
@media screen and (max-width: 1300px) {
    .header .nav .nav-center svg {
        width: 40px;
    }
}
@media screen and (max-width: 395px) {
    .header .nav .nav-center svg {
        width: 25px;
    }
}
.header .nav .nav-right {
    display: flex;
    align-items: center;
    flex: 0 0 calc(50% - 175px);
    justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
    .header .nav .nav-right {
        gap: 10px;
    }
}
.header .nav .nav-right a {
    margin-left: 1rem;
}
.header .nav .nav-right .login-link,
.header .nav .nav-right .join-link {
    text-decoration: none;
    white-space: nowrap;
    font-family: Poppins;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 31.5px;
    letter-spacing: 4%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.header .nav .nav-right .login-link.active,
.header .nav .nav-right .login-link:hover,
.header .nav .nav-right .join-link.active,
.header .nav .nav-right .join-link:hover {
    box-shadow: none;
    transform: translate(5px, 5px);
}
.header .nav .nav-right .login-link ,
.header .nav .nav-right .join-link  {
    padding: 5px 15px;
}
@media screen and (max-width: 1024px) {
    .header .nav .nav-right .login-link ,
    .header .nav .nav-right .join-link  {
        padding: 0 10px;
    }
}
@media screen and (max-width: 1300px) {
    .header .nav .nav-right .login-link,
    .header .nav .nav-right .join-link {
        font-size: 1rem;
    }
}
.header .nav .nav-right .login-link {
    --color-magnetic: #fff;
    --color-magnetic-surface: #b93520;
    background: #fff9ee;
    border: 1px solid #e84228;
    box-shadow: 5px 5px 0px #e84228;
}
.header .nav .nav-right .join-link {
    --color-magnetic: #b93520;
    --color-magnetic-surface: #fff9ee;
    background: #e84228;
    border: 1px solid #e84228;
    box-shadow: 5px 5px 0px #000000;
}
.header .nav .nav-dropdown {
    position: relative;
}
.header .nav .nav-dropdown button {
    outline: none;
    border: none;
    background-color: transparent;
    padding: 0;
}
.header .nav .nav-dropdown .nav-dropdown-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border-color: #b93520;
    border-radius: 0;
    border: 1px solid #b93520;
    box-shadow: 4px 4px 0px black;
    padding: 0;
    margin: 0;
    list-style: none;
    white-space: nowrap;
    padding: 5px;
}
.header .nav .nav-dropdown .nav-dropdown-menu > * {
    margin-left: 0;
}
.header .nav .nav-mobile {
    position: absolute;
    width: 100%;
    height: calc(100vh - 0rem);
    top: 0;
    background: linear-gradient(to bottom, #ffffff, #ffffffec);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10% 5%;
}
.header .nav .nav-mobile a {
    text-decoration: none;
    padding: 10px 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-family: Poppins;
    color: #b93520;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 31.5px;
    letter-spacing: 4%;
}
.header .nav .nav-mobile a.active,
.header .nav .nav-mobile a:hover {
    text-decoration: underline;
    text-decoration-color: #c41111;
    text-underline-offset: 5px;
    text-decoration-thickness: 5px;
}
@media screen and (max-width: 1024px) {
    .header .nav .nav-mobile a {
        font-size: 1rem;
    }
}
.header .nav .nav-mobile .mobile-nav-socials {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: auto;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    .header .nav .nav-mobile {
        display: none;
    }
}
.header.scrolling {
    padding: 0.5rem 1rem;
}
.header.scrolling::after {
    opacity: 1;
}
.header.scrolling .nav .nav-center {
    margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
    .header.scrolling {
        padding: 0 1rem;
    }
}
.header .menu-toggle {
    background: #fff9ee;
    border: 1px solid #e84228;
    box-shadow: 5px 5px 0px #e84228;
    outline: none;
}
@media screen and (max-width: 1024px) {
    .header .menu-toggle {
        z-index: 1;
    }
}
@media screen and (min-width: 1024px) {
    .header .nav-right.mobile-toggle {
        display: none;
    }
}
@media (max-width: 768px) {
    .header .menu-toggle {
        display: block;
        cursor: pointer;
    }
    .header .nav-left.open,
    .header .nav-right.open {
        display: block;
    }
}

.magnet {
    align-items: center;
    background: 0 0;
    border: none;
    color: var(--color-magnetic-surface);
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    word-break: break-word;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

@media (hover: hover) {
    .magnet.magnet--stroke:hover {
        color: var(--color-magnetic);
        text-decoration: none;
    }
}
.magnet--stroke:after {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.magnet--stroke:after {
    content: "";
    pointer-events: none;
}

.magnet__label {
    position: relative;
    text-align: center;
    transition: color 50ms var(--ease-in-out-quart);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.magnet--stroke:hover .magnet__label {
    transition: color 0.15s var(--ease-in-out-quart);
}

.magnet__flair {
    bottom: 0;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
}

.magnet--stroke .magnet__flair {
    transform: scale(0);
    transform-origin: 0 0;
    will-change: transform;
}

.magnet__flair:before {
    aspect-ratio: 1/1;
    background-color: var(--color-magnetic-surface);
    border-radius: 50%;
    content: "";
    display: block;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transform: translate(-50%, -50%);
    width: 150%;
}

.warning-login,
.warning-join {
    text-decoration: none;
    white-space: nowrap;
    font-family: Poppins;
    color: #ffffff;
    font-weight: 700;
    font-size: 21px;
    line-height: 31.5px;
    letter-spacing: 4%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px 30px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.warning-login.active,
.warning-login:hover,
.warning-join.active,
.warning-join:hover {
    box-shadow: none;
    transform: translate(5px, 5px);
}

.warning-login {
    --color-magnetic: #fff;
    --color-magnetic-surface: #b93520;
    color: #0e100f;
    background: #fff9ee;
    border: 1px solid #e84228;
    box-shadow: 5px 5px 0px #e84228;
}

.warning-join {
    --color-magnetic: #b93520;
    --color-magnetic-surface: #fff9ee;
    background: #e84228;
    border: 1px solid #e84228;
    box-shadow: 5px 5px 0px #000000;
}

.warning-enter,
.warning-exit {
    --color-magnetic: #fff;
    --color-magnetic-surface: #b93520;
    display: inline-flex;
    width: fit-content;
    text-decoration: none;
    white-space: nowrap;
    font-family: Poppins;
    font-weight: 700;
    font-size: 1.8rem;
    border: 1px solid #e84228;
    color: #0e100f;
    margin: 2px 10px;
}
.warning-enter .magnet,
.warning-exit .magnet {
    padding: 5px 20px;
}

.warning-enter {
    --color-magnetic: #b93520;
    --color-magnetic-surface: #fff9ee;
    background: #b93520;
}

.hero-wrapper {
    display: flex;
    position: relative;
}
.hero-wrapper .video-container {
    display: flex;
    width: 100%;
    height: 100%;
}
.hero-wrapper .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-wrapper .text-container {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-wrapper .text-container .display-text {
    position: relative;
    height: 110px;
    overflow: hidden;
}
.hero-wrapper .text-container .display-text .stagger-title {
    position: absolute;
}
.hero-wrapper .display-text {
    display: flex;
    justify-content: center;
}
.hero-wrapper .latest-title {
    font-family: "Shrikhand";
    font-style: italic;
    font-weight: 400;
    font-size: 74px;
    line-height: 108px;
    height: 108px;
    width: 100%;
    overflow: hidden;
    color: #ffffff;
    text-shadow: -4px 6px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    text-align: center;
}
.hero-wrapper .latest-title span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
@media screen and (max-width: 450px) {
    .hero-wrapper .latest-title {
        font-size: 34px;
        line-height: 45px;
        height: 94px;
        overflow: visible;
    }
    .hero-wrapper .latest-title span {
        text-overflow: clip;
        overflow: visible;
        white-space: normal;
    }
}
.hero-wrapper .person-name {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.23em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: -4px 6px 8px rgba(0, 0, 0, 0.5);
}
.hero-wrapper .person-name a {
    color: #ffffff;
    text-decoration: none;
}
@media screen and (max-width: 450px) {
    .hero-wrapper .person-name {
        font-size: 12px;
        line-height: 20px;
        text-align: center;
    }
}
.hero-wrapper .hero-details {
    display: flex;
    align-items: center;
}
.hero-wrapper .hero-details span {
    color: #ff0000;
}
.hero-wrapper .hero-details .hero-link,
.hero-wrapper .hero-details .hero-episode {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    text-shadow: -4px 6px 8px rgba(0, 0, 0, 0.5);
    flex: none;
    order: 1;
    flex-grow: 0;
    padding: 5px 15px;
}
.hero-wrapper .hero-details .hero-link {
    font-size: 24px;
    line-height: 36px;
    border-right: 3px solid #fff;
}
.hero-wrapper .hero-details .hero-episode {
    font-size: 18px;
    line-height: 27px;
}
@media screen and (max-width: 450px) {
    .hero-wrapper .hero-details .hero-link {
        font-size: 14px;
        line-height: 20px;
    }
    .hero-wrapper .hero-details .hero-episode {
        font-size: 12px;
        line-height: 16px;
    }
}

.stagger-cover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: white;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    line-height: 1.5;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none;
}
.stagger-cover .stagger-box {
    pointer-events: none;
}
.stagger-cover .one {
    display: block;
    position: absolute;
    height: 20%;
    width: 100%;
    background: #f2da3d;
    left: 0;
    top: 0;
}
.stagger-cover .two {
    display: block;
    position: absolute;
    height: 20%;
    width: 100%;
    background: #f2b23d;
    left: 0;
    top: 20%;
    z-index: 1000;
}
.stagger-cover .three {
    display: block;
    position: absolute;
    height: 20%;
    width: 100%;
    background: #f2563d;
    left: 0;
    top: 40%;
}
.stagger-cover .four {
    display: block;
    position: absolute;
    height: 20%;
    width: 100%;
    background: #0db4f8;
    left: 0;
    top: 60%;
}
.stagger-cover .five {
    display: block;
    position: absolute;
    height: 20%;
    width: 100%;
    background: #0d3ef8;
    left: 0;
    top: 80%;
}

.section-header {
    position: relative;
    text-align: center;
    padding: 0;
    height: 30px;
    margin: 2rem auto;
    width: 100%;
}
.section-header h5 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Oleo Script Swash Caps";
    font-style: normal;
    font-weight: 400;
    font-size: 55px;
    line-height: 76px;
    /* identical to box height */
    color: #e84228;
    background-color: #fff9ee;
    white-space: nowrap;
    width: fit-content;
    z-index: 1;
}
.section-header h5::after {
    content: attr(data-name);
    -webkit-text-stroke: 11px #fff9ee;
    color: #fff9ee;
    font-size: 56px;
    position: absolute;
    width: 110%;
    height: 110%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
@media screen and (max-width: 450px) {
    .section-header h5 {
        font-size: 34px;
        line-height: 45px;
    }
    .section-header h5::after {
        font-size: 35px;
    }
}
.section-header .section-header-bg {
    z-index: -1;
}
.section-header .one {
    display: block;
    position: absolute;
    height: 20%;
    width: 100%;
    background: #f2da3d;
    left: 0;
    top: 0;
}
.section-header .two {
    display: block;
    position: absolute;
    height: 20%;
    width: 100%;
    background: #f2b23d;
    left: 0;
    top: 20%;
}
.section-header .three {
    display: block;
    position: absolute;
    height: 20%;
    width: 100%;
    background: #f2563d;
    left: 0;
    top: 40%;
}
.section-header .four {
    display: block;
    position: absolute;
    height: 20%;
    width: 100%;
    background: #0db4f8;
    left: 0;
    top: 60%;
}
.section-header .five {
    display: block;
    position: absolute;
    height: 20%;
    width: 100%;
    background: #0d3ef8;
    left: 0;
    top: 80%;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.page-header h3 {
    font-family: "Shrikhand";
    font-style: italic;
    font-weight: 400;
    font-size: 37px;
    line-height: 54px;
    /* identical to box height */
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #111111;
    text-shadow: 3px 5px 0px #e7e7e7;
}
.page-header .filter-wrapper {
    display: flex;
    gap: 10px;
}
.page-header .filter-wrapper button {
    background-color: transparent;
    border: none;
    outline: none;
    font-family: "Shrikhand";
    font-style: italic;
    font-weight: 400;
    font-size: 21px;
    line-height: 31px;
    /* identical to box height */
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.page-header .filter-wrapper button > * {
    pointer-events: none;
}
.page-header .filter-wrapper button.active {
    color: #ff6200;
}
.page-header .filter-wrapper button svg {
    width: 15px;
}
.page-header .filter-by-tag {
    display: flex;
    align-items: center;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #e84228;
}
.page-header .filter-by-tag .remove-tag {
    padding: 5px 10px;
    margin-left: 10px;
    background-color: #e84228;
    color: #fff;
    box-shadow: 4px 4px 0px #000;
}

.view-all {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: fit-content;
    margin-top: 1rem;
    margin-bottom: 2rem;
}
.view-all a,
.view-all button {
    text-decoration: none;
    white-space: nowrap;
    font-family: Poppins;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 31.5px;
    letter-spacing: 4%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    --color-magnetic: #fff;
    --color-magnetic-surface: #b93520;
    background: #fff9ee;
    border: 1px solid #e84228;
    box-shadow: 5px 5px 0px #e84228;
    padding: 0;
}
.view-all a.active,
.view-all a:hover,
.view-all button.active,
.view-all button:hover {
    box-shadow: none;
    transform: translate(5px, 5px);
}
.view-all a .magnet,
.view-all button .magnet {
    padding: 5px 15px;
}
@media screen and (max-width: 1300px) {
    .view-all a,
    .view-all button {
        font-size: 1rem;
    }
}

.-seasons-page .view-all {
    position: relative;
}
.-seasons-page .view-all::before,
.-seasons-page .view-all::after {
    content: "";
    position: absolute;
    top: calc(50% + 5px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 1px;
    background: #e84228;
    z-index: -1;
}

.vip-access {
    background-color: #f2b23d;
    background-size: cover;
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 0;
}
@media screen and (max-width: 450px) {
    .vip-access {
        padding: 50px 10px;
    }
}
.vip-access > *:not(img) {
    position: relative;
    z-index: 1;
}
.vip-access img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    opacity: 0.2;
    mix-blend-mode: hard-light;
}
.vip-access h2 {
    font-family: "Shrikhand";
    font-style: italic;
    font-weight: 400;
    font-size: 77.5289px;
    line-height: 68px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    color: #b93520;
    filter: drop-shadow(5px 8px 0px #f2da3d) drop-shadow(3px 5px 0px #f2b23d);
}
.vip-access h2 span {
    font-size: 168px;
}
@media screen and (max-width: 1024px) {
    .vip-access h2 {
        font-size: 50px;
        line-height: 50px;
        filter: drop-shadow(2px 4px 0px #f2da3d)
            drop-shadow(1px 3px 0px #f2b23d);
        padding: 0 1rem;
    }
    .vip-access h2 span {
        font-size: 55px;
    }
}
@media screen and (max-width: 450px) {
    .vip-access h2 {
        font-size: 24px;
        line-height: 45px;
        filter: drop-shadow(2px 4px 0px #f2da3d)
            drop-shadow(1px 3px 0px #f2b23d);
    }
    .vip-access h2 span {
        font-size: 49px;
    }
}
.vip-access p {
    font-family: "Shrikhand";
    font-style: italic;
    font-weight: 400;
    font-size: 43.0943px;
    line-height: 63px;
    text-align: center;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #881907;
    text-shadow: 5px 7px 0px #f2b23d, 7px 11px 0px #f2da3d;
    margin: 20px 0;
}
@media screen and (max-width: 1024px) {
    .vip-access p {
        padding: 0 1rem;
        font-size: 30px;
        line-height: 40px;
        text-shadow: 2px 3px 0px #f2b23d, 4px 5px 0px #f2da3d;
    }
}
@media screen and (max-width: 450px) {
    .vip-access p {
        font-size: 1rem;
        line-height: normal;
        padding: 0 4rem;
        text-shadow: 2px 3px 0px #f2b23d, 4px 5px 0px #f2da3d;
    }
}
.vip-access a {
    font-family: "Shrikhand";
    font-style: italic;
    font-weight: 400;
    font-size: 43px;
    line-height: 63px;
    text-align: center;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    text-decoration: none;
    width: fit-content;
    display: flex;
    margin: auto;
    color: #fff5bf;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    --color-magnetic: #fff;
    --color-magnetic-surface: #b93520;
    background: #f2563d;
    box-shadow: 10px 10px 0px #8c200f;
}
.vip-access a .magnet {
    color: #fff5bf;
    padding: 5px 25px;
}
@media screen and (max-width: 1024px) {
    .vip-access a {
        font-size: 30px;
        line-height: 40px;
    }
}
@media screen and (max-width: 450px) {
    .vip-access a {
        font-size: 1rem;
        line-height: 40px;
        box-shadow: 5px 5px 0px #8c200f;
    }
}

.member-benefits {
    background-color: #f2563d;
    background-size: cover;
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 0;
    margin: 1rem 0;
}
@media screen and (max-width: 450px) {
    .member-benefits {
        padding: 50px 10px;
    }
}
.member-benefits > *:not(img) {
    position: relative;
    z-index: 1;
    margin: 1.5rem 0;
}
.member-benefits h3 {
    font-family: "Shrikhand";
    font-style: italic;
    font-weight: 400;
    font-size: 99px;
    line-height: 87px;
    text-align: center;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 5px 7px 0px #f2b23d, 7px 11px 0px #f2da3d;
}
@media screen and (max-width: 1024px) {
    .member-benefits h3 {
        font-size: 50px;
        line-height: 50px;
        text-shadow: 2px 3px 0px #f2b23d, 4px 5px 0px #f2da3d;
        padding: 0 1rem;
    }
}
@media screen and (max-width: 450px) {
    .member-benefits h3 {
        font-size: 37px;
        line-height: 47px;
        text-shadow: 2px 3px 0px #f2b23d, 4px 5px 0px #f2da3d;
    }
}
.member-benefits .benefits-sub-header {
    font-family: "Lexend";
    font-style: normal;
    font-weight: 600;
    font-size: 27px;
    line-height: 34px;
    /* identical to box height */
    text-align: center;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 450px) {
    .member-benefits .benefits-sub-header {
        font-size: 15px;
        line-height: 15px;
    }
}
.member-benefits img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    opacity: 0.2;
    mix-blend-mode: hard-light;
}
.member-benefits .benefits-list {
    text-align: center;
}
.member-benefits .benefits-list p {
    color: #ffffff;
    font-family: "Lexend";
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    line-height: 31px;
    text-align: center;
    gap: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.member-benefits .benefits-list p span {
    color: #f2da3d;
}
@media screen and (max-width: 1024px) {
    .member-benefits .benefits-list p {
        font-size: 20px;
        line-height: 25px;
        padding: 0 1rem;
    }
}
@media screen and (max-width: 450px) {
    .member-benefits .benefits-list p {
        font-size: 10px;
        line-height: 12px;
    }
}
.member-benefits a {
    font-family: "Shrikhand";
    font-style: italic;
    font-weight: 400;
    font-size: 43px;
    line-height: 63px;
    text-align: center;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    text-decoration: none;
    width: fit-content;
    display: flex;
    margin: auto;
    color: #fff5bf;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    --color-magnetic: #fff;
    --color-magnetic-surface: #f2b23d;
    background: #0db4f8;
    box-shadow: 10px 10px 0px #8c200f;
}
.member-benefits a .magnet {
    color: #ffffff;
    padding: 5px 25px;
}
@media screen and (max-width: 1024px) {
    .member-benefits a {
        font-size: 30px;
        line-height: 40px;
    }
}
@media screen and (max-width: 450px) {
    .member-benefits a {
        font-size: 1rem;
        line-height: 40px;
        box-shadow: 5px 5px 0px #8c200f;
    }
}

.horizontal-photoset {
    overflow: hidden;
    font-family: Poppins;
}
.horizontal-photoset::-webkit-scrollbar {
    display: none;
}
.horizontal-photoset .main-wrapper {
    display: flex;
}
.horizontal-photoset .main-wrapper::-webkit-scrollbar {
    display: none;
}
.horizontal-photoset .main-wrapper section {
    height: 100vh;
    width: 100vw;
    flex-shrink: 0;
}
.horizontal-photoset .main-wrapper .section-1 {
    display: flex;
}
.horizontal-photoset .main-wrapper .box1 {
    width: 65%;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 1024px) {
    .horizontal-photoset .main-wrapper .box1 {
        display: none;
    }
}
.horizontal-photoset .main-wrapper .name {
    font-family: "Oleo Script Swash Caps";
    font-size: 150px;
    color: #e84228;
    filter: drop-shadow(5.48184px 8.61433px 0px #f2da3d)
        drop-shadow(3.9156px 5.48184px 0px #f2b23d);
}
.horizontal-photoset .main-wrapper .box2 {
    width: 35%;
}
@media screen and (max-width: 1024px) {
    .horizontal-photoset .main-wrapper .box2 {
        width: 100%;
    }
}
.horizontal-photoset .main-wrapper .image-gallery {
    display: flex;
    height: 100vh;
}
.horizontal-photoset .main-wrapper .column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.horizontal-photoset .main-wrapper img {
    height: auto;
    width: 200px;
    object-fit: cover;
    background-color: black;
}
@media screen and (max-width: 1024px) {
    .horizontal-photoset .main-wrapper img {
        width: 100%;
    }
}
.horizontal-photoset .main-wrapper .column-1 img,
.horizontal-photoset .main-wrapper .column-3 img {
    padding: 0.2rem 0.5rem;
}
.horizontal-photoset .main-wrapper .column-2 img {
    padding: 0.2rem 0;
}
.horizontal-photoset .main-wrapper .wrapper {
    display: flex;
    width: 100%;
    height: 100%;
}
.horizontal-photoset .main-wrapper .main-view {
    width: 96%;
    padding: 0 0.8rem;
    padding-left: 0;
    padding-bottom: 0.5rem;
}
.horizontal-photoset .main-wrapper .main-view img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: bottom;
}
@media screen and (max-width: 1024px) {
    .horizontal-photoset .main-wrapper .main-view img {
        height: 65vh;
    }
}
.horizontal-photoset .main-wrapper p {
    font-size: 80px;
    line-height: 80px;
}
@media screen and (max-width: 1024px) {
    .horizontal-photoset .main-wrapper p {
        font-size: 50px;
        line-height: 50px;
    }
}
@media screen and (max-width: 450px) {
    .horizontal-photoset .main-wrapper p {
        font-size: 38px;
        line-height: 36px;
    }
}
.horizontal-photoset .main-wrapper .line-1 {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem 1rem 0;
}
@media screen and (max-width: 1024px) {
    .horizontal-photoset .main-wrapper .line-1 {
        padding: 1rem 3rem 1rem 1rem;
    }
}
.horizontal-photoset .main-wrapper .line-2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    padding: 1rem 2rem 1rem 0;
}
@media screen and (max-width: 1024px) {
    .horizontal-photoset .main-wrapper .line-2 {
        padding: 1rem 4rem 1rem 1rem;
    }
}
.horizontal-photoset .main-wrapper .line-2 .become-member {
    width: 100%;
    max-width: 800px;
    font-family: Poppins;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background: #e84228;
    box-shadow: 10px 10px 0px #000000;
    font-size: 80px;
    line-height: 80px;
}
@media screen and (max-width: 1024px) {
    .horizontal-photoset .main-wrapper .line-2 .become-member {
        font-size: 50px;
        line-height: 50px;
        width: fit-content;
        padding: 0 20px;
    }
}
@media screen and (max-width: 450px) {
    .horizontal-photoset .main-wrapper .line-2 .become-member {
        font-size: 23px;
        line-height: 35px;
        width: fit-content;
        padding: 0 15px;
    }
}
.horizontal-photoset .main-wrapper .line-2 .num {
    text-align: left;
    width: 100%;
}
.horizontal-photoset .main-wrapper .loop {
    height: 30px;
    width: 120px;
    white-space: nowrap;
    overflow: hidden;
    background: none;
    border: 1px solid #444;
    position: absolute;
    top: 75%;
    left: 80%;
    cursor: pointer;
}
.horizontal-photoset .main-wrapper .loop span {
    animation: loop 10s linear infinite;
    display: inline-block;
    padding-left: 100%;
}
.horizontal-photoset .main-wrapper .loop2 span {
    animation-delay: 5s;
}
@keyframes loop {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}
.horizontal-photoset .main-wrapper .right {
    width: 35%;
    background-color: #e84228;
}
.horizontal-photoset .main-wrapper .animate-text {
    height: 120px;
    background-color: #e84228;
    color: #fff;
    font-size: 100px;
    white-space: nowrap;
    overflow: hidden;
}
.horizontal-photoset .main-wrapper .animate-text span {
    animation: loop 10s linear infinite;
    display: inline-block;
}
.horizontal-photoset .main-wrapper .img-container {
    width: 100%;
    height: 780px;
    padding: 0.5rem;
    background-color: #e84228;
}
.horizontal-photoset .main-wrapper .img-container img {
    width: 100%;
    object-fit: cover;
}
.horizontal-photoset .main-wrapper .side-bar div {
    transform: rotate(-90deg);
}
.horizontal-photoset .main-wrapper .des {
    font-size: 10px;
    width: 200px;
    text-transform: uppercase;
    margin-bottom: 5rem;
}
.horizontal-photoset .section-3 {
    background-color: black;
    margin-top: -100vh;
    position: relative;
    overflow: hidden;
}
.horizontal-photoset .section-3::-webkit-scrollbar {
    display: none;
}
.horizontal-photoset .section-3 .rows {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.horizontal-photoset .section-3 .row-set {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    height: 33.33%;
    color: #fff;
    margin-bottom: 0;
    font-family: "Oleo Script Swash Caps";
}
@media screen and (max-width: 1024px) {
    .horizontal-photoset .section-3 .row-set {
        width: 100%;
        padding-left: 0;
        gap: 2rem;
        align-items: flex-start;
        justify-content: flex-start;
    }
}
@media screen and (max-width: 450px) {
    .horizontal-photoset .section-3 .row-set {
        gap: 1rem;
    }
}
.horizontal-photoset .section-3 .row-1 {
    background-color: #f2da3d;
    color: #f2b23d;
}
.horizontal-photoset .section-3 .row-2 {
    background-color: #f2b23d;
    color: #f2563d;
}
.horizontal-photoset .section-3 .row-3 {
    background-color: #f2563d;
    color: #fff;
}
.horizontal-photoset .section-3 .row-set li {
    font-size: 220px;
    transform: translateX(50%);
    white-space: nowrap;
}
@media screen and (max-width: 1024px) {
    .horizontal-photoset .section-3 .row-set li {
        font-size: 84px;
        transform: translateX(0%) !important;
        height: 33.3vh;
        display: inline-flex;
        align-items: center;
    }
}
@media screen and (max-width: 450px) {
    .horizontal-photoset .section-3 .row-set li {
        font-size: 54px;
    }
}

.new-episodes {
    display: flex;
}
.new-episodes > div {
    width: 100%;
}
.new-episodes .slick-slider {
    width: 100%;
}
.new-episodes .slick-slider .slick-arrow::before {
    display: none;
}
.new-episodes .slick-slider .slick-list {
    width: 100%;
}
@media screen and (min-width: 450px) {
    .new-episodes .slick-slider .slick-list {
        padding: 0 25px;
    }
}
@media screen and (min-width: 450px) {
    .new-episodes .slick-slider .slick-list .slick-track {
        display: flex;
        gap: 10px;
    }
}
.new-episodes .episode-item {
    width: 100% !important;
    height: 600px;
    transition: width 0.3s;
}
.new-episodes .episode-item .thumb-container .card {
    height: 600px;
}
.new-episodes .episode-item .thumb-container .card .video-container {
    width: 100%;
    height: 100%;
}
.new-episodes
    .episode-item
    .thumb-container
    .card
    .video-container
    .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.new-episodes .episode-item .thumb-container .card .video-container video {
    height: 100%;
}
.new-episodes .episode-item .thumb-container .lazy-parent {
    width: 100%;
    height: 100%;
}
.new-episodes .episode-item .thumb-container .lazy-parent .lazy-placeholder {
    width: 100%;
    height: 100%;
}
.new-episodes .episode-item .thumb-container .content-card-info {
    background-image: linear-gradient(to top, #000000, transparent);
}
.new-episodes .episode-item .thumb-container .content-card-info .content-info {
    display: flex;
    flex-direction: column;
}
.new-episodes
    .episode-item
    .thumb-container
    .content-card-info
    .content-info
    .season-label {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.21em;
    text-transform: uppercase;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    order: 0;
    margin-bottom: 0;
}
.new-episodes
    .episode-item
    .thumb-container
    .content-card-info
    .content-info
    .season-label
    span {
    color: #ff0000;
}
.new-episodes
    .episode-item
    .thumb-container
    .content-card-info
    .content-info
    .content-title-wrap {
    order: 1;
}
.new-episodes
    .episode-item
    .thumb-container
    .content-card-info
    .content-info
    .content-title-wrap
    a {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 700;
    font-size: 42px;
    line-height: 65%;
    text-transform: uppercase;
    text-shadow: none;
    color: #ffffff;
}
.new-episodes
    .episode-item
    .thumb-container
    .content-card-info
    .content-info
    .content-models {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 800;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: none;
    order: 2;
}
.new-episodes
    .episode-item
    .thumb-container
    .content-card-info
    .content-info
    .content-models
    span {
    color: rgba(255, 255, 255, 0.5);
}
.new-episodes .episode-item .thumb-container .content-card-info .play-btn {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 10px;
    bottom: 20px;
    opacity: 0;
}
@media screen and (min-width: 450px) {
    .new-episodes .episode-item:hover {
        width: 800px !important;
    }
}
.new-episodes .episode-item:hover .thumb-container .content-card-info {
    padding-right: 50px;
}
.new-episodes
    .episode-item:hover
    .thumb-container
    .content-card-info
    .play-btn {
    opacity: 1;
}
@media (min-width: 768px) {
    .new-episodes .episode-item {
        width: 450px !important;
    }
}
@media (min-width: 1440px) {
    .new-episodes .episode-item {
        width: 450px !important;
    }
}
@media (min-width: 2000px) {
    .new-episodes .episode-item {
        width: 600px !important;
        height: 700px;
    }
}
.new-episodes .episode-item:hover {
    width: 100% !important;
}
@media (min-width: 768px) {
    .new-episodes .episode-item:hover {
        width: 700px !important;
    }
}
@media (min-width: 1024px) {
    .new-episodes .episode-item:hover {
        width: 600px !important;
    }
}
@media (min-width: 1440px) {
    .new-episodes .episode-item:hover {
        width: 800px !important;
    }
}
@media (min-width: 768px) {
    .new-episodes .episode-item:hover .item__info .details {
        width: 80%;
    }
}

.performers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.performers .model-item {
    width: 20%;
    padding: 5px;
}
@media (max-width: 1920px) {
    .performers .model-item {
        width: 25%;
    }
}
@media (max-width: 768px) {
    .performers .model-item {
        width: 33.3%;
    }
}
@media (max-width: 435px) {
    .performers .model-item {
        width: 50%;
    }
}
.performers .model-item .card {
    border: none;
    outline: none;
    border-radius: 0;
    background-color: transparent;
}
.performers .model-item .card .model-card {
    display: flex;
    width: 100%;
    border: none;
    border-radius: 0;
}
.performers .model-item .card .model-card .hover-fx {
    display: none;
}
.performers .model-item .card .model-card:hover {
    opacity: 0.8;
}
.performers .model-item .card .model-card a {
    width: 100%;
    height: 100%;
}
.performers .model-item .card .model-card a .lazy-parent {
    width: 100%;
    height: 100%;
}
.performers .model-item .card .model-card a .lazy-parent .lazy-children {
    width: 100%;
    height: 100%;
}
.performers .model-item .card .model-card a .lazy-parent .lazy-children img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.performers .model-item .card .model-card.loaded .thumbnail {
    opacity: 1;
}
.performers .model-item .card .model-card-info h4 {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 34px;
    text-align: center;
    text-transform: uppercase;
}
.performers .model-item .card .model-card-info h4 a {
    color: #f2563d;
    text-decoration: none;
}

.-models-slug-page .model-item {
    width: 16.6%;
}
@media (max-width: 1920px) {
    .-models-slug-page .model-item {
        width: 16.6%;
    }
}

.newsletter-container {
    background: #0db4f8;
    position: relative;
}
.newsletter-container img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    opacity: 0.2;
    mix-blend-mode: hard-light;
}

.newsletter-wrapper {
    padding: 50px 0;
    z-index: 1;
    position: relative;
}
@media screen and (max-width: 768px) {
    .newsletter-wrapper {
        padding: 30px 0;
    }
}
.newsletter-wrapper .newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.newsletter-wrapper .newsletter-form .title-header-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.newsletter-wrapper .newsletter-form .title-header-wrapper .title-header {
    font-family: "Lexend";
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 38px;
    /* identical to box height */
    letter-spacing: 0.23em;
    text-transform: uppercase;
    color: #003c67;
    /* Inside auto layout */
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}
.newsletter-wrapper .newsletter-form .title-header-wrapper .sub-title-header {
    font-family: "Lexend";
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    /* identical to box height */
    letter-spacing: 0.44em;
    text-transform: uppercase;
    color: #ffffff;
}
.newsletter-wrapper .newsletter-form .newsletter {
    display: flex;
    align-items: center;
}
.newsletter-wrapper .newsletter-form .newsletter input {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px 26px;
    gap: 10px;
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    border: 5px solid rgba(255, 255, 255, 0.5);
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 800;
    font-size: 18px;
    line-height: 25px;
    /* identical to box height */
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
}
.newsletter-wrapper .newsletter-form .newsletter input:focus {
    outline: none;
    border-color: #075c80;
}
.newsletter-wrapper .newsletter-form .newsletter input.submit-btn {
    background: #0a77a4;
    border: 5px solid #075c80;
    margin: 0 !important;
    width: auto;
    cursor: pointer;
}
.newsletter-wrapper .newsletter-form .newsletter input.submit-btn:disabled {
    color: #878686;
}
.newsletter-wrapper .newsletter-form .newsletter .error {
    color: #075c80;
    font-size: 12px;
    font-weight: 400;
    width: 100%;
}

.powered-by {
    font-size: .9rem;
    font-weight: 400;
    color: #c29762
}

.footer-wrapper .footer-logo .powered-by a {
    text-decoration: none;
    color: #f2563d;
    font-weight: 700
}

.footer-wrapper .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 2.5rem;
    margin-bottom: 2rem
}

.footer-wrapper .footer-logo .powered-by a:hover {
    text-decoration: underline;
    color: #b93520;
    -webkit-text-decoration-color: #b93520;
    text-decoration-color: #b93520;
    text-decoration-thickness: 3px
}

.footer-wrapper {
    margin-top: 1rem;
    display: flex;
    width: 100%;
}
.footer-wrapper ul {
    list-style-type: none;
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 0;
    padding: 0.5rem 0;
    flex-wrap: wrap;
}
.footer-wrapper ul li {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    line-height: 36px;
    /* identical to box height */
    letter-spacing: 0.075em;
    text-transform: uppercase;
}
@media screen and (max-width: 450px) {
    .footer-wrapper ul li {
        font-size: 13px;
    }
}
.footer-wrapper ul li a {
    color: #ffffff;
    text-decoration: none;
}
.footer-wrapper ul li .footer-links {
    visibility: hidden;
}
.footer-wrapper ul:first-child {
    background-color: #f2da3d;
}
.footer-wrapper ul:nth-child(2) {
    background-color: #f2b23d;
}
.footer-wrapper ul:nth-child(3) {
    background-color: #f2563d;
}
.footer-wrapper ul:nth-child(4) {
    background-color: #0db4f8;
}
.footer-wrapper .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-wrapper .footer-logo img {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}
.footer-wrapper .footer-compliance {
    text-align: center;
    margin-bottom: 10vh;
}
.footer-wrapper .footer-compliance p {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 181.4%;
    text-align: center;
    color: #c29762;
}
.footer-wrapper .footer-compliance p a {
    color: #c29762;
    text-decoration: none;
}
.footer-wrapper .footer-compliance p a:hover {
    text-decoration: underline;
    text-decoration-color: #f2563d;
    text-decoration-thickness: 2px;
}
.footer-wrapper .footer-compliance p:first-child {
    font-weight: 700;
}

.season-banner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 400px;
    margin-bottom: 1rem;
}
.season-banner > *:not(img) {
    position: relative;
    z-index: 1;
}
.season-banner::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 0;
}
.season-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.season-banner .section-sub-title {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.23em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: -4px 6px 8px rgba(0, 0, 0, 0.5);
}
.season-banner .section-title {
    font-family: "Shrikhand";
    font-style: italic;
    font-weight: 400;
    font-size: 74px;
    line-height: 108px;
    color: #ffffff;
    text-shadow: -4px 6px 8px rgba(0, 0, 0, 0.5);
}
.season-banner p {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    /* identical to box height */
    text-transform: uppercase;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #ffffff;
    text-shadow: -4px 6px 8px rgba(0, 0, 0, 0.5);
}
.season-banner p span {
    color: #ff0000;
}

.video-info-wrapper {
    padding-top: 20px;
}
@media (min-width: 768px) {
    .video-info-wrapper {
        padding-top: 35px;
    }
}
.video-info-wrapper .section-title {
    margin: 0;
    text-align: center;
    justify-content: center;
}
.video-info-wrapper .section-title h1 {
    font-family: "Shrikhand";
    font-style: italic;
    font-weight: 400;
    font-size: 76px;
    line-height: 71px;
    /* or 93% */
    text-align: center;
    text-transform: uppercase;
    color: #f2563d;
}
@media (min-width: 768px) {
    .video-info-wrapper .section-title h1 {
        font-size: 40px;
        line-height: 45px;
    }
}
@media (min-width: 1280px) {
    .video-info-wrapper .section-title h1 {
        font-size: 80px;
        line-height: 66px;
    }
}
.video-info-wrapper .meta-info-wrapper {
    display: flex;
    justify-content: center;
    margin: 12px 0 34px 0;
    align-items: flex-start;
}
@media (max-width: 430px) {
    .video-info-wrapper .meta-info-wrapper {
        justify-content: center;
    }
}
.video-info-wrapper .meta-info-wrapper ul.info-wrapper {
    display: flex;
    vertical-align: middle;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
.video-info-wrapper .meta-info-wrapper ul.info-wrapper li {
    display: inherit;
    align-items: center;
    justify-content: center;
}
.video-info-wrapper .meta-info-wrapper ul.info-wrapper li i {
    color: #f2563d;
    font-size: 8px;
    padding: 0 12px;
}
.video-info-wrapper .meta-info-wrapper ul.info-wrapper li.meta-4k {
    background: #000;
    box-shadow: 5.28px 2.28px 11.2px rgba(0, 0, 0, 0.15);
    padding: 0 5px;
}
.video-info-wrapper .meta-info-wrapper ul.info-wrapper li span {
    color: #000;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.63px;
    text-transform: uppercase;
}
@media (min-width: 768px) {
    .video-info-wrapper .meta-info-wrapper ul.info-wrapper li span {
        font-size: 16px;
    }
}
@media (min-width: 1280px) {
    .video-info-wrapper .meta-info-wrapper ul.info-wrapper li span {
        font-size: 21px;
    }
}
.video-info-wrapper .meta-info-wrapper ul.info-wrapper li:first-child i {
    display: none;
}
@media screen and (max-width: 430px) {
    .video-info-wrapper .meta-info-wrapper ul.info-wrapper {
        padding: 0;
        flex-wrap: wrap;
    }
    .video-info-wrapper .meta-info-wrapper ul.info-wrapper li {
        text-align: center;
        padding-bottom: 5px;
    }
    .video-info-wrapper .meta-info-wrapper ul.info-wrapper li.meta-4k {
        padding: 0 5px;
    }
}
.video-info-wrapper .content-info-wrapper {
    margin-top: 25px;
}
.video-info-wrapper .content-info-wrapper .content-info {
    flex-direction: column;
}
.video-info-wrapper .content-info-wrapper .content-info .content-sub-header {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 27px;
    /* identical to box height */
    text-transform: uppercase;
    font-feature-settings: "pnum" on, "lnum" on;
    text-align: center;
    color: #000;
}
.video-info-wrapper
    .content-info-wrapper
    .content-info
    .content-sub-header
    span {
    color: #ff0000;
}
@media (min-width: 1024px) {
    .video-info-wrapper .content-info-wrapper .content-info {
        flex-direction: row;
    }
}
.video-info-wrapper .content-info-wrapper .join-buttons {
    display: flex;
    flex-direction: column;
    width: 85%;
    margin: 30px auto 60px auto;
    justify-content: center;
    align-items: center;
}
@media (max-width: 768px) {
    .video-info-wrapper .content-info-wrapper .join-buttons {
        width: 100%;
    }
}
.video-info-wrapper .content-info-wrapper .join-buttons form {
    width: 50%;
}
.video-info-wrapper .content-info-wrapper .join-buttons .join {
    width: 50%;
}
@media (max-width: 768px) {
    .video-info-wrapper .content-info-wrapper .join-buttons .join {
        width: 100%;
    }
}
@media (min-width: 768px) {
    .video-info-wrapper .content-info-wrapper .join-buttons {
        flex-direction: row;
    }
}
.video-info-wrapper .content-info-wrapper .join-buttons .button-wrapper {
    width: 100%;
}
.video-info-wrapper
    .content-info-wrapper
    .join-buttons
    .button-wrapper
    .vod-dropdown {
    background: #211f1f;
    color: #aeaeae;
    border-radius: 0 4px 4px 0;
    padding: 0 15px;
    font-size: 1.5rem;
}
.video-info-wrapper
    .content-info-wrapper
    .join-buttons
    .button-wrapper
    ul.dropdown-menu {
    border-radius: 0;
    background: #2d2d2d;
}
.video-info-wrapper
    .content-info-wrapper
    .join-buttons
    .button-wrapper
    ul.dropdown-menu
    li
    .dropdown-item {
    color: #000;
}
.video-info-wrapper
    .content-info-wrapper
    .join-buttons
    .button-wrapper
    ul.dropdown-menu
    li
    .dropdown-item:hover {
    background: #ff0000;
}
.video-info-wrapper .content-info-wrapper .join-buttons .buy {
    display: flex;
    padding: 18px 26px;
    align-items: center;
    border-radius: 5px 0 0 5px;
    text-decoration: none;
    justify-content: space-between;
    transition: 0.6s all ease;
    box-shadow: none;
    background: #2b2b2b;
}
@media (min-width: 1024px) {
    .video-info-wrapper .content-info-wrapper .join-buttons .buy {
        padding: 16px;
    }
}
@media (min-width: 1280px) {
    .video-info-wrapper .content-info-wrapper .join-buttons .buy {
        padding: 18px 26px;
    }
}
.video-info-wrapper
    .content-info-wrapper
    .join-buttons
    .buy:hover
    .price-label {
    color: #f2563d;
}
.video-info-wrapper
    .content-info-wrapper
    .join-buttons
    .buy:hover
    .price-amount {
    color: #f2563d;
}
.video-info-wrapper .content-info-wrapper .join-buttons .buy:hover .price-text {
    color: #f2563d;
}
.video-info-wrapper .content-info-wrapper .join-buttons .buy.flash {
    position: relative;
    border: none;
}
.video-info-wrapper
    .content-info-wrapper
    .join-buttons
    .buy.flash:hover::before {
    animation-play-state: paused;
}
.video-info-wrapper .content-info-wrapper .join-buttons .buy.flash::before {
    content: "";
    position: absolute;
    left: -2px;
    top: -2px;
    border-radius: 6px;
    background: #f2563d;
    background-size: 400%;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    z-index: -1;
    animation: steam 15s linear infinite;
}
.video-info-wrapper .content-info-wrapper .join-buttons .buy.flash:hover {
    animation-play-state: paused;
}
.video-info-wrapper .content-info-wrapper .join-buttons .buy .price {
    width: 60%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-shadow: 4px 4px 8px black;
}
.video-info-wrapper .content-info-wrapper .join-buttons .buy .price-label {
    color: #000;
    text-align: center;
    font-family: "Oswald";
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 57.5px;
    margin-top: -7px;
    display: inline-block;
    opacity: 0.7;
    text-shadow: 4px 4px 8px black;
}
@media (min-width: 1280px) {
    .video-info-wrapper .content-info-wrapper .join-buttons .buy .price-label {
        font-size: 40px;
    }
}
@media (min-width: 1440px) {
    .video-info-wrapper .content-info-wrapper .join-buttons .buy .price-label {
        font-size: 30px;
    }
}
.video-info-wrapper .content-info-wrapper .join-buttons .buy .price-amount {
    color: #000;
    text-align: center;
    font-family: "Oswald";
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 57.5px;
}
@media (min-width: 425px) {
    .video-info-wrapper .content-info-wrapper .join-buttons .buy .price-amount {
        font-size: 50px;
    }
}
@media (min-width: 1024px) {
    .video-info-wrapper .content-info-wrapper .join-buttons .buy .price-amount {
        font-size: 40px;
    }
}
@media (min-width: 1280px) {
    .video-info-wrapper .content-info-wrapper .join-buttons .buy .price-amount {
        font-size: 50px;
    }
}
@media (min-width: 1440px) {
    .video-info-wrapper .content-info-wrapper .join-buttons .buy .price-amount {
        font-size: 40px;
    }
}
.video-info-wrapper .content-info-wrapper .join-buttons .buy .price-text {
    color: #000;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: 1.84px;
    text-transform: uppercase;
    width: 50%;
    text-shadow: 4px 4px 8px black;
}
@media (min-width: 1024px) {
    .video-info-wrapper .content-info-wrapper .join-buttons .buy .price-text {
        font-size: 16px;
    }
}
@media (min-width: 1280px) {
    .video-info-wrapper .content-info-wrapper .join-buttons .buy .price-text {
        font-size: 20px;
    }
}
@media (min-width: 1440px) {
    .video-info-wrapper .content-info-wrapper .join-buttons .buy .price-text {
        font-size: 17px;
    }
}
.video-info-wrapper .content-info-wrapper .join-buttons .join {
    display: flex;
    color: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 23px 19px;
    border-radius: 0;
    background-color: #f2563d;
    margin: 12px 0 0 0;
    text-decoration: none;
    transition: 0.3s all ease;
    transform: translate(5px, 5px);
}
@media (min-width: 768px) {
    .video-info-wrapper .content-info-wrapper .join-buttons .join {
        margin: 0 0 0 12px;
    }
}
.video-info-wrapper .content-info-wrapper .join-buttons .join:hover {
    background: #000;
    color: #fff;
    box-shadow: 5px 5px 0px #f2563d;
    transform: translate(0, 0);
}
.video-info-wrapper .content-info-wrapper .join-buttons .join-save {
    text-align: center;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: 124%;
    letter-spacing: 1.76px;
    text-transform: uppercase;
}
@media (min-width: 1024px) {
    .video-info-wrapper .content-info-wrapper .join-buttons .join-save {
        font-size: 16px;
    }
}
@media (min-width: 1280px) {
    .video-info-wrapper .content-info-wrapper .join-buttons .join-save {
        font-size: 18px;
    }
}
@media (min-width: 1440px) {
    .video-info-wrapper .content-info-wrapper .join-buttons .join-save {
        font-size: 22px;
    }
}
.video-info-wrapper .content-info-wrapper .join-buttons .join-member {
    text-align: center;
    font-family: "Open Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: 1.36px;
    text-transform: uppercase;
    margin: 5px 0 0 0;
}
@media (min-width: 1024px) {
    .video-info-wrapper .content-info-wrapper .join-buttons .join-member {
        font-size: 13px;
    }
}
@media (min-width: 1280px) {
    .video-info-wrapper .content-info-wrapper .join-buttons .join-member {
        font-size: 15px;
    }
}
@media (min-width: 1440px) {
    .video-info-wrapper .content-info-wrapper .join-buttons .join-member {
        font-size: 17px;
    }
}
.video-info-wrapper
    .content-info-wrapper
    .join-buttons
    .join.membership-exclusive {
    background-color: #f2563d;
    color: #000;
}
.video-info-wrapper .content-info-wrapper .series-origin .section-title h2 {
    display: flex;
    margin: 0 0 8px 0;
    flex-wrap: wrap;
}
@media (max-width: 430px) {
    .video-info-wrapper .content-info-wrapper .series-origin .section-title h2 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
.video-info-wrapper
    .content-info-wrapper
    .series-origin
    .section-title
    h2
    .series-label,
.video-info-wrapper
    .content-info-wrapper
    .series-origin
    .section-title
    h2
    .series-title {
    font-family: "Poppins";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
}
@media (min-width: 768px) {
    .video-info-wrapper
        .content-info-wrapper
        .series-origin
        .section-title
        h2
        .series-label,
    .video-info-wrapper
        .content-info-wrapper
        .series-origin
        .section-title
        h2
        .series-title {
        font-size: 23px;
    }
}
@media (min-width: 1280px) {
    .video-info-wrapper
        .content-info-wrapper
        .series-origin
        .section-title
        h2
        .series-label,
    .video-info-wrapper
        .content-info-wrapper
        .series-origin
        .section-title
        h2
        .series-title {
        font-size: 27px;
    }
}
.video-info-wrapper
    .content-info-wrapper
    .series-origin
    .section-title
    h2
    .series-label {
    color: #f2563d;
    margin: 0 5px 0 0;
    letter-spacing: 0.08rem;
}
.video-info-wrapper
    .content-info-wrapper
    .series-origin
    .section-title
    h2
    .series-title {
    color: #000;
    letter-spacing: 0.08rem;
}
.video-info-wrapper .content-info-wrapper .description {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 172.5%;
    margin-bottom: 0;
    font-family: "Open Sans";
    text-align: center;
}
@media (min-width: 768px) {
    .video-info-wrapper .content-info-wrapper .description {
        font-size: 16px;
    }
}
@media (min-width: 1280px) {
    .video-info-wrapper .content-info-wrapper .description {
        font-size: 18px;
    }
}
.video-info-wrapper .content-info-wrapper .content-tags {
    margin-top: 36px;
    text-align: center;
}
.video-info-wrapper .content-info-wrapper .content-tags h4 {
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    color: #000;
    font-family: "Poppins";
    letter-spacing: 1.454px;
    margin: 0 0 22px 0;
}
@media (min-width: 768px) {
    .video-info-wrapper .content-info-wrapper .content-tags h4 {
        font-size: 18px;
    }
}
@media (min-width: 1280px) {
    .video-info-wrapper .content-info-wrapper .content-tags h4 {
        font-size: 21px;
    }
}
.video-info-wrapper .content-info-wrapper .content-tags .tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.video-info-wrapper .content-info-wrapper .content-tags .tags a.tag-name {
    color: #999999;
    font-family: "Open Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    display: flex;
    padding: 6px 15px;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 0;
    border: 2px solid #999999;
    transition: 0.2s all ease;
    text-decoration: none;
}
@media (min-width: 1280px) {
    .video-info-wrapper .content-info-wrapper .content-tags .tags a.tag-name {
        font-size: 14px;
    }
}
.video-info-wrapper .content-info-wrapper .content-tags .tags a.tag-name:hover {
    text-decoration: none;
    border: 2px solid #f2563d;
    background: #f2563d;
    color: #fff;
}
@media screen and (max-width: 820px) {
    .video-info-wrapper .content-info-wrapper .model {
        order: -1;
        margin-bottom: 20px;
    }
}
.video-info-wrapper .content-info-wrapper .models-wrap h4 {
    font-family: "Lexend";
    font-style: normal;
    font-weight: 900;
    font-size: 21px;
    line-height: 26px;
    text-align: center;
    letter-spacing: 0.57em;
    text-transform: uppercase;
    color: #ff6200;
}
@media (min-width: 768px) {
    .video-info-wrapper .content-info-wrapper .models-wrap h4 {
        font-size: 18px;
    }
}
@media (min-width: 1280px) {
    .video-info-wrapper .content-info-wrapper .models-wrap h4 {
        font-size: 23px;
    }
}
.video-info-wrapper .content-info-wrapper .models-wrap ul {
    margin: 0 -10px;
    padding: 0;
    list-style-type: none;
}
.video-info-wrapper .content-info-wrapper .models-wrap ul.multiple-models {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.video-info-wrapper .content-info-wrapper .models-wrap ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 10px 10px 0;
}
.video-info-wrapper .content-info-wrapper .models-wrap ul li h5 {
    font-family: "Shrikhand";
    font-style: italic;
    font-weight: 400;
    font-size: 19px;
    line-height: 28px;
    /* identical to box height */
    text-align: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ff6200;
    margin-top: 0.5rem;
}
@media (min-width: 1280px) {
    .video-info-wrapper .content-info-wrapper .models-wrap ul li h5 {
        font-size: 19px;
    }
}
.video-info-wrapper .content-info-wrapper .models-wrap ul li .model-thumb {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    transition: all 0.5s ease;
    border: 5px solid #ff6200;
}
@media (min-width: 768px) {
    .video-info-wrapper .content-info-wrapper .models-wrap ul li .model-thumb {
        width: 120px;
        height: 120px;
    }
}
@media (min-width: 1280px) {
    .video-info-wrapper .content-info-wrapper .models-wrap ul li .model-thumb {
        width: 150px;
        height: 150px;
    }
}
@media (min-width: 1680px) {
    .video-info-wrapper .content-info-wrapper .models-wrap ul li .model-thumb {
        width: 170px;
        height: 170px;
    }
}
.video-info-wrapper
    .content-info-wrapper
    .models-wrap
    ul
    li
    .model-thumb:hover {
    border: 5px solid #b93520;
}
.video-info-wrapper .content-info-wrapper .models-wrap ul li .model-thumb a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
}
.video-info-wrapper
    .content-info-wrapper
    .models-wrap
    ul
    li
    .model-thumb
    a
    img {
    width: 100%;
    height: auto;
}

.downloads-container {
    margin-top: 30px;
    margin-bottom: 30px;
}
.downloads-container .btn-favorite,
.downloads-container .btn-share,
.downloads-container .favorite-btn {
    --btn-color: #f2563d;
    --btn-hover-color: #fff;
    --btn-bg-color: #fff9ee;
    --btn-bg-color-hover: #e84228;
    --btn-border-color: #f2563d;
    --btn-shadow-color: #e84228;
    --btn-shadow-color-hover: #121212;
    background: var(--btn-bg-color);
    color: var(--btn-color);
    border: 1px solid var(--btn-border-color);
    padding: 10px 20px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s all ease;
    margin-right: 10px;
    display: flex;
    gap: 10px;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    box-shadow: 5px 5px 0px var(--btn-shadow-color);
}
.downloads-container .btn-favorite:hover,
.downloads-container .btn-share:hover,
.downloads-container .favorite-btn:hover {
    background: var(--btn-bg-color-hover);
    color: var(--btn-hover-color);
    box-shadow: 5px 5px 0px var(--btn-shadow-color-hover);
}
.downloads-container .btn-favorite,
.downloads-container .favorite-btn {
    --btn-color: #fff;
    --btn-hover-color: #f2563d;
    --btn-bg-color-hover: #fff;
    --btn-bg-color: #e84228;
    --btn-border-color: #e84228;
    --btn-shadow-color: #121212;
    --btn-shadow-color-hover: #e84228;
}
.downloads-container .btn-favorite .loading,
.downloads-container .favorite-btn .loading {
    animation: rotate 2s linear infinite;
}
.downloads-container .btn-favorite *,
.downloads-container .favorite-btn * {
    pointer-events: none;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@media (min-width: 1280px) {
    .downloads-container {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}
@media (min-width: 1024px) {
    .downloads-container > div {
        padding: 0 4px !important;
    }
}
@media (min-width: 1280px) {
    .downloads-container > div {
        padding: 0 4px !important;
    }
}

.-seasons-season-slug-page .no-trailer {
    position: relative;
}
.-seasons-season-slug-page .no-trailer .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
}
.-seasons-season-slug-page .no-trailer img {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
}

.photos-slider .slide-item {
    cursor: pointer;
}
.photos-slider .locked:hover .overlay svg {
    transform: scale(1.2);
}
.photos-slider .locked .slide-item {
    position: relative;
}
.photos-slider .locked .slide-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.photos-slider .locked .slide-item .overlay svg {
    transition: 0.5s all ease;
}
.photos-slider:hover .slick-next,
.photos-slider:hover .slick-prev {
    background: transparent !important;
}
.photos-slider .slick-dots {
    height: 25px;
    padding: 0 9px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    bottom: -22%;
    top: unset;
}
.photos-slider .slick-dots li {
    width: 20px;
    margin: 0 2px;
}
.photos-slider .slick-dots li button {
    width: 20px;
}
.photos-slider .slick-dots li button::before {
    width: 20px;
}
@media (min-width: 768px) {
    .photos-slider .slick-next {
        background: linear-gradient(
            270deg,
            #111 0%,
            rgba(0, 0, 0, 0) 100%
        ) !important;
    }
}
@media (min-width: 768px) {
    .photos-slider .slick-prev {
        background: linear-gradient(
            90deg,
            #111 0%,
            rgba(0, 0, 0, 0) 100%
        ) !important;
    }
}
.photos-slider .slick-prev,
.photos-slider .slick-next {
    width: 90px !important;
    height: 100% !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    transition: 0.5s background ease;
}

.seasons-photos .fixed-photos > div {
    padding: 0;
}
.seasons-photos .photos-slider {
    height: 340px;
}
.seasons-photos .photos-slider .slide-item {
    cursor: pointer;
}
.seasons-photos .photos-slider .slick-prev {
    left: 0;
}
.seasons-photos .photos-slider .slick-next {
    right: 0;
}
.seasons-photos .photos-slider .locked:hover .overlay svg {
    transform: scale(1.2);
}
.seasons-photos .photos-slider .locked .slide-item {
    position: relative;
}
.seasons-photos .photos-slider .locked .slide-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.seasons-photos .photos-slider .locked .slide-item .overlay svg {
    transition: 0.5s all ease;
}

.load-more-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
.load-more-wrap .load-more {
    background: #e84228;
    border: 1px solid #e84228;
    box-shadow: 5px 5px 0px #000000;
    text-decoration: none;
    white-space: nowrap;
    font-family: Poppins;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 31.5px;
    letter-spacing: 4%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    padding: 5px 15px;
    text-transform: uppercase;
}
.load-more-wrap .load-more .count {
    margin-left: 5px;
    font-size: small;
    font-weight: 500;
}
.load-more-wrap .load-more .count:before {
    content: "(";
}
.load-more-wrap .load-more .count:after {
    content: ")";
}
.load-more-wrap .load-more.active,
.load-more-wrap .load-more:hover {
    box-shadow: none;
    transform: translate(5px, 5px);
}

.content-photos-wrap {
    padding-right: 10px;
}

.content-photos {
    display: flex;
    flex-direction: row;
    padding: 0 5px;
    justify-content: center;
    width: 100% !important;
}

.to-join img {
    opacity: 0.7;
}

.to-join .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background-image: radial-gradient(
        circle farthest-side at right bottom,
        #747273,
        #293134 80%,
        #414142
    );
}
.to-join .overlay .fas {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -25px;
    margin-top: -25px;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 50px;
}

a.to-join:hover .fas {
    animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.content-photos-wrap .content-photos .photo-wrap {
    cursor: pointer;
}
.content-photos-wrap .content-photos .photo-wrap .to-join .overlay {
    background: rgba(0, 0, 0, 0.01) !important;
    backdrop-filter: blur(6.428571701px) !important;
    opacity: 1 !important;
    overflow: hidden;
}
.content-photos-wrap .content-photos .photo-wrap .to-join .overlay i::before {
    content: url("/icons/lock.svg") !important;
}

.load-more-wrap .load-more-results {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Roboto Mono";
    color: #fff;
    opacity: 0.5;
    font-size: 14px;
    letter-spacing: 0.49px;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 12px;
}

.content-photos-wrap {
    padding-right: 0 !important;
    margin-right: -2px;
    margin-left: 0;
    padding-left: 0;
}

.content-photos {
    display: flex;
    flex-direction: row;
    padding: 0 !important;
    justify-content: center;
    width: 100% !important;
}
.content-photos .photo-wrap {
    display: flex;
}
.content-photos .photo-wrap a {
    display: flex;
}
.content-photos .photo-wrap img {
    width: 100%;
    height: auto;
}
.content-photos .photo-wrap {
    margin: 0 !important;
    width: 20% !important;
    padding: 3px;
    cursor: pointer;
}
@media (max-width: 1920px) {
    .content-photos .photo-wrap {
        width: 20% !important;
    }
}
@media (max-width: 768px) {
    .content-photos .photo-wrap {
        width: 50% !important;
    }
}
@media (max-width: 430px) {
    .content-photos .photo-wrap {
        width: 50% !important;
    }
}
.content-photos .photo-wrap .to-join {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.slick-slider .slick-list {
    height: 100%;
}
.slick-slider .slick-list .slick-track {
    height: 100%;
}
.slick-slider .slick-prev {
    left: 25px;
    z-index: 1;
}
.slick-slider .slick-prev::before {
    display: none;
}
@media screen and (max-width: 450px) {
    .slick-slider .slick-prev {
        left: 0px;
    }
}
.slick-slider .slick-next {
    right: 25px;
    z-index: 1;
}
.slick-slider .slick-next::before {
    display: none;
}
@media screen and (max-width: 450px) {
    .slick-slider .slick-next {
        right: 0px;
    }
}

.items-sorter-wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.items-sorter-wrap .items-sorter {
    display: flex;
    flex-direction: row;
    list-style-type: none;
}
.items-sorter-wrap .items-sorter li:nth-child(1) {
    order: 2;
}
.items-sorter-wrap .items-sorter li:nth-child(2) {
    order: 1;
}
.items-sorter-wrap .items-sorter li:nth-child(3) {
    order: 3;
}
.items-sorter-wrap .items-sorter li a {
    padding: 3px 20px;
    position: relative;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin: 0 1rem;
    text-decoration: none;
}
.items-sorter-wrap .items-sorter li.active a {
    color: #fff;
}
@media (max-width: 435px) {
    .items-sorter-wrap {
        flex-wrap: wrap;
        padding: 0;
    }
    .items-sorter-wrap .items-sorter {
        padding: 0;
        justify-content: center;
        flex-wrap: wrap;
    }
    .items-sorter-wrap .items-sorter li a {
        font-size: 0.8rem;
        margin: 0 10px;
    }
}

.filter-container {
    margin: 1.5rem 0 1.8rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 1;
}
.filter-container > * {
    --btn-color: #f2563d;
    --btn-hover-color: #fff;
    --btn-bg-color: #fff9ee;
    --btn-bg-color-hover: #e84228;
    --btn-border-color: #f2563d;
    --btn-shadow-color: #e84228;
    --btn-shadow-color-hover: #121212;
    max-width: fit-content;
    padding: 10px 20px;
    margin: 0 10px;
    height: 100%;
    text-decoration: none;
    background: var(--btn-bg-color);
    color: var(--btn-color);
    border: 1px solid var(--btn-border-color);
    box-shadow: 5px 5px 0px var(--btn-shadow-color);
}
.filter-container > *.active-link {
    background: var(--btn-bg-color-hover);
    color: var(--btn-hover-color);
    box-shadow: 5px 5px 0px var(--btn-shadow-color-hover);
}
.filter-container > *:hover {
    background: var(--btn-bg-color-hover);
    color: var(--btn-hover-color);
    box-shadow: 5px 5px 0px var(--btn-shadow-color-hover);
}
.filter-container > *:hover h2::after {
    filter: invert(1);
}
.filter-container > *:last-child {
    --btn-color: #fff;
    --btn-hover-color: #f2563d;
    --btn-bg-color-hover: #fff;
    --btn-bg-color: #e84228;
    --btn-border-color: #e84228;
    --btn-shadow-color: #121212;
    --btn-shadow-color-hover: #e84228;
}
.filter-container > * h2 {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 20.1951px;
    line-height: 30px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: inherit;
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
}
.filter-container .drop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}
.filter-container .drop.current-link {
    color: #fff;
}
.filter-container .drop input[type="checkbox"] {
    display: none;
}
.filter-container .drop input[type="checkbox"]:checked ~ .drop-items {
    opacity: 1;
    max-height: 400px;
}
.filter-container .drop input[type="checkbox"]:checked ~ .control {
    z-index: 99;
}
.filter-container .drop input[type="checkbox"]:checked ~ .control:after {
    transform: rotate(180deg);
}
.filter-container .drop input[type="checkbox"]:checked ~ .overlay-close {
    transform: none;
    pointer-events: initial;
}
.filter-container .drop .control {
    text-transform: uppercase;
    font-size: 1.5vw;
    color: #ffffff;
    display: inline-block;
    border: 1px solid white;
    padding: 8px 25px;
    transition: all 0.1s;
    margin-top: 0;
    margin-bottom: 0;
    transition: all 0.3s ease;
}
@media (hover: hover) {
    .filter-container .drop .control:hover {
        opacity: 0.75;
    }
}
.filter-container .drop .control:after {
    content: "";
    display: inline-block;
    height: 20px;
    width: 10px;
    margin-left: 10px;
    background-image: url("data:image/svg+xml,%3Csvg fill='%23fff' xmlns='http://www.w3.org/2000/svg' width='16' height='13.838' viewBox='0 0 16 13.838'%3E%3Cpath d='M15.78,12.753a1.529,1.529,0,0,1-1.311,2.314H1.53A1.529,1.529,0,0,1,.219,12.753L6.69,1.969a1.528,1.528,0,0,1,2.619,0L15.78,12.753Z' transform='translate(16 15.067) rotate(180)'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.3s ease;
}
.filter-container .drop h2 {
    text-transform: uppercase;
    margin-bottom: 0;
}
.filter-container .drop h2:after {
    content: "";
    display: inline-block;
    height: 20px;
    width: 10px;
    margin-left: 10px;
    background-image: url("data:image/svg+xml,%3Csvg fill='%23fff' xmlns='http://www.w3.org/2000/svg' width='16' height='13.838' viewBox='0 0 16 13.838'%3E%3Cpath d='M15.78,12.753a1.529,1.529,0,0,1-1.311,2.314H1.53A1.529,1.529,0,0,1,.219,12.753L6.69,1.969a1.528,1.528,0,0,1,2.619,0L15.78,12.753Z' transform='translate(16 15.067) rotate(180)'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.3s ease;
}
@media (max-width: 768px) {
    .filter-container .drop h2:after {
        height: 8px;
    }
}
@media (max-width: 450px) {
    .filter-container .drop h2:after {
        height: 13px;
    }
}
.filter-container .drop .drop-items {
    font-size: 1.5rem;
    position: absolute;
    top: 100%;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
    background: #e84228;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    z-index: 999;
    text-transform: uppercase;
    min-width: 250px;
}
@media (max-width: 768px) {
    .filter-container .drop .drop-items {
        font-size: 1.3rem;
    }
}
@media (max-width: 450px) {
    .filter-container .drop .drop-items {
        font-size: 1.2rem;
    }
}
.filter-container .drop .drop-items .item-drop {
    list-style: none;
}
.filter-container .drop .drop-items .item-drop a {
    display: block;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    padding: 5px 25px;
    transition: all 0.3s ease;
}
@media (hover: hover) {
    .filter-container .drop .drop-items .item-drop a:hover {
        color: #fffce1;
        background-color: #c82e15;
    }
}
.filter-container .drop .drop-items .item-drop.active a {
    color: #e84228;
    background-color: #fffce1;
}
.filter-container .drop .drop-items .item-drop.active a:hover {
    background-color: #c82e15;
    color: #fffce1;
}
.filter-container .drop .overlay-close {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9;
    transform: translate(100%, 0);
    pointer-events: none;
}

.-models-slug-page .model-container .model-name span {
    font-family: "Shrikhand";
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
    line-height: 29px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #333333;
}
.-models-slug-page .model-container .model-name h1 {
    font-family: "Shrikhand";
    font-style: italic;
    font-weight: 400;
    font-size: 76px;
    line-height: 111px;
    /* identical to box height */
    text-transform: uppercase;
    color: #f2563d;
}
.-models-slug-page .model-container .model-meta {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.-models-slug-page .model-container .model-meta li {
    font-family: "Lexend";
    font-style: normal;
    font-weight: 700;
    font-size: 19.8766px;
    line-height: 25px;
    /* identical to box height */
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #111111;
    padding-left: 0;
}
.-models-slug-page .model-container .model-bio {
    font-family: "Lexend";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 172.5%;
    /* or 31px */
    letter-spacing: 0.04em;
    color: #333333;
}
.-models-slug-page .model-container .model-spec ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.-models-slug-page .model-container .model-spec ul li {
    flex: 1 1 25%;
}
.-models-slug-page .model-container .model-spec ul li h3 {
    font-family: "Lexend";
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    line-height: 20px;
    /* identical to box height */
    text-align: left;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #ff6200;
}
.-models-slug-page .model-container .model-spec ul li p {
    font-family: "Lexend";
    font-style: normal;
    font-weight: 900;
    font-size: 21px;
    line-height: 26px;
    text-align: left;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6f4d35;
}
.-models-slug-page .model-container .model-tags {
    margin-top: 36px;
    text-align: left;
}
.-models-slug-page .model-container .model-tags h4 {
    font-family: "Lexend";
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    /* identical to box height */
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #6f4d35;
}
@media (min-width: 768px) {
    .-models-slug-page .model-container .model-tags h4 {
        font-size: 18px;
    }
}
@media (min-width: 1280px) {
    .-models-slug-page .model-container .model-tags h4 {
        font-size: 21px;
    }
}
.-models-slug-page .model-container .model-tags .tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.-models-slug-page .model-container .model-tags .tags a.tag-name {
    color: #999999;
    font-family: "Open Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    display: flex;
    padding: 6px 15px;
    justify-content: flex-start;
    align-items: flex-start;
    width: fit-content;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 0;
    border: 2px solid #999999;
    transition: 0.2s all ease;
    text-decoration: none;
}
@media (min-width: 1280px) {
    .-models-slug-page .model-container .model-tags .tags a.tag-name {
        font-size: 14px;
    }
}
.-models-slug-page .model-container .model-tags .tags a.tag-name:hover {
    text-decoration: none;
    border: 2px solid #f2563d;
    background: #f2563d;
    color: #fff;
}
.-models-slug-page .model-container .lazy-parent .lazy-children .model-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    padding: 0;
    border-radius: 8px;
}

.header .nav .user-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 101;
}
.header .nav .user-menu button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 10px 10px 15px;
    background-color: #fff;
    border: 1px solid #b93520;
    box-shadow: 4px 4px 0px black;
    cursor: pointer;
    font-family: Poppins;
    color: #b93520;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 31.5px;
    letter-spacing: 4%;
}
.header .nav .user-menu button.open {
    background-color: #b93520;
    color: #fff;
}
.header .nav .user-menu .nav-dropdown-menu {
    right: 0;
    padding: 10px;
    z-index: 101;
}
.header .nav .user-menu .nav-dropdown-menu .user-menu-header {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
}
.header .nav .user-menu .nav-dropdown-menu .user-menu-header .favorites {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #b93520;
    border-radius: 6px;
    position: relative;
    padding: 12px 5px 8px;
    margin: 15px 0;
    color: #fff;
    background-color: #b93520;
}
.header
    .nav
    .user-menu
    .nav-dropdown-menu
    .user-menu-header
    .favorites
    .header-text {
    display: inline-flex;
    width: fit-content;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 1px solid #b93520;
    border-radius: 5px;
    padding: 0 10px;
    color: #b93520;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: Poppins;
}
.header .nav .user-menu .nav-dropdown-menu .user-menu-header .favorites > a {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-left: 0;
    color: #fff;
    text-decoration: none;
    font-family: Poppins;
    font-size: 0.8rem;
    padding: 4px;
}
.header
    .nav
    .user-menu
    .nav-dropdown-menu
    .user-menu-header
    .favorites
    > a
    svg {
    width: 18px;
    height: 18px;
}
.header
    .nav
    .user-menu
    .nav-dropdown-menu
    .user-menu-header
    .favorites
    > a:hover {
    text-decoration: underline;
    background-color: #b93520;
}
.header .nav .user-menu .nav-dropdown-menu > a {
    display: block;
    padding: 5px 10px;
    color: #b93520;
    font-family: Poppins;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
}
.header .nav .user-menu .nav-dropdown-menu > a:hover {
    background-color: #b93520;
    color: #fff;
}

.photo-specific {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    gap: 1rem;
    min-height: 100vh;
    position: relative;
}
@keyframes placeHolderShimmer {
    0% {
        background-position: -468px 0;
    }
    100% {
        background-position: 468px 0;
    }
}
.photo-specific .placeholder {
    width: 90vw;
    height: 90vh;
    margin: auto;
    border-radius: 8px;
}
.photo-specific .animated-background {
    animation-duration: 1.25s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: darkgray;
    background: linear-gradient(
        to right,
        #eeeeee 10%,
        #dddddd 18%,
        #eeeeee 33%
    );
    background-size: 800px 104px;
    height: 100%;
    position: relative;
    border-radius: 8px;
}
.photo-specific section {
    height: fit-content;
    min-height: 350px;
}
@media screen and (max-width: 1024px) {
    .photo-specific section {
        min-height: 300px;
    }
}
@media screen and (max-width: 450px) {
    .photo-specific section {
        min-height: 200px;
    }
}
.photo-specific section .photo-wrapper {
    display: flex;
    width: 100%;
    gap: 1rem;
    flex-wrap: nowrap;
}
.photo-specific section .photo-wrapper img {
    height: 100%;
    max-height: 350px;
    width: auto;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}
.photo-specific section .photo-wrapper img:hover {
    transform: scale(0.97);
}
@media screen and (max-width: 1024px) {
    .photo-specific section .photo-wrapper img {
        max-height: 300px;
    }
}
@media screen and (max-width: 450px) {
    .photo-specific section .photo-wrapper img {
        max-height: 200px;
    }
}

.photo-text {
    font-family: "Oleo Script Swash Caps";
    font-size: 100px;
    color: #e84228;
    text-align: center;
    filter: drop-shadow(5.48184px 8.61433px 0px #f2da3d)
        drop-shadow(3.9156px 5.48184px 0px #f2b23d);
}
@media screen and (max-width: 1024px) {
    .photo-text {
        font-size: 80px;
    }
}
@media screen and (max-width: 450px) {
    .photo-text {
        font-size: 50px;
    }
}

.watch-video-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
    width: 100%;
    background: #ff620014;
    border: 1px solid #e84228;
    padding: 0 3rem;
    margin: 2rem auto;
}
@media screen and (max-width: 1024px) {
    .watch-video-wrapper {
        padding: 1rem 2rem;
    }
}
@media screen and (max-width: 450px) {
    .watch-video-wrapper {
        flex-direction: column-reverse;
        padding: 1rem;
    }
}
.watch-video-wrapper .watch-info {
    display: flex;
    flex-direction: column;
}
@media screen and (max-width: 450px) {
    .watch-video-wrapper .watch-info {
        text-align: center;
        align-items: center;
    }
}
.watch-video-wrapper .watch-info .watch-button {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 1.5rem;
    background: #f2563d;
    color: #fff;
    border: 1px solid #e84228;
    box-shadow: 5px 5px 0px #000;
    width: fit-content;
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none;
    margin-top: 1rem;
}
.watch-video-wrapper .watch-info .watch-button:hover {
    transform: translate(5px, 5px);
    box-shadow: none;
}
.watch-video-wrapper .watch-info .watch-title {
    font-family: "Oleo Script Swash Caps";
    font-style: normal;
    font-weight: 400;
    font-size: 55px;
    line-height: 76px;
    color: #e84228;
    margin-bottom: 0;
}
@media screen and (max-width: 450px) {
    .watch-video-wrapper .watch-info .watch-title {
        font-size: 35px;
        line-height: 46px;
    }
}
.watch-video-wrapper .watch-info .watch-sub-title {
    color: #000;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.63px;
    text-transform: uppercase;
}
.watch-video-wrapper .watch-info .watch-sub-title span {
    color: #f2563d;
    padding: 0 6px;
}
.watch-video-wrapper .watch-info .watch-description {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    max-width: 90%;
    color: #1d1d1d;
}

:root {
    --c-gray-100: #fbf8f2;
    --c-gray-300: #e9ebec;
    --c-gray-400: #e3e4ea;
    --c-gray-500: #5f5f5f;
    --c-border: #1d1d1d;
    --c-blue-300: #a8dee2;
    --c-blue-500: #2ab3c0;
    --c-green-500: #80b895;
    --c-green-300: #bad5ca;
    --c-red-500: #ea605e;
    --c-yellow-300: #f8e0b1;
    --c-yellow-500: #f9bc73;
    --rotation: -3deg;
}

.playlists {
    margin-top: 1rem;
    display: flex;
    padding: 2rem 0.5rem;
}

.currently-playing {
    padding: 1rem 0.5rem;
}

.card-player {
    width: 200px;
    transform: rotate(var(--rotation));
    transition: 0.15s ease-out;
}
.card-player.type-2 {
    margin-top: 1rem;
    --rotation: 5deg;
}
.card-player.type-2 .card-inner:after {
    background-color: var(--c-green-300);
}
.card-player.type-2 .card-pin {
    top: 20px;
    left: 20px;
    transform: rotate(-5deg);
}
.card-player + .card-player {
    margin-left: 2rem;
}
.card-player:hover,
.card-player:focus-within {
    transform: translateY(4px) rotate(var(--rotation));
}
.card-player:hover .card-inner,
.card-player:focus-within .card-inner {
    background-color: var(--c-gray-100);
}
.card-player:hover .card-pin:after,
.card-player:focus-within .card-pin:after {
    height: 54px;
}
.card-player:hover .card-pin:before,
.card-player:focus-within .card-pin:before {
    transform: translatey(-4px);
}
.card-player.horizontal {
    width: 100%;
    transform: rotate(3deg);
}
.card-player.horizontal .card-inner {
    flex-direction: row;
    align-items: center;
    padding: 1rem;
}
.card-player.horizontal .card-inner:after {
    background-color: var(--c-green-500);
}
.card-player.horizontal .card-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}
.card-player.horizontal .card-content {
    width: 100%;
    margin-top: 0;
    margin-left: 0.5rem;
}
.card-player.horizontal .card-meta-artist {
    font-weight: 700;
}
.card-player.horizontal .card-title {
    font-weight: 500;
    color: var(--c-gray-500);
    font-size: 1.125em;
    margin-top: 0.125em;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.card-player.horizontal .card-time {
    font-weight: 600;
}
.card-player.horizontal:hover .card-pin.simple:before,
.card-player.horizontal:hover .card-pin.simple:after,
.card-player.horizontal:focus-within .card-pin.simple:before,
.card-player.horizontal:focus-within .card-pin.simple:after {
    transform: none;
}
.card-player.horizontal:hover .card-pin.simple:after,
.card-player.horizontal:focus-within .card-pin.simple:after {
    height: 50px;
}

.card-inner {
    display: flex;
    flex-direction: column;
    border: 2px solid var(--c-border);
    padding: 0.5rem;
    background-color: #fff;
    position: relative;
}
.card-inner:after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    bottom: -9px;
    left: 4.5%;
    background-color: var(--c-yellow-300);
}

.card-pin {
    width: 12px;
    height: 12px;
    background-color: var(--c-border);
    position: absolute;
    top: 20px;
    left: calc(50% - 6px);
    border-radius: 50%;
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--c-border);
    transform: rotate(3deg);
    z-index: 1;
}
.card-pin:before,
.card-pin:after {
    content: "";
    display: block;
    border-radius: 50%;
    position: absolute;
    transition: 0.15s ease-out;
}
.card-pin:before {
    width: 12px;
    height: 12px;
    background-color: var(--c-border);
    border-radius: 50%;
    left: calc(50% - 6px);
    top: -44px;
}
.card-pin:after {
    width: 6px;
    background-color: #fff;
    border: 1px solid;
    border-radius: 99em;
    height: 50px;
    left: calc(50% - 3px);
    bottom: 3px;
}
.card-pin.simple {
    box-shadow: none;
}
.card-pin.simple:nth-of-type(odd) {
    left: 10px;
    top: 10px;
    transform: rotate(-45deg);
}
.card-pin.simple:nth-of-type(even) {
    left: calc(100% - 20px);
    top: calc(100% - 20px);
    transform: rotate(120deg);
}

.card-image {
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    background-color: #f2563d;
    border: 2px solid #000;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.card-meta,
.card-title {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.card-meta {
    padding-top: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-meta-number {
    color: var(--c-gray-500);
    font-size: 0.875rem;
    font-weight: 500;
}

.card-meta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: var(--c-border);
    flex-shrink: 0;
    cursor: pointer;
    padding: 0;
    line-height: 0;
    border-radius: 50%;
    background-color: transparent;
}
.card-meta-button i {
    font-size: 1.75rem;
}
.card-meta-button:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.card-title {
    margin-top: 0.25rem;
    font-size: 1rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
}

.join-section {
    margin-top: 8%;
}
.join-section .reg-form-wrapper {
    max-width: 1086px;
    margin: auto;
}
.join-section .reg-form-wrapper .sign-up-form .d-flex.flex-column {
    flex-direction: row !important;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}
@media (max-width: 430px) {
    .join-section .reg-form-wrapper .sign-up-form .d-flex.flex-column {
        flex-direction: column !important;
    }
}
.join-section .reg-form-wrapper .sign-up-form .form-group {
    width: 100%;
    background-color: #0000000d;
    border-bottom-color: transparent;
    margin-top: 0;
    padding: 10px;
    border-radius: 6px;
}
.join-section .reg-form-wrapper .sign-up-form .form-group span {
    display: none;
}
.join-section .reg-form-wrapper .sign-up-form .form-group input,
.join-section .reg-form-wrapper .sign-up-form .form-group select {
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #f2563d;
    padding: 0 !important;
}
@media (min-width: 1280px) {
    .join-section .reg-form-wrapper .sign-up-form .form-group input,
    .join-section .reg-form-wrapper .sign-up-form .form-group select {
        font-size: 16px;
    }
}
.join-section .reg-form-wrapper .sign-up-form .form-group input::placeholder,
.join-section .reg-form-wrapper .sign-up-form .form-group select::placeholder {
    color: #919191;
}
.join-section .reg-form-wrapper .sign-up-form .form-group option {
    font-style: normal;
    font-weight: 700;
    font-family: "Open Sans";
    text-transform: uppercase;
    font-size: 15px;
}
.join-section .reg-form-wrapper .plan {
    width: 100%;
    margin-bottom: 1rem;
}
.join-section .reg-form-wrapper .plan .steps {
    display: none;
}
@media (max-width: 768px) {
    .join-section .reg-form-wrapper .plan .pricing-wrap {
        justify-content: space-evenly;
    }
}
.join-section .reg-form-wrapper .account {
    width: 49%;
    padding: 25px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e84228;
    box-shadow: 10px 10px 0px #e84228;
}
.join-section .reg-form-wrapper .account::after {
    content: "";
    margin-right: 3%;
}
@media (max-width: 768px) {
    .join-section .reg-form-wrapper .account {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
    }
}
.join-section .reg-form-wrapper .payment {
    padding: 25px;
    width: 49%;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e84228;
    box-shadow: 10px 10px 0px #e84228;
}
@media (max-width: 768px) {
    .join-section .reg-form-wrapper .payment {
        width: 100%;
        padding: 10px;
    }
}
.join-section .reg-form-wrapper .payment .payment-wrap {
    margin-bottom: 0 !important;
}
.join-section .reg-form-wrapper .payment .payment-wrap .form-group {
    margin-bottom: 6px;
}
@media (min-width: 768px) {
    .join-section .reg-form-wrapper .payment .payment-wrap .form-group {
        margin-bottom: 12px;
    }
}
.join-section .reg-form-wrapper .payment .select-wrap::after {
    content: "Discrete Billing, Safe and Secure 256-Bit Encryption";
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 10px;
    line-height: 25px;
    text-align: center;
    color: #333;
    opacity: 0.5;
}
@media (min-width: 768px) {
    .join-section .reg-form-wrapper .payment .select-wrap::after {
        font-size: 11px;
    }
}
@media (min-width: 1280px) {
    .join-section .reg-form-wrapper .payment .select-wrap::after {
        font-size: 13px;
    }
}
.join-section .reg-form-wrapper .payment .select-wrap .form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='10' viewBox='0 0 17 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cstyle xmlns='' type='text/css' id='block-image-video'/%3E%3Cpath opacity='1' d='M8.5 10L16.7272 0.25H0.272758L8.5 10Z' fill='%23737373'/%3E%3C/svg%3E") !important;
}
.join-section .reg-form-wrapper h3.steps {
    margin-bottom: 20px !important;
}
@media (min-width: 1024px) {
    .join-section .reg-form-wrapper h3.steps {
        margin-bottom: 30px !important;
    }
}
.join-section .reg-form-wrapper h3.steps span {
    font-family: "Shrikhand";
    font-style: italic;
    font-weight: 400;
    font-size: 26px;
    line-height: 38px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f2563d;
}
@media (min-width: 768px) {
    .join-section .reg-form-wrapper h3.steps span {
        font-size: 20px;
    }
}
@media (min-width: 1024px) {
    .join-section .reg-form-wrapper h3.steps span {
        font-size: 22px;
    }
}
@media (min-width: 1440px) {
    .join-section .reg-form-wrapper h3.steps span {
        font-size: 25px;
    }
}
.join-section .reg-form-wrapper .member-info-wrap {
    flex-direction: column;
    margin-bottom: 0 !important;
}
.join-section .reg-form-wrapper .input-wrap {
    margin-bottom: 5px;
}
@media only screen and (min-width: 992px) {
    .join-section .reg-form-wrapper .input-wrap.select-wrap {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}
.join-section .reg-form-wrapper .error-label {
    margin-right: auto;
    margin-top: 5px;
}
.join-section .reg-form-wrapper .error {
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    text-align: left;
    color: #f2563d;
}
.join-section .pay-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0;
}
@media (max-width: 430px) {
    .join-section .pay-logos img {
        max-height: 17px;
    }
}
.join-section .pricing-wrap {
    margin-top: 100px !important;
    gap: 15px;
}
.join-section .pricing-wrap .price-item {
    width: calc(33.33% - 25px) !important;
    position: relative;
    border-radius: 0;
}
.join-section .pricing-wrap .price-item .thumb-wrapper img {
    filter: grayscale(100%);
}
.join-section .pricing-wrap .price-item .note {
    opacity: 1;
}
@media (max-width: 430px) {
    .join-section .pricing-wrap .price-item {
        margin: auto;
    }
}
.join-section .pricing-wrap .price-item input[type="radio"] + label {
    background-color: #fff;
    border-radius: 0;
    border: 2px solid #0db4f8;
    box-shadow: 10px 10px 0px 0px #0db4f8;
}
.join-section .pricing-wrap .price-item input[type="radio"] + label::after {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: top 0.3s ease-in-out, left 0.3s ease-in-out;
    color: #fff;
}
.join-section
    .pricing-wrap
    .price-item[data-plan-type="special"]
    .subscribe
    .best {
    background-color: #f2b23d;
}
.join-section
    .pricing-wrap
    .price-item[data-plan-type="special"]
    input[type="radio"]
    + label {
    border: 2px solid #f2b23d;
    box-shadow: 10px 10px 0px 0px #f2b23d;
}
.join-section
    .pricing-wrap
    .price-item[data-plan-type="special"]
    input[type="radio"]
    + label
    .description
    .text {
    color: #f2b23d;
}
.join-section
    .pricing-wrap
    .price-item[data-plan-type="special"]
    input[type="radio"]
    + label
    .price
    .amount {
    color: #f2b23d;
}
.join-section
    .pricing-wrap
    .price-item[data-plan-type="special"]
    input[type="radio"]
    + label
    .price
    .per {
    color: #f2b23d;
}
.join-section
    .pricing-wrap
    .price-item[data-plan-discount="discounted"]
    .discount-badge {
    width: 93px;
    height: 93px;
    display: flex;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    content: "";
    left: 4%;
    top: 0;
    transform: translateY(-50%) rotate(-15deg);
    background-image: url("data:image/svg+xml,%3Csvg width='84' height='81' viewBox='0 0 84 81' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32.2873 0.00721964L44.8483 4.22825L57.8788 1.81934L65.5598 12.6174L77.5176 18.3277L77.3847 31.5783L83.7024 43.2266L75.8064 53.8685L74.0708 67.0056L61.4276 70.9739L52.3017 80.5818L39.7407 76.3608L26.7102 78.7697L19.0292 67.9717L7.07138 62.2614L7.20425 49.0108L0.886597 37.3625L8.7826 26.7206L10.5182 13.5835L23.1614 9.61519L32.2873 0.00721964Z' fill='%23F2B23D'/%3E%3C/svg%3E%0A");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.join-section
    .pricing-wrap
    .price-item[data-plan-discount="discounted"]
    .discount-badge__percent,
.join-section
    .pricing-wrap
    .price-item[data-plan-discount="discounted"]
    .discount-badge__off {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 700;
    font-feature-settings: "pnum" on, "lnum" on;
    text-align: center;
    color: #fff;
    opacity: 1;
}
.join-section
    .pricing-wrap
    .price-item[data-plan-discount="discounted"]
    .discount-badge__percent {
    font-size: 25px;
    line-height: 25px;
}
.join-section
    .pricing-wrap
    .price-item[data-plan-discount="discounted"]
    .discount-badge__off {
    font-size: 18px;
    line-height: 18px;
    text-transform: uppercase;
}
.join-section
    .pricing-wrap
    .price-item[data-plan-discount="discounted"]
    input[type="radio"]:checked
    + label
    .discount-badge {
    background-image: url("data:image/svg+xml,%3Csvg width='84' height='81' viewBox='0 0 84 81' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32.2873 0.00721964L44.8483 4.22825L57.8788 1.81934L65.5598 12.6174L77.5176 18.3277L77.3847 31.5783L83.7024 43.2266L75.8064 53.8685L74.0708 67.0056L61.4276 70.9739L52.3017 80.5818L39.7407 76.3608L26.7102 78.7697L19.0292 67.9717L7.07138 62.2614L7.20425 49.0108L0.886597 37.3625L8.7826 26.7206L10.5182 13.5835L23.1614 9.61519L32.2873 0.00721964Z' fill='%23f2563d'/%3E%3C/svg%3E%0A");
}
.join-section .pricing-wrap .price-item .subscribe {
    border: none;
    box-shadow: none;
}
.join-section .pricing-wrap .price-item span.check {
    display: none;
}
.join-section .pricing-wrap .price-item .subscribe {
    padding: 0 0 10px !important;
    background-color: #fff;
}
.join-section .pricing-wrap .price-item .subscribe .best,
.join-section .pricing-wrap .price-item .subscribe .basic {
    background: #0db4f8;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    position: absolute;
    width: fit-content;
    left: 50%;
    top: 36%;
    transform: translate(-50%, -50%);
    font-family: "Raleway";
    font-style: normal;
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    line-height: normal;
    border-radius: 8px !important;
    letter-spacing: 0.08em !important;
}
@media (min-width: 768px) {
    .join-section .pricing-wrap .price-item .subscribe .best,
    .join-section .pricing-wrap .price-item .subscribe .basic {
        font-size: 16px;
    }
}
@media (min-width: 1024px) {
    .join-section .pricing-wrap .price-item .subscribe .best,
    .join-section .pricing-wrap .price-item .subscribe .basic {
        font-size: 18px;
    }
}
@media (min-width: 1440px) {
    .join-section .pricing-wrap .price-item .subscribe .best,
    .join-section .pricing-wrap .price-item .subscribe .basic {
        font-size: 15px;
    }
}
.join-section .pricing-wrap .price-item .subscribe .best {
    color: #ffffff;
}
.join-section .pricing-wrap .price-item .subscribe .basic {
    color: #ffffff;
}
.join-section .pricing-wrap .price-item .subscribe .special {
    position: absolute;
    left: 50%;
    top: 192px;
    transform: translate(-50%, -50%);
    display: block;
    padding: 1px;
    width: fit-content;
    box-sizing: content-box;
    background: #fff;
    color: #f2563d;
    font-size: 15px;
    letter-spacing: 0;
    font-weight: 800;
    font-family: "Open Sans";
    padding: 8px 16px;
    text-transform: uppercase;
    line-height: normal;
}
.join-section .pricing-wrap .price-item .price {
    margin-top: 18px !important;
    margin-bottom: 0 !important;
}
.join-section .pricing-wrap .price-item .price .amount {
    font-family: "Oswald";
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 40px;
    /* identical to box height, or 100% */
    text-align: center;
    color: #0db4f8;
}
@media (max-width: 430px) {
    .join-section .pricing-wrap .price-item .price .amount {
        font-size: 33px;
        line-height: 33px;
    }
}
.join-section .pricing-wrap .price-item .price .per {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 700;
    font-size: 21px;
    line-height: 21px;
    /* identical to box height, or 100% */
    text-align: center;
    color: #0db4f8;
}
.join-section .pricing-wrap .price-item .note {
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    color: #a8a8a8;
    margin: 25px 0;
}
.join-section .pricing-wrap .price-item .description {
    padding-bottom: 0px;
    border-bottom: none;
    width: 80%;
    margin: 25px auto auto;
}
.join-section .pricing-wrap .price-item .description .text {
    font-family: "Shrikhand";
    font-style: italic;
    font-weight: 400;
    font-size: 42px;
    line-height: 76px;
    /* identical to box height */
    text-align: center;
    color: #0db4f8;
}
@media (max-width: 1440px) {
    .join-section .pricing-wrap .price-item .description .text {
        font-size: 35px;
    }
}
@media (max-width: 1024px) {
    .join-section .pricing-wrap .price-item .description .text {
        font-size: 32px;
    }
}
@media (max-width: 768px) {
    .join-section .pricing-wrap .price-item .description .text {
        font-size: 28px;
    }
}
.join-section .pricing-wrap .price-item .description .text span {
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    text-align: center;
    color: #a8a8a8 !important;
    text-transform: capitalize !important;
    margin-top: 15px;
}
@media (min-width: 1440px) {
    .join-section .pricing-wrap .price-item .description .text span {
        font-size: 18px;
    }
}
.join-section
    .pricing-wrap
    .price-item
    input[type="radio"]:checked
    + label
    .description {
    border-bottom: none;
}
.join-section .pricing-wrap .price-item input[type="radio"]:checked + label {
    border: 10px solid #f2563d;
    box-shadow: 10px 10px 0px 0px #000000;
    scale: 1.05;
}
.join-section
    .pricing-wrap
    .price-item
    input[type="radio"]:checked
    + label
    .thumb-wrapper
    img {
    filter: grayscale(0%);
}
.join-section
    .pricing-wrap
    .price-item
    input[type="radio"]:checked
    + label
    .description
    .text {
    color: #e84228;
}
.join-section
    .pricing-wrap
    .price-item
    input[type="radio"]:checked
    + label
    .description
    .text
    span {
    color: #0000008f !important;
}
.join-section
    .pricing-wrap
    .price-item
    input[type="radio"]:checked
    + label
    .best {
    background: #e84228;
}
.join-section
    .pricing-wrap
    .price-item
    input[type="radio"]:checked
    + label
    .price
    .amount,
.join-section
    .pricing-wrap
    .price-item
    input[type="radio"]:checked
    + label
    .price
    .per {
    color: #e84228;
}
.join-section
    .pricing-wrap
    .price-item
    input[type="radio"]:checked
    + label
    .note {
    color: #00000035;
}
.join-section .pricing-wrap .price-item.current-option::before {
    opacity: 0;
}
@keyframes animateBox {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@media (max-width: 1100px) {
    .join-section .pricing-wrap .price-item .subscribe::before {
        height: 120px;
    }
    .join-section .pricing-wrap .price-item .subscribe .description .text {
        font-size: 25px;
        line-height: 24px;
    }
}
@media (max-width: 768px) {
    .join-section .pricing-wrap .price-item {
        width: calc(33% - 10px);
        max-width: 300px;
    }
    .join-section .pricing-wrap .price-item .subscribe::before {
        height: 150px;
    }
}
@media (max-width: 600px) {
    .join-section .pricing-wrap .price-item {
        width: calc(100% - 10px) !important;
        max-width: 250px;
        margin-bottom: 40px;
    }
    .join-section .pricing-wrap .price-item .subscribe::before {
        height: 120px;
    }
}
.join-section .reg-form-wrapper form .submit-wrap .submit {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 19px 52px;
    gap: 22px;
    background: #e84228;
    box-shadow: 12px 12px 0px #000000;
    padding: 0.1vw 5vw;
    font-family: "Raleway";
    font-weight: 700;
    margin-top: 32px !important;
    margin-left: auto;
    margin-right: auto;
    border: none;
    border-radius: 0;
    transition: all 0.1s;
}
.join-section .reg-form-wrapper form .submit-wrap .submit span {
    font-size: 22px;
    line-height: 56px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
}
@media (max-width: 320px) {
    .join-section .reg-form-wrapper form .submit-wrap .submit span {
        font-size: 15px;
    }
}
@media (min-width: 375px) {
    .join-section .reg-form-wrapper form .submit-wrap .submit span {
        font-size: 19px;
    }
}
@media (min-width: 768px) {
    .join-section .reg-form-wrapper form .submit-wrap .submit span {
        font-size: 40px;
        line-height: 76px;
    }
}
@media (min-width: 1024px) {
    .join-section .reg-form-wrapper form .submit-wrap .submit span {
        font-size: 45px;
    }
}
@media (min-width: 1440px) {
    .join-section .reg-form-wrapper form .submit-wrap .submit span {
        font-size: 40px;
    }
}
.join-section
    .reg-form-wrapper
    form
    .submit-wrap
    .submit
    .fas.fa-shopping-cart {
    display: none;
}
.join-section .reg-form-wrapper form .submit-wrap .submit:hover {
    transform: translate(12px, 12px);
    box-shadow: none;
}
.join-section input:-webkit-autofill,
.join-section input:-webkit-autofill:hover,
.join-section input:-webkit-autofill:focus,
.join-section input:-webkit-autofill:active {
    transition: background-color;
    -webkit-transition-delay: 9999s;
    transition-delay: 9999s;
    -webkit-text-fill-color: #f2563d !important;
    caret-color: #f2563d !important;
}
.join-section .agreement {
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 8px;
    text-align: center;
    color: #c2c2c2;
    margin: 24px auto 3rem auto !important;
    max-width: 400px;
    width: 100%;
    padding: 0 10px;
}
@media (min-width: 768px) {
    .join-section .agreement {
        font-size: 8px;
    }
}
@media (min-width: 1280px) {
    .join-section .agreement {
        font-size: 10px;
    }
}
@media (min-width: 1440px) {
    .join-section .agreement {
        font-size: 12px;
    }
}
.join-section .agreement a {
    text-decoration: none !important;
    color: #f2563d;
}
.join-section .agreement a:hover {
    text-decoration: underline !important;
}
@media only screen and (max-width: 667px) {
    .join-section .reg-form-wrapper form .submit {
        margin-top: 0;
    }
}
.join-section .add-ons h3.steps,
.join-section .add-ons h3,
.join-section .add-ons .steps {
    margin-bottom: 0 !important;
}
.join-section .add-ons .add-ons-wrap {
    padding: 0 !important;
}
.join-section .add-ons .add-ons-wrap .add-on label {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.13);
}
.join-section .add-ons .add-ons-wrap .add-on label img {
    border-radius: 6px !important;
}
.join-section .add-ons .no-addon label {
    font-family: "Raleway";
}

.-join-page .section-title h1 {
    font-family: "Shrikhand";
    font-style: italic;
    font-weight: 400;
    font-size: 65px;
    line-height: 70px;
    leading-trim: both;
    text-edge: cap;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0;
    color: #f2563d;
}
.-join-page .section-title h2 {
    font-family: "Shrikhand";
    font-style: italic;
    font-weight: 400;
    font-size: 25px;
    line-height: 30px;
    leading-trim: both;
    text-edge: cap;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #f2b23d;
}
@media screen and (max-width: 768px) {
    .-join-page .section-title h2 {
        font-size: 20px;
        line-height: 25px;
    }
}
@media screen and (max-width: 450px) {
    .-join-page .section-title h2 {
        font-size: 17px;
        line-height: 22px;
    }
}

.thumb-container {
    position: relative;
}
.thumb-container .card {
    border: none;
    outline: none;
}
.thumb-container .card .video-container .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumb-container .card .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}
.thumb-container .card .link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.thumb-container .content-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 20px;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0) 100%
    );
}
.thumb-container .content-card-info .content-info .sub-header {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.21em;
    text-transform: uppercase;
    margin-bottom: 0;
    color: #ffffff;
}
.thumb-container .content-card-info .content-info .sub-header span {
    color: #ff0000;
    margin: 0 5px;
}
.thumb-container .content-card-info .content-info .sub-header .content-season {
    color: inherit;
    text-decoration: none;
    pointer-events: auto;
    padding: 0 5px;
}
.thumb-container
    .content-card-info
    .content-info
    .sub-header
    .content-season:hover {
    background-color: #e84228;
    border-radius: 4px;
}
.thumb-container .content-card-info .content-title-wrap {
    margin-bottom: 0;
}
.thumb-container .content-card-info .content-title-wrap a {
    font-family: "Shrikhand";
    font-style: italic;
    font-weight: 400;
    font-size: 28px;
    line-height: 41px;
    color: #ffffff;
    text-decoration: none;
    text-shadow: -4px 6px 8px rgba(0, 0, 0, 0.5);
}
.thumb-container .content-card-info .content-models {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: -4px 6px 8px rgba(0, 0, 0, 0.5);
}
.thumb-container .content-card-info .content-models a {
    color: inherit;
    text-decoration: none;
    pointer-events: auto;
}
.thumb-container .content-card-info .content-models .show-more-models {
    color: #ff6600;
}
.thumb-container.playing .card .video-container video {
    opacity: 1;
}
.thumb-container .dot-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}
.thumb-container .dot-loader .dot {
    width: 10px;
    height: 10px;
    border: 2px solid white;
    border-radius: 50%;
    float: left;
    margin: 0 5px;
    transform: scale(0);
    -webkit-animation: fx 1000ms ease infinite 0ms;
    animation: fx 1000ms ease infinite 0ms;
}
.thumb-container .dot-loader .dot:nth-child(2) {
    -webkit-animation: fx 1000ms ease infinite 300ms;
    animation: fx 1000ms ease infinite 300ms;
}
.thumb-container .dot-loader .dot:nth-child(3) {
    -webkit-animation: fx 1000ms ease infinite 600ms;
    animation: fx 1000ms ease infinite 600ms;
}
@-webkit-keyframes fx {
    50% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes fx {
    50% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.thumb-container:hover .dot-loader {
    opacity: 1;
}

.upcoming-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    overflow: hidden;
    font-family: Raleway;
    font-size: 55px;
    font-weight: 900;
    line-height: 50.82px;
    letter-spacing: -0.04em;
    text-align: center;
}
.upcoming-wrapper::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    pointer-events: none;
    z-index: 1;
    border: 5px solid #fff;
}
@media screen and (max-width: 768px) {
    .upcoming-wrapper::before {
        height: 14px;
    }
}
.upcoming-wrapper__details {
    position: absolute;
    left: 50%;
    bottom: 10%;
    width: min-content;
    height: min-content;
    flex-direction: column;
    display: flex;
    align-items: flex-start;
    transform: translateX(-50%);
}
@media screen and (max-width: 500px) {
    .upcoming-wrapper__details {
        bottom: 5px;
        gap: 10px;
    }
}
.upcoming-wrapper__details__info {
    display: flex;
    justify-content: center;
    padding: 0 10px;
    order: 2;
}
@media screen and (max-width: 500px) {
    .upcoming-wrapper__details__info {
        flex-direction: column;
    }
}
.upcoming-wrapper__details__info__category {
    color: #fff;
    font-size: 27px;
    line-height: 92.4%;
    letter-spacing: 0.165em;
    text-transform: uppercase;
    width: min-content;
    height: min-content;
    text-align: left;
    align-items: flex-start;
    text-shadow: 0px 3px 11px #00000080;
    display: flex;
    white-space: nowrap;
    flex-direction: column;
}
.upcoming-wrapper__details__info__title {
    width: 100%;
    color: #fff;
    font-size: 55px;
    line-height: 118.0579%;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    height: min-content;
    align-items: flex-start;
    text-shadow: 0px 3px 11px #00000080;
    order: 1;
}
@media (max-width: 500px) {
    .upcoming-wrapper__details__info__title {
        font-size: 25px;
        white-space: unset;
        width: 100%;
    }
}
.upcoming-wrapper__details__info__modelInfo {
    width: min-content;
    height: min-content;
    display: flex;
    align-items: flex-start;
    gap: 5.6178px;
    letter-spacing: 2px;
    font-family: Raleway;
    font-size: 21px;
    font-weight: 900;
    line-height: 24.65px;
    text-align: center;
}
.upcoming-wrapper__details__countdown {
    width: min-content;
    height: min-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5031px;
    order: 3;
    margin-top: 3rem;
}
.upcoming-wrapper__details__countdown__date {
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.125em;
    text-transform: uppercase;
    width: min-content;
    height: min-content;
    text-align: left;
    align-items: flex-start;
    text-shadow: 0px 2px 7px #00000080;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
}
.upcoming-wrapper__details__countdown__count {
    width: min-content;
    height: min-content;
    display: flex;
    align-items: flex-start;
    gap: 28.1593px;
}
.upcoming-wrapper__details__countdown__count__days {
    width: min-content;
    height: min-content;
    display: flex;
    flex-direction: column;
    place-content: center;
    align-items: flex-start;
}
.upcoming-wrapper__details__countdown__count__days__num {
    background-image: linear-gradient(180deg, #ffff 0%, #dadadaff 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 57.2431px;
    line-height: 100%;
    font-weight: bold;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    width: min-content;
    height: min-content;
    text-align: left;
    align-items: flex-start;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
}
.upcoming-wrapper__details__countdown__count__days__text {
    color: #dadada;
    font-size: 15.3596px;
    line-height: 100%;
    font-weight: bold;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    width: min-content;
    height: min-content;
    text-align: left;
    align-items: flex-start;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
}
.upcoming-wrapper__details__countdown__count__hours {
    width: min-content;
    height: min-content;
    display: flex;
    flex-direction: column;
    place-content: center;
    align-items: flex-start;
}
.upcoming-wrapper__details__countdown__count__hours__num {
    background-image: linear-gradient(180deg, #ffff 0%, #dadadaff 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 57.2431px;
    line-height: 100%;
    font-weight: bold;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    width: min-content;
    height: min-content;
    text-align: left;
    align-items: flex-start;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
}
.upcoming-wrapper__details__countdown__count__hours__text {
    color: #dadada;
    font-size: 15.3596px;
    line-height: 100%;
    font-weight: bold;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    width: min-content;
    height: min-content;
    text-align: left;
    align-items: flex-start;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
}
.upcoming-wrapper__details__countdown__count__minutes {
    width: min-content;
    height: min-content;
    display: flex;
    flex-direction: column;
    place-content: center;
    align-items: flex-start;
}
.upcoming-wrapper__details__countdown__count__minutes__num {
    background-image: linear-gradient(180deg, #ffff 0%, #dadadaff 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 57.2431px;
    line-height: 100%;
    font-weight: bold;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    width: min-content;
    height: min-content;
    text-align: center;
    align-items: flex-start;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
}
.upcoming-wrapper__details__countdown__count__minutes__text {
    color: #dadada;
    font-size: 15.3596px;
    line-height: 100%;
    font-weight: bold;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    width: min-content;
    height: min-content;
    text-align: center;
    align-items: flex-start;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
}
.upcoming-wrapper__details__countdown__count__sec {
    width: min-content;
    height: min-content;
    display: flex;
    flex-direction: column;
    place-content: center;
    align-items: flex-start;
}
.upcoming-wrapper__details__countdown__count__sec__num {
    background-image: linear-gradient(180deg, #ffff 0%, #dadadaff 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 57.2431px;
    line-height: 100%;
    font-weight: bold;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    width: min-content;
    height: min-content;
    text-align: center;
    align-items: flex-start;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
}
.upcoming-wrapper__details__countdown__count__sec__text {
    color: #dadada;
    font-size: 15.3596px;
    line-height: 100%;
    font-weight: bold;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    width: min-content;
    height: min-content;
    text-align: left;
    align-items: flex-start;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
}

.upcoming-wrapper {
    width: 100%;
    margin: 0 auto 50px;
    background-color: transparent;
}
.upcoming-wrapper__upcomingThumb {
    display: flex;
}
.upcoming-wrapper__upcomingThumb .upcoming-tag {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 33px;
    background-image: url("/heading/white-paper-strip.svg");
    background-position: left center;
    background-repeat: repeat-x;
    background-size: contain;
    color: #fff;
    z-index: 1;
    padding: 15px 50px;
}
@media (max-width: 500px) {
    .upcoming-wrapper__upcomingThumb .upcoming-tag {
        font-size: 15px;
        padding: 15px 20px;
    }
}
.upcoming-wrapper__upcomingThumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.upcoming-wrapper__upcomingThumb .upcoming-player-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-size: auto, auto, auto, cover;
    background-repeat: repeat;
    background-position: center;
    background-size: contain;
}
.upcoming-wrapper__upcomingThumb .upcoming-player-overlay .play-tag {
    margin: 40px;
    color: #fff;
    text-shadow: 3px 4px 5px rgba(255, 255, 255, 0.25);
    font-family: Tomorrow;
    font-size: 33px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 5.035px;
    text-transform: uppercase;
}
@media screen and (max-width: 500px) {
    .upcoming-wrapper__upcomingThumb .upcoming-player-overlay .play-tag {
        margin: 40px 40px 40px 10px;
        font-size: 15px;
    }
}
.upcoming-wrapper__upcomingThumb .upcoming-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: auto;
}
@media (max-width: 500px) {
    .upcoming-wrapper__upcomingThumb .upcoming-play-btn {
        width: 70px;
    }
}
.upcoming-wrapper__upcomingThumb video {
    aspect-ratio: 20/9;
    object-fit: cover;
}
.upcoming-wrapper__details {
    width: 90%;
    padding: 0 10px;
}
@media (min-width: 1024px) {
    .upcoming-wrapper__details {
        width: 50%;
    }
}
.upcoming-wrapper__details__info {
    width: 100%;
    padding: 0;
    gap: 10px;
}
.upcoming-wrapper__details__info__category {
    color: #fff;
    text-align: left;
    text-shadow: 0px 3px 11px rgba(0, 0, 0, 0.5);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 92.4%;
    letter-spacing: -1.08px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
@media (min-width: 1024px) {
    .upcoming-wrapper__details__info__category {
        font-size: 24px;
    }
}
@media (min-width: 1280px) {
    .upcoming-wrapper__details__info__category {
        font-size: 28px;
    }
}
@media (min-width: 768px) {
    .upcoming-wrapper__details__info__title {
        font-size: 45px;
    }
}
@media (min-width: 1024px) {
    .upcoming-wrapper__details__info__title {
        font-size: 50px;
    }
}
@media (min-width: 1280px) {
    .upcoming-wrapper__details__info__title {
        font-size: 55px;
    }
}
.upcoming-wrapper__details__info__modelInfoWrapper {
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: inherit;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: -4px 6px 8px rgba(0, 0, 0, 0.5);
}
.upcoming-wrapper__details__info__modelInfoWrapper.models
    .upcoming-wrapper__details__info__modelInfo {
    margin-right: 10px;
}
.upcoming-wrapper__details__info__modelInfoWrapper.models
    .upcoming-wrapper__details__info__modelInfo:last-child {
    margin-right: 0;
}
.upcoming-wrapper__details__info__modelInfoWrapper span {
    color: white;
    text-shadow: 1px 2px #00000045;
}
.upcoming-wrapper__details__info__modelInfoWrapper a {
    text-decoration: none;
}
.upcoming-wrapper__details__info__modelInfoWrapper a:hover {
    color: #b93520;
}
.upcoming-wrapper__details__info__modelInfoWrapper .model-name {
    text-shadow: 1px 2px #00000045;
    color: #fff;
}
.upcoming-wrapper__details__info__modelInfoWrapper .info-meta span {
    text-shadow: 1px 2px #00000045;
}
@media (max-width: 1280px) {
    .upcoming-wrapper__details__info__modelInfoWrapper {
        font-size: 18px;
    }
}
@media (max-width: 450px) {
    .upcoming-wrapper__details__info__modelInfoWrapper {
        font-size: 12px;
    }
}
.upcoming-wrapper__details__info__contentInfo {
    display: none;
}
.upcoming-wrapper__details__info__modelInfo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.upcoming-wrapper__details__info__modelInfo__icon {
    margin-top: 16px;
    border-radius: 100%;
    overflow: hidden;
    border: 4px solid transparent;
    background: linear-gradient(
        141deg,
        #13961b 0%,
        #338da0 51.04%,
        #18851f 100%
    );
}
.upcoming-wrapper__details__info__modelInfo__icon img {
    width: 87px;
    height: 87px;
    object-fit: cover;
    object-position: top;
}
.upcoming-wrapper__details__info__modelInfo__starring {
    display: none;
}
.upcoming-wrapper__details__info__modelInfo__model {
    color: #fff;
    text-align: left;
    text-shadow: 0px 3px 11px rgba(0, 0, 0, 0.5);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 92.4%;
    letter-spacing: -0.72px;
    text-transform: uppercase;
    border-radius: 5px;
    padding: 5px 13px;
    margin-top: -8px;
}
.upcoming-wrapper__details__countdown {
    width: 100%;
}
.upcoming-wrapper__details__countdown__date {
    color: #fff;
    text-align: left;
    font-variant-numeric: lining-nums proportional-nums;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    width: 100%;
    white-space: pre-line;
    margin-bottom: 5px;
}
@media (min-width: 1024px) {
    .upcoming-wrapper__details__countdown__date {
        font-size: 16px;
    }
}
@media (min-width: 1280px) {
    .upcoming-wrapper__details__countdown__date {
        font-size: 18px;
    }
}
.upcoming-wrapper__details__countdown__count .show-counter {
    display: flex;
    align-items: flex-start;
}
.upcoming-wrapper__details__countdown__count .show-counter .countdown {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-right: 30px;
}
@media (max-width: 768px) {
    .upcoming-wrapper__details__countdown__count .show-counter .countdown {
        margin-right: 10px;
    }
}
.upcoming-wrapper__details__countdown__count
    .show-counter
    .countdown:last-child {
    margin-right: 0;
}
.upcoming-wrapper__details__countdown__count .show-counter .countdown p {
    font-family: "Oswald";
    font-style: normal;
    font-weight: 700;
    font-size: 76.1677px;
    line-height: 100%;
    /* or 76px */
    text-align: center;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0px 2.7px 10.14px #00000080;
}
@media (min-width: 768px) {
    .upcoming-wrapper__details__countdown__count .show-counter .countdown p {
        font-size: 60px;
    }
}
@media (min-width: 1024px) {
    .upcoming-wrapper__details__countdown__count .show-counter .countdown p {
        font-size: 70px;
    }
}
@media (min-width: 1280px) {
    .upcoming-wrapper__details__countdown__count .show-counter .countdown p {
        font-size: 76px;
    }
}
.upcoming-wrapper__details__countdown__count .show-counter .countdown span {
    font-family: "Oswald";
    font-style: normal;
    font-weight: 700;
    font-size: 20.4375px;
    line-height: 100%;
    /* or 20px */
    text-align: center;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    font-feature-settings: "pnum" on, "lnum" on;
    text-shadow: 0px 2.7px 10.14px #00000080;
    color: #ffffff;
}
@media (min-width: 768px) {
    .upcoming-wrapper__details__countdown__count .show-counter .countdown span {
        font-size: 14px;
    }
}
@media (min-width: 1024px) {
    .upcoming-wrapper__details__countdown__count .show-counter .countdown span {
        font-size: 16px;
    }
}
@media (min-width: 1280px) {
    .upcoming-wrapper__details__countdown__count .show-counter .countdown span {
        font-size: 20px;
    }
}
.upcoming-wrapper__details__countdown__count .show-counter .divider {
    display: none;
}
.upcoming-wrapper__details__countdown__count__days__num,
.upcoming-wrapper__details__countdown__count__hours__num,
.upcoming-wrapper__details__countdown__count__minutes__num,
.upcoming-wrapper__details__countdown__count__sec__num {
    text-align: left;
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -3.047px;
    text-transform: uppercase;
    background: none;
    background-clip: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
    color: #fff;
}
@media (min-width: 768px) {
    .upcoming-wrapper__details__countdown__count__days__num,
    .upcoming-wrapper__details__countdown__count__hours__num,
    .upcoming-wrapper__details__countdown__count__minutes__num,
    .upcoming-wrapper__details__countdown__count__sec__num {
        font-size: 60px;
    }
}
@media (min-width: 1024px) {
    .upcoming-wrapper__details__countdown__count__days__num,
    .upcoming-wrapper__details__countdown__count__hours__num,
    .upcoming-wrapper__details__countdown__count__minutes__num,
    .upcoming-wrapper__details__countdown__count__sec__num {
        font-size: 70px;
    }
}
@media (min-width: 1280px) {
    .upcoming-wrapper__details__countdown__count__days__num,
    .upcoming-wrapper__details__countdown__count__hours__num,
    .upcoming-wrapper__details__countdown__count__minutes__num,
    .upcoming-wrapper__details__countdown__count__sec__num {
        font-size: 76px;
    }
}
.upcoming-wrapper__details__countdown__count__days__text,
.upcoming-wrapper__details__countdown__count__hours__text,
.upcoming-wrapper__details__countdown__count__minutes__text,
.upcoming-wrapper__details__countdown__count__sec__text {
    color: #dadada;
    text-align: left;
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.818px;
    text-transform: uppercase;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
    .upcoming-wrapper__details__countdown__count__days__text,
    .upcoming-wrapper__details__countdown__count__hours__text,
    .upcoming-wrapper__details__countdown__count__minutes__text,
    .upcoming-wrapper__details__countdown__count__sec__text {
        font-size: 14px;
    }
}
@media (min-width: 1024px) {
    .upcoming-wrapper__details__countdown__count__days__text,
    .upcoming-wrapper__details__countdown__count__hours__text,
    .upcoming-wrapper__details__countdown__count__minutes__text,
    .upcoming-wrapper__details__countdown__count__sec__text {
        font-size: 16px;
    }
}
@media (min-width: 1280px) {
    .upcoming-wrapper__details__countdown__count__days__text,
    .upcoming-wrapper__details__countdown__count__hours__text,
    .upcoming-wrapper__details__countdown__count__minutes__text,
    .upcoming-wrapper__details__countdown__count__sec__text {
        font-size: 20px;
    }
}
.upcoming-wrapper .countdown_header {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 900;
    font-size: 17.8229px;
    line-height: 27px;
    /* identical to box height */
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #ffffff;
    text-shadow: 0px 2.70351px 10.1381px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
}

.-models-slug-page .upcoming-wrapper::before {
    display: none;
}

.pagination {
    font-family: "Open Sans";
    margin: 35px 0;
}
.pagination .page-item:first-of-type,
.pagination .page-item:last-of-type {
    display: none !important;
}
.pagination .page-item:first-of-type::before,
.pagination .page-item:nth-child(2)::before,
.pagination .page-item:last-of-type::before,
.pagination .page-item:nth-last-child(2)::before,
.pagination .page-item:first-of-type:hover::before,
.pagination .page-item:nth-child(2):hover::before,
.pagination .page-item:last-of-type:hover::before,
.pagination .page-item:nth-last-child(2):hover::before {
    border: none;
}
.pagination .page-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    border: none;
}
.pagination .page-item::before {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    content: "";
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    border-radius: 7px;
    transition: 0.3s;
}
@media (min-width: 768px) {
    .pagination .page-item::before {
        width: 37px;
        height: 37px;
    }
}
.pagination .page-item.active::before {
    border: 4px solid #ff5a24;
    border-radius: 50%;
    background-color: transparent;
}
.pagination .page-item.prev.disabled {
    opacity: 0.7;
}
.pagination .page-item .page-link {
    display: inline-block;
    margin: 0 3px;
    padding: 0;
    width: 40px;
    line-height: 2em;
    border: none;
    text-align: center;
    border-radius: 0;
    transition: 0.3s;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
    color: #2e2e2e;
    background-color: transparent;
}
@media (min-width: 768px) {
    .pagination .page-item .page-link {
        font-size: 18px;
    }
}
.pagination .page-item .page-link:hover {
    opacity: 1;
}
.pagination .page-item .page-link:focus {
    background-color: transparent;
    outline: none;
    box-shadow: none;
    border: none;
}
.pagination .page-item .page-link .single-arrow {
    transition: 0.3s;
}
.pagination .page-item .page-link svg path {
    stroke: #ff5a24;
}
@media (max-width: 768px) {
    .pagination {
        font-size: 16px;
    }
}
.pagination .disabled {
    opacity: 0.5;
}
.pagination .page-link {
    text-decoration: none;
}

#ypp-player.video-js .vjs-control-bar {
    background-color: transparent;
    z-index: 0;
    height: 50px;
    padding: 0px 10px 10px;
}
#ypp-player.video-js .vjs-control-bar::after {
    content: "";
    position: absolute;
    top: unset;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, black 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
}
#ypp-player.video-js
    .vjs-control-bar
    .vjs-button
    > .vjs-icon-placeholder::before {
    font-size: 2rem;
    line-height: 2.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
#ypp-player.video-js .vjs-control-bar .vjs-volume-control {
    display: inline-flex !important;
    align-items: center;
    height: 100%;
}
#ypp-player.video-js .vjs-control-bar .vjs-time-control {
    font-size: 1.2rem;
    line-height: 1.5rem;
}
#ypp-player.video-js .vjs-control-bar .vjs-time-control.vjs-remaining-time {
    display: inline-flex;
    align-items: center;
}
#ypp-player.video-js .vjs-control-bar .vjs-volume-panel {
    margin-right: auto;
}
#ypp-player.video-js .vjs-control-bar .vjs-progress-control {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    top: unset;
    margin-left: 0px !important;
    height: 10px;
}
#ypp-player.video-js .vjs-control-bar .vjs-progress-holder {
    height: 5px;
    border-radius: 10px;
    overflow: hidden;
}
#ypp-player.video-js .vjs-control-bar .vjs-slider {
    background-color: rgba(255, 255, 255, 0.5);
}
#ypp-player.video-js .vjs-control-bar .vjs-load-progress div {
    background: rgba(255, 255, 255, 0.4);
}
#ypp-player.video-js .vjs-control-bar .vjs-play-progress {
    background-color: #e84228;
}
#ypp-player.video-js .vjs-control-bar .vjs-play-progress::before {
    display: none;
}
#ypp-player.video-js
    .vjs-control-bar
    .vjs-remaining-time
    span[aria-hidden="true"] {
    display: none;
}

.-privacy-page,
.-support-page,
.-terms-page,
.-\32 257-page {
    font-family: "Open Sans";
}
@media (max-width: 500px) {
    .-privacy-page,
    .-support-page,
    .-terms-page,
    .-\32 257-page {
        margin-top: 40px;
    }
}
.-privacy-page .page-title,
.-support-page .page-title,
.-terms-page .page-title,
.-\32 257-page .page-title {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.-privacy-page .page-title h2,
.-support-page .page-title h2,
.-terms-page .page-title h2,
.-\32 257-page .page-title h2 {
    font-size: 70px;
    line-height: normal;
    margin-bottom: 1.5rem;
}
@media (max-width: 500px) {
    .-privacy-page .page-title h2,
    .-support-page .page-title h2,
    .-terms-page .page-title h2,
    .-\32 257-page .page-title h2 {
        letter-spacing: 4px;
    }
}
.-privacy-page .page-title p,
.-support-page .page-title p,
.-terms-page .page-title p,
.-\32 257-page .page-title p {
    display: none;
}
.-privacy-page .support-section p,
.-privacy-page .support-section ul,
.-privacy-page .support-section dl,
.-privacy-page .support-section dd,
.-privacy-page .support-section dt,
.-privacy-page .privacy-section p,
.-privacy-page .privacy-section ul,
.-privacy-page .privacy-section dl,
.-privacy-page .privacy-section dd,
.-privacy-page .privacy-section dt,
.-support-page .support-section p,
.-support-page .support-section ul,
.-support-page .support-section dl,
.-support-page .support-section dd,
.-support-page .support-section dt,
.-support-page .privacy-section p,
.-support-page .privacy-section ul,
.-support-page .privacy-section dl,
.-support-page .privacy-section dd,
.-support-page .privacy-section dt,
.-terms-page .support-section p,
.-terms-page .support-section ul,
.-terms-page .support-section dl,
.-terms-page .support-section dd,
.-terms-page .support-section dt,
.-terms-page .privacy-section p,
.-terms-page .privacy-section ul,
.-terms-page .privacy-section dl,
.-terms-page .privacy-section dd,
.-terms-page .privacy-section dt,
.-\32 257-page .support-section p,
.-\32 257-page .support-section ul,
.-\32 257-page .support-section dl,
.-\32 257-page .support-section dd,
.-\32 257-page .support-section dt,
.-\32 257-page .privacy-section p,
.-\32 257-page .privacy-section ul,
.-\32 257-page .privacy-section dl,
.-\32 257-page .privacy-section dd,
.-\32 257-page .privacy-section dt {
    color: #000;
}
.-privacy-page .support-section dt,
.-privacy-page .privacy-section dt,
.-support-page .support-section dt,
.-support-page .privacy-section dt,
.-terms-page .support-section dt,
.-terms-page .privacy-section dt,
.-\32 257-page .support-section dt,
.-\32 257-page .privacy-section dt {
    font-weight: 500;
    font-size: 1.25rem;
}
.-privacy-page .terms-section p,
.-privacy-page .terms-section ul,
.-privacy-page .terms-section dl,
.-privacy-page .terms-section dd,
.-support-page .terms-section p,
.-support-page .terms-section ul,
.-support-page .terms-section dl,
.-support-page .terms-section dd,
.-terms-page .terms-section p,
.-terms-page .terms-section ul,
.-terms-page .terms-section dl,
.-terms-page .terms-section dd,
.-\32 257-page .terms-section p,
.-\32 257-page .terms-section ul,
.-\32 257-page .terms-section dl,
.-\32 257-page .terms-section dd {
    color: #000;
}
.-privacy-page .terms-section dt,
.-support-page .terms-section dt,
.-terms-page .terms-section dt,
.-\32 257-page .terms-section dt {
    font-weight: 500;
    color: #000;
}
.-privacy-page .terms-section h2,
.-support-page .terms-section h2,
.-terms-page .terms-section h2,
.-\32 257-page .terms-section h2 {
    margin-top: 4rem;
}
.-privacy-page .terms-section h4,
.-support-page .terms-section h4,
.-terms-page .terms-section h4,
.-\32 257-page .terms-section h4 {
    text-transform: uppercase;
    font-family: "Raleway";
    font-weight: 700;
}
.-privacy-page .support-section h3,
.-support-page .support-section h3,
.-terms-page .support-section h3,
.-\32 257-page .support-section h3 {
    margin: 1.5rem 0;
    font-family: "Raleway";
}
.-privacy-page .support-section dt,
.-support-page .support-section dt,
.-terms-page .support-section dt,
.-\32 257-page .support-section dt {
    font-weight: 700;
    color: #000;
    margin: 1rem 0;
    font-family: "Raleway";
    text-transform: uppercase;
    font-size: 1rem;
}
.-privacy-page .support-section,
.-privacy-page .privacy-section,
.-privacy-page .terms-section,
.-privacy-page .cookie-section,
.-support-page .support-section,
.-support-page .privacy-section,
.-support-page .terms-section,
.-support-page .cookie-section,
.-terms-page .support-section,
.-terms-page .privacy-section,
.-terms-page .terms-section,
.-terms-page .cookie-section,
.-\32 257-page .support-section,
.-\32 257-page .privacy-section,
.-\32 257-page .terms-section,
.-\32 257-page .cookie-section {
    max-width: 1400px !important;
    background: #fff;
    padding: 30px;
    border-radius: 5px;
}
@media (min-width: 768px) {
    .-privacy-page .support-section,
    .-privacy-page .privacy-section,
    .-privacy-page .terms-section,
    .-privacy-page .cookie-section,
    .-support-page .support-section,
    .-support-page .privacy-section,
    .-support-page .terms-section,
    .-support-page .cookie-section,
    .-terms-page .support-section,
    .-terms-page .privacy-section,
    .-terms-page .terms-section,
    .-terms-page .cookie-section,
    .-\32 257-page .support-section,
    .-\32 257-page .privacy-section,
    .-\32 257-page .terms-section,
    .-\32 257-page .cookie-section {
        padding: 50px;
    }
}
.-privacy-page .support-section > h2:first-child,
.-privacy-page .privacy-section > h2:first-child,
.-privacy-page .terms-section > h2:first-child,
.-privacy-page .cookie-section > h2:first-child,
.-support-page .support-section > h2:first-child,
.-support-page .privacy-section > h2:first-child,
.-support-page .terms-section > h2:first-child,
.-support-page .cookie-section > h2:first-child,
.-terms-page .support-section > h2:first-child,
.-terms-page .privacy-section > h2:first-child,
.-terms-page .terms-section > h2:first-child,
.-terms-page .cookie-section > h2:first-child,
.-\32 257-page .support-section > h2:first-child,
.-\32 257-page .privacy-section > h2:first-child,
.-\32 257-page .terms-section > h2:first-child,
.-\32 257-page .cookie-section > h2:first-child {
    display: none;
}
.-privacy-page .support-section h4,
.-privacy-page .privacy-section h4,
.-privacy-page .terms-section h4,
.-privacy-page .cookie-section h4,
.-support-page .support-section h4,
.-support-page .privacy-section h4,
.-support-page .terms-section h4,
.-support-page .cookie-section h4,
.-terms-page .support-section h4,
.-terms-page .privacy-section h4,
.-terms-page .terms-section h4,
.-terms-page .cookie-section h4,
.-\32 257-page .support-section h4,
.-\32 257-page .privacy-section h4,
.-\32 257-page .terms-section h4,
.-\32 257-page .cookie-section h4 {
    font-size: 1.3rem;
}
.-privacy-page .support-section h2,
.-privacy-page .support-section h3,
.-privacy-page .privacy-section h2,
.-privacy-page .privacy-section h3,
.-privacy-page .terms-section h2,
.-privacy-page .terms-section h3,
.-privacy-page .cookie-section h2,
.-privacy-page .cookie-section h3,
.-support-page .support-section h2,
.-support-page .support-section h3,
.-support-page .privacy-section h2,
.-support-page .privacy-section h3,
.-support-page .terms-section h2,
.-support-page .terms-section h3,
.-support-page .cookie-section h2,
.-support-page .cookie-section h3,
.-terms-page .support-section h2,
.-terms-page .support-section h3,
.-terms-page .privacy-section h2,
.-terms-page .privacy-section h3,
.-terms-page .terms-section h2,
.-terms-page .terms-section h3,
.-terms-page .cookie-section h2,
.-terms-page .cookie-section h3,
.-\32 257-page .support-section h2,
.-\32 257-page .support-section h3,
.-\32 257-page .privacy-section h2,
.-\32 257-page .privacy-section h3,
.-\32 257-page .terms-section h2,
.-\32 257-page .terms-section h3,
.-\32 257-page .cookie-section h2,
.-\32 257-page .cookie-section h3 {
    font-weight: 700;
    color: #000;
    font-size: 1.25rem;
    text-transform: uppercase;
    font-family: "Raleway";
}
.-privacy-page .support-section a,
.-privacy-page .privacy-section a,
.-privacy-page .terms-section a,
.-privacy-page .cookie-section a,
.-support-page .support-section a,
.-support-page .privacy-section a,
.-support-page .terms-section a,
.-support-page .cookie-section a,
.-terms-page .support-section a,
.-terms-page .privacy-section a,
.-terms-page .terms-section a,
.-terms-page .cookie-section a,
.-\32 257-page .support-section a,
.-\32 257-page .privacy-section a,
.-\32 257-page .terms-section a,
.-\32 257-page .cookie-section a {
    color: #b93520;
    text-decoration: none;
    transition: none !important;
    word-wrap: break-word;
    font-weight: 700;
}
.-privacy-page .support-section a:hover,
.-privacy-page .privacy-section a:hover,
.-privacy-page .terms-section a:hover,
.-privacy-page .cookie-section a:hover,
.-support-page .support-section a:hover,
.-support-page .privacy-section a:hover,
.-support-page .terms-section a:hover,
.-support-page .cookie-section a:hover,
.-terms-page .support-section a:hover,
.-terms-page .privacy-section a:hover,
.-terms-page .terms-section a:hover,
.-terms-page .cookie-section a:hover,
.-\32 257-page .support-section a:hover,
.-\32 257-page .privacy-section a:hover,
.-\32 257-page .terms-section a:hover,
.-\32 257-page .cookie-section a:hover {
    color: #b93520;
    text-decoration: underline;
}
.-privacy-page .cookie-section,
.-support-page .cookie-section,
.-terms-page .cookie-section,
.-\32 257-page .cookie-section {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    padding-top: 0;
}
.-privacy-page .cookie-section hr,
.-support-page .cookie-section hr,
.-terms-page .cookie-section hr,
.-\32 257-page .cookie-section hr {
    margin-top: 0 !important;
}
.-privacy-page .main-footer .copy a,
.-support-page .main-footer .copy a,
.-terms-page .main-footer .copy a,
.-\32 257-page .main-footer .copy a {
    color: #000;
}
.-privacy-page .main-footer .copy a:hover,
.-support-page .main-footer .copy a:hover,
.-terms-page .main-footer .copy a:hover,
.-\32 257-page .main-footer .copy a:hover {
    text-decoration: underline;
    text-decoration-color: #000;
    text-decoration-thickness: 1px;
    color: #000;
}

.page-2257-title .page-title {
    max-width: 1400px;
}
@media (max-width: 768px) {
    .page-2257-title .page-title h2 {
        letter-spacing: 5px;
    }
}

.page-2257 {
    font-family: "Open Sans";
}
.page-2257 .col-sm-8 {
    width: 100% !important;
}
.page-2257 .support-section {
    max-width: 1400px !important;
    background: #0a0a0a;
    padding: 30px;
    border-radius: 10px;
}
@media (min-width: 768px) {
    .page-2257 .support-section {
        padding: 50px;
    }
}
.page-2257 h2 {
    display: none;
}
.page-2257 h3,
.page-2257 h2 {
    font-weight: 400;
    color: #000;
}
.page-2257 a {
    color: #000;
    text-decoration: underline;
    transition: none !important;
}
.page-2257 a:hover {
    color: #000;
    opacity: 0.9;
}
.page-2257 p,
.page-2257 ul,
.page-2257 dl,
.page-2257 dt,
.page-2257 dd {
    color: #000;
}

.page-404 {
    font-family: "Poppins";
}
.page-404 h1 {
    margin-bottom: 0 !important;
    font-size: 6rem;
}
@media (min-width: 768px) {
    .page-404 h1 {
        font-size: 8rem;
    }
}
.page-404 h2 {
    text-transform: uppercase;
}
.page-404 h1,
.page-404 h2 {
    color: #000;
    font-family: "Poppins";
    font-weight: 700;
}
.page-404 p {
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
}
@media (min-width: 768px) {
    .page-404 p {
        font-size: 1.2rem;
    }
}
.page-404 .btn-primary {
    margin-top: 3rem;
    width: fit-content;
    color: #fff;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.053em;
    background: #e84228;
    font-family: "Poppins";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.315px;
    text-transform: uppercase;
    border: none;
    display: flex;
    padding: 15px 30px;
    justify-content: center;
    align-items: center;
    box-shadow: 5px 5px 0px 0px #000;
    transition: 0.3s all ease;
}
@media (min-width: 768px) {
    .page-404 .btn-primary {
        font-size: 20px;
    }
}
@media (min-width: 1280px) {
    .page-404 .btn-primary {
        font-size: 22px;
    }
}
.page-404 .btn-primary:hover {
    transform: translate(5px, 5px);
}
.page-404 img {
    width: fit-content;
    max-width: 350px;
}

body {
    background-color: #fff9ee;
}

main {
    display: flex;
    flex-direction: column;
    gap: var(--stack-gap, 1rem);
}

.login-form-wrapper {
    background: #fff;
    border: 1px solid #e84228;
    box-shadow: 5px 5px 0px #000000;
    padding: 2rem;
}

@media (min-width: 375px) {
    .login-form-wrapper {
        padding: 10px;
    }
}

@media (min-width: 768px) {
    .login-form-wrapper {
        padding: 25px;
    }
}

.login-form-wrapper div.field-wrapper {
    padding: 10px 0;
}

.login-form-wrapper div.field-wrapper .pw-wrap {
    position: relative;
}

.login-form-wrapper div.field-wrapper .reveal-pass {
    position: absolute;
    z-index: 3;
    top: 20px;
    right: 20px;
    font-size: 16px;
    color: #000;
    cursor: pointer;
    opacity: 0.8;
}

.form-control {
    font-size: 0.9rem;
}

@media (min-width: 375px) {
    .form-control {
        font-size: 1rem;
    }
}

.login-form-wrapper div.field-wrapper .form-control.username,
.login-form-wrapper div.field-wrapper .form-control.password {
    padding: 16px 24px;
    border: 1px solid #e84228;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #000;
    font-weight: 600;
    text-align: center;
}

.login-form-wrapper div.field-wrapper .form-control.username::placeholder,
.login-form-wrapper div.field-wrapper .form-control.password::placeholder {
    color: #000;
    text-align: center;
    text-transform: uppercase;
}

.login-form-wrapper div.field-wrapper .captcha-wrap {
    margin-top: 15px;
    margin-bottom: 0;
    text-align: center;
}

.login-form-wrapper div.field-wrapper .captcha-wrap > img {
    width: 130px;
    height: auto;
}

.login-form-wrapper div.field-wrapper .captcha-wrap .warning {
    text-align: center;
    color: #ff0000;
    font-weight: 700;
}

.member-login-text {
    margin-bottom: 0;
    color: #000;
    font-family: "Poppins";
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 2.375px;
    text-transform: uppercase;
    text-align: center;
}

@media (min-width: 1024px) {
    .member-login-text {
        font-size: 23px;
    }
}

@media (min-width: 1440px) {
    .member-login-text {
        font-size: 25px;
    }
}

.access-your-account-text {
    text-align: center;
    display: block;
    color: #000;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (min-width: 375px) {
    .access-your-account-text {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .access-your-account-text {
        font-size: 18px;
    }
}

@media (min-width: 1280px) {
    .access-your-account-text {
        font-size: 18px;
    }
}

.remember {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-transform: uppercase;
    justify-content: center;
}

.remember input {
    display: none;
}

.remember label {
    cursor: pointer;
    text-align: start;
    display: block;
    color: #000;
    font-family: "Open Sans";
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    .fa-circle-notch{
      color: #e84228;
    }
}

@media (min-width: 375px) {
    .remember label {
        font-size: 12px;
    }
}

@media (min-width: 768px) {
    .remember label {
        font-size: 14px;
    }
}

.remember input[type="checkbox"]:checked ~ label .fa-circle-notch:before {
    content: "\f058";
}

.submit-wrap .submit {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.412px;
    align-self: stretch;
    transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
    background: #e84228;
    width: fit-content;
    box-shadow: 5px 5px 0px #000000;
    margin: auto;
    border-radius: 0px;
    padding: 0px 40px;
    transform: all 0s;
}
.submit-wrap .submit:hover {
    transform: translate(5px, 5px);
}
.submit-wrap .submit span {
    color: #fff;
    font-family: "Poppins";
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    line-height: normal;
    line-height: normal;
    letter-spacing: 0px;
    text-transform: uppercase;
}
@media screen and (max-width: 768px) {
    .submit-wrap .submit span {
        font-size: 30px;
    }
  
}
.submit-wrap .submit:hover {
    animation: rotate-footer 0.7s ease-in-out both;
}
.submit-wrap .submit:hover span {
    animation: storm 0.7s ease-in-out both;
    animation-delay: 0.06s;
}

.submit-wrap a.forgot-text {
    color: #6a6a6a;
    text-decoration: none;
}

.submit-wrap .not-member-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-wrap span.not-member {
    text-align: center;
    color: #000;
    font-family: "Open Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.submit-wrap a.signup-link {
    text-align: center;
    margin-left: 6px;
    color: #e84228;
    font-family: "Open Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration-line: underline;
    text-transform: uppercase;
    transition: 0.5s all ease;
}

.submit-wrap a.signup-link:hover {
    color: #e84228;
}



.reveal {
  width: 100%;
  height: 100%;
  background: #fff9ee;
  display: flex;
  align-items: center;
  position: relative;
}
.reveal .hidden-content {
  --x: 0px;
  --y: 0px;
  --mask: radial-gradient(
    ellipse 75px 75px at var(--x) calc(var(--y) - 0px),
    #fff9ee 150px,
    transparent 50%
  );
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  mask-image: var(--mask);
  pointer-events: none;
  visibility: hidden;
  z-index: 1;
}
.reveal .reveal_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.reveal__inner {
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 150px 100px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .reveal__inner {
    padding: 100px 10px;
  }
  
}