main {display: flex;flex-direction: column;}
main .hero {order: 1;}
main .social-pages {order: 2;}
main section.video-background {order: 3;}
main section.story-section {order: 4;}
main section.features {order: 5;}
main section.screenshots {order: 6;}
main section.youtube-video {order: 7;}
main section.products-featured {order: 8;}
main section.footer-section {order: 9;}

/************************
 * HERO
 ***********************/
.hero {display: block;}
.hero .hero-content{position: relative;}
.hero .hero-background {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    background-position: center center !important;
    background-size: cover !important;
}
.hero .hero-rectangle {
    background-repeat: repeat-x !important;
    background-position: left bottom !important;
    width: 100%;
    opacity: 1;
}
.hero .hero-logo {padding-top:100px;margin-bottom:100px;}
.hero .hero-logo-img {margin:0 auto; max-width:100%;height:auto;}
.hero .scroll-down {padding:20px 0;}
.hero .hero-headline {
    margin: 10px auto 50px auto;
    text-align: center;
    font-size: 61px;
    line-height: 68px;
    max-width: 715px;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px #000;
}
.hero .hero-bottom {
    margin-top: -2px;
    padding: 20px 0 66px 0;
    background-repeat: round;
}
.hero .hero-bottom-title {
    font-weight: bold;
    font-size: 1.5em;
    margin: 50px auto;
    text-transform: uppercase;
}
.hero .hero-description {
    color: white;
    font-size: 20px;
    line-height: 24px;
    margin: 0 auto 66px auto;
    padding-top: 60px;
    text-align: center;
    font-weight: 500;
    max-width: 600px;
}
.hero-bottom-coming-soon,
.hero-bottom-get-now {
    display: flex;
    gap: 20px;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}
.hero-bottom-button-img {
    max-width: 100%;
    height: 100%;
    max-height: 150px;
    width: 177px;
}
@media (max-width: 768px) {
    .hero-headline {
        font-size: 32px;
        line-height: 38px;
        margin: 0 10px 120px 10px;
    }
    .hero-bottom-coming-soon,
    .hero-bottom-get-now {
        flex-direction: column;
        align-content: center;
    }
    .hero .hero-bottom-button[data-show-mobile="false"] {
        display: none;
    }
}
/*** Theming styles*/
.hero[data-theme="default"] .hero-rectangle { background-image: url(../../img/jollybattle/grad.png);}
.hero[data-theme="default"] hero-bottom{
    background: #C96A76;
    background: linear-gradient(
        5deg, rgba(201, 106, 118, 1) 10%,
        rgba(117, 56, 181, 1) 37%,
        rgba(105, 49, 189, 1) 56%,
        rgba(93, 42, 198, 1) 84%);
}
.hero[data-theme="default"] section.products-featured, section.features {
    background: #C96A76;
    background: linear-gradient(
        234deg,
        rgba(201, 106, 118, 1) 3%,
        rgba(117, 56, 181, 1) 26%,
        rgba(105, 49, 189, 1) 35%,
        rgba(93, 42, 198, 1) 62%,
        rgba(201, 106, 118, 1) 96%);
}
/********************
 * SOCIAL-PAGES
 ********************/
.social-pages {
    padding: 20px 0;
    background: #ffffff;
}
.social-pages .social-pages-header {
    color: #f34648;
    margin: 20px 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 40px;
    letter-spacing: 2px;
    text-align: center;
}
.social-pages .social-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 400px;
    padding: 40px 30px;
    margin: 0 auto;
}
/********************
 * STORY
 ********************/
section.story-section {
    position: relative;
    padding: 65px 0 100px 0;
    background-color: #FFFFFF;
}
section.story-section .story-head {
    display: flex;
    justify-content: center;
    z-index: 2;
}
section.story-section .story-head .story-title {
    text-transform: uppercase;
    color: #f34648;
    padding-bottom: 45px;
    font-size: 40px;
    font-weight: 700;
}
section.story-section:has(.char-position-left) .story-container {
    padding-left: 40px;
}
section.story-section:has(.char-position-right) .story-container {
    padding-right: 40px;
}
section.story-section .story-block {
    display: flex;
    gap: 80px;
    align-items: center;
    padding: 40px 0;
}
section.story-section .story-block div {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1;
    position: relative;
}
section.story-section .story-block .story-image {
    align-items: end;
}
section.story-section .story-block .story-image .story-image-container {
    display: inline-block;
    position: relative;
}
section.story-section .story-block .story-image .story-image-fancy {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/16;
    border-radius: 16px 16px 16px 16px;
    max-width: 450px;
}
section.story-section .story-block .story-image .story-image-fancy img {
    width: 100%;
    max-width: 100%;
}
section.story-section .story-block .story-image .story-character-icon {
    display: flex;
    order: 1;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -30px;
    left: -30px;
    z-index: 2;
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 50px 50px 0 rgba(0, 0, 0, .25);
    width: 80px;
    height: 80px;
    background-color: #8000FF;
}
section.story-section .story-block .story-image .story-character-icon.char-position-right {
    left: inherit;
    right: -30px;
}
section.story-section .story-block .story-image .story-character-icon .story-character-icon-img {
    height: 100%;
    max-height: 100%;
}
section.story-section .story-block .story-content .story-title {
    color: #8000FF;
    font-size: 24px;
    line-height: 40px;
    text-align: left;
    text-transform: uppercase;
}
section.story-section .story-block .story-content .story-description {
    font-size: 18px;
    color: #000000;
    text-align: left;
}
section.story-section .story-block .story-content .story-social-icons {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    padding: 60px 0;
}
section.story-section .story-social-icons .social-link {
    text-decoration: none;
}
section.story-section .story-social-icons .social-link img {
    filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, .3));
}
@media (max-width: 768px) {
    section.story-section .story-block {
        flex-direction: column;
        gap: 40px;
    }
    section.story-section .story-block .story-image .story-character-icon {
        width: 60px;
        height: 60px;
        top: -20px;
        left: -20px;
    }
    section.story-section .story-block .story-image .story-character-icon.char-position-right {
        left: inherit;
        right: -20px;
    }
    section.story-section .story-block .story-content .story-title,
    section.story-section .story-block .story-content .story-description {
        text-align: center;
        max-width: 425px;
    }
}
@media (max-width: 576px) {
    section.story-section .story-block .story-image .story-character-icon {
        width: 40px;
        height: 40px;
    }
}
/********************
 * FEATURES
 ********************/
section.features {
    padding: 80px 0;
    background-repeat: round;
}
section.features .section-head {
    margin-bottom: 60px;
}
section.features .section-head h2 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
}
section.features:has(.char-position-left) .container {
    padding-left: 40px;
}
section.features:has(.char-position-right) .container {
    padding-right: 40px;
}
section.features .features-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin: 30px 0;
}
section.features .features-list .feature-item {
    display: flex;
    gap: 80px;
    align-items: center;
    padding: 40px 0;
}
section.features .features-list .feature-item .feature-image {
    display: flex;
    flex: 1;
    justify-content: end;
}
section.features .features-list .feature-item .feature-image .feature-image-container {
    display: inline-block;
    position: relative;
}
section.features .features-list .feature-item .feature-img {
    max-width: 425px;
    width: 100%;
    border-radius: 16px;
    margin: 0 auto;
}
section.features .features-list .feature-item .feature-image .feature-character-icon.char-position-right {
    right: -30px;
    left: inherit;
}
section.features .feature-character-icon {
    display: flex;
    order: 1;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -30px;
    left: -30px;
    z-index: 2;
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 50px 50px 0 rgba(0, 0, 0, .25);
    width: 80px;
    height: 80px;
    background: #F89E0B;
}
section.features .features-list .feature-item .feature-image .feature-character-icon .feature-character-icon-img {
    max-width: 100%;
}
section.features .features-list .feature-item .feature-description {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: start;
}
section.features .features-list .feature-item .feature-content {
    color: #ffffff;
    max-width: 425px;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
}
section.features .features-list .feature-item .feature-content .feature-header {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}
section.features .features-list .feature-item:nth-child(even) {
    flex-direction: row-reverse;
}
section.features .features-list .feature-item:nth-child(even) .feature-image {
    justify-content: start;
}
section.features .features-list .feature-item:nth-child(even) .feature-description {
    justify-content: end;
}
@media (max-width: 768px) {
    section.features .features-list {
        flex-direction: column;
        gap: 40px;
    }
    section.features .features-list .feature-item,
    section.features .features-list .feature-item:nth-child(even) {
        flex-direction: column;
        gap: 40px;
    }
    section.features .feature-character-icon {
        width: 60px;
        height: 60px;
        top: -20px;
        left: -20px;
    }
    section.features .features-list .feature-item .feature-image,
    section.features .features-list .feature-item:nth-child(even) .feature-image,
    section.features .features-list .feature-item:nth-child(even) .feature-description {
        justify-content: center;
        flex-wrap: wrap;
    }
    section.features .feature-character-icon.char-position-right {
        left: inherit;
        right: -20px;
    }
    section.story-section .story-block .story-content .story-title,
    section.features .features-list .feature-item .feature-content {
        text-align: center;
        max-width: 425px;
    }
}
@media (max-width: 576px) {
    section.features .feature-character-icon {
        width: 40px;
        height: 40px;
    }
}
section.features .sweet-teams-title {
    margin-bottom: 90px;
}
section.features .sweet-teams-title h2 {
    margin: 150px auto 20px auto;
    max-width: 450px;
    color: #ffffff;
}
section.features .sweet-teams-description {
    color: #FFFFFF;
    font-weight: 400;
    margin: 41px auto;
    font-size: 18px;
    max-width: 520px;
    padding: 0 20px;
}
section.features .sweet-teams-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 80px;
    margin-bottom: 140px;
    justify-content: center;
}
section.features .sweet-team-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
section.features .sweet-team-content {
    max-width: 460px;
    align-self: center;
}
section.features .sweet-team-content .sweet-team-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}
section.features .sweet-team-content .sweet-team-description {
    font-size: 18px;
}
section.features .sweet-team-image img {
    height: 160px;
}
@media (max-width: 768px) {
    section.features .sweet-team-image img {
        height: 150px;
    }
}
@media (max-width: 576px) {
    section.features .sweet-team-image img {
        height: 130px;
    }
}
/********************
 * SCREENSHOTS
 ********************/
section.screenshots {
    display: none;
    padding: 65px 0 100px 0;
    background-color: #ffffff;
}
section.screenshots .screenshots-head {
    display: flex;
    justify-content: center;
    z-index: 2;
}
section.screenshots .screenshots-head .screenshots-title {
    text-transform: uppercase;
    color: #f34648;
    padding-bottom: 45px;
    font-size: 40px;
    font-weight: 700;
}
section.screenshots:has(.char-position-left) .screenshots-container {
    padding-left: 40px;
}
section.screenshots:has(.char-position-right) .screenshots-container {
    padding-right: 40px;
}
section.screenshots .slider-pro {
    display: flex;
    flex-direction: column;
    position: relative;
}
section.screenshots .slider-pro .sp-slider-character-icon {
    display: flex;
    order: 1;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -30px;
    left: -30px;
    z-index: 1;
    padding: 20px;
    background: #8000ff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
}
section.screenshots .slider-pro .sp-slider-character-icon.char-position-right {
    left: inherit;
    right: -30px;
}
section.screenshots .slider-pro .sp-slider-character-icon .sp-slider-character-icon-img {
    height: 100%;
    max-height: 100%;
}
section.screenshots .slider-pro.sp-full-screen .sp-slider-character-icon {
    display: none;
}
section.screenshots .sp-bottom-thumbnails {
    margin-top: 20px;
}
section.screenshots .slider-pro .sp-full-screen-button {
    top: 15px;
    right: 30px;
    z-index: 10;
}
section.screenshots .slider-pro:has(.char-position-right) .sp-full-screen-button {
    right: inherit;
    left: 30px;
    transform: rotate(-45deg);
}
section.screenshots .slider-pro .sp-full-screen-button {
    color: #ffffff;
}
section.screenshots .slider-pro .sp-slider-external-controls {
    display: flex;
    order: 5;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
}
section.screenshots .slider-pro .sp-slider-external-controls .sp-ext-arrow {
    width: 50px;
    height: 50px;
    cursor: pointer;
    fill: #8000ff;
}
@media (max-width: 768px) {
    section.screenshots .slider-pro .sp-slider-character-icon {
        width: 60px;
        height: 60px;
        top: -20px;
        left: -20px;
    }
    section.screenshots .slider-pro .sp-slider-character-icon.char-position-right {
        left: inherit;
        right: -20px;
    }
}
@media (max-width: 576px) {
    section.screenshots .slider-pro .sp-slider-character-icon {
        width: 40px;
        height: 40px;
    }
}
/********************
 * YOUTUBE VIDEO
 ********************/
section.youtube-video {
    padding: 65px 0 100px 0;
    background-color: #f2f2f2;
}
section.youtube-video:has(.char-position-left) .youtube-container {
    padding-left: 40px;
}
section.youtube-video:has(.char-position-right) .youtube-container {
    padding-right: 40px;
}
section.youtube-video .youtube-head {
    display: flex;
    justify-content: center;
    z-index: 2;
}
section.youtube-video .youtube-head .youtube-title {
    text-transform: uppercase;
    color: #f34648;
    padding-bottom: 45px;
    font-size: 40px;
    font-weight: 700;
}
section.youtube-video .youtube-video-player {
    position: relative;
    width: 100%;
}
section.youtube-video .youtube-video-player .youtube-character-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -30px;
    left: -30px;
    z-index: 2;
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 50px 50px 0 rgba(0, 0, 0, .25);
    width: 80px;
    height: 80px;
    background: #F89E0B;
}
section.youtube-video .youtube-video-player .youtube-character-icon.char-position-right {
    left: inherit;
    right: -30px;
}
section.youtube-video .youtube-video-player .youtube-character-icon .youtube-character-icon-img {
    height: 100%;
    max-height: 100%;
}
section.youtube-video .youtube-video-player .youtube-block-video {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16/9;
    overflow: hidden;
}
section.youtube-video .youtube-video-player .youtube-block-video iframe,
section.youtube-video .youtube-video-player .youtube-block-video .yt-object {
    border: none;
    width: 100%;
    aspect-ratio: 16/9;
}
@media (max-width: 768px) {
    section.youtube-video .youtube-video-player .youtube-character-icon {
        width: 60px;
        height: 60px;
        top: -20px;
        left: -20px;
    }
    section.youtube-video .youtube-video-player .youtube-character-icon.char-position-right {
        left: inherit;
        right: -20px;
    }
}
@media (max-width: 576px) {
    section.youtube-video .youtube-video-player .youtube-character-icon {
        width: 40px;
        height: 40px;
    }
}
/********************
 * CARDS
 ********************/
section.products-featured {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 60px 30px;
    background-repeat: round;
}
section.products-featured .product-card {
    padding: 30px;
    background: #ffffff;
}
section.products-featured .product-card .product-image {
    width: 100%;
    max-width: 370px;
}
section.products-featured .product-card .product-card-title {
    color: #f34648;
    padding: 10px 0 15px 0;
    font-size: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
}
section.products-featured .product-social-images {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
section.products-featured .product-social-images .product-social-link {
    display: inline-flex;
}
section.products-featured .product-social-images .product-social-link .img-fluid {
    width: 100%;
}
section.products-featured .product-social-images .product-social-link .img-eq-height {
    height: 48px;
    max-height: 48px;
    max-width: 100%;
}
