/*** For Sticky ATC so footer doesn't get cut off ***/
body {
    padding-bottom: 50px;
}

/****************
Button Override (Desktop)
****************/

@media (min-width: 800px) {
    .button {
        font-size: 18px;
    }
}

/******************
Hero
******************/

#hero {
    position: relative;
}

#hero::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    content: "";
}

#heroImage {
    width: 100%;
    height: auto;
    display: block;
}

#heroContent {
    z-index: 1;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

#heroContentTitle {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    color: #f8f0e3;
}

#heroContentTitleHighlight::before {
    background-color: #e5d2c3;
}

#heroContentSubtitle {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
    color: #f8f0e3;
}

#heroButton {
    letter-spacing: 2px;
    background-color: black;
    color: white;
}

@media (max-width: 750px) {
    #heroImage {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #heroContent {
        padding: 60px 10px;
        position: relative;
        transform: none;
        top: 0;
        left: 0;
    }

    #heroContentTitle {
        font-size: 40px;
        line-height: 1.2;
    }

}

/******************
Sample
***************/

#sample {
    padding: 25px 10px;
    text-align: center;
    background-color: var(--orange);
    color: white;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 800;
}

/******************
Reviews
 */

#reviews {
    max-width: 690px;
    padding: 60px 20px 60px;
    display: flex;
    flex-direction: column;
}

#reviewsTitle {
    color: #282a29;
    text-align: center;
    margin-bottom: 20px;
    font-size: 34px;
    font-weight: 800;
    text-transform: uppercase;
}

#reviewsStars {
    max-width: 200px;
    margin: 0 auto 20px;
}

#reviewsSwiper {
    margin-bottom: 40px;
    width: 100%;
}

.reviewSwiperSlide {
    padding: 0 40px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reviewSwiperSlideTitle {
    font-family: "Playfair Display";
    max-width: 500px;
    margin: 0 auto 20px;
    font-size: 40px;
    text-align: center;
}

.reviewSwiperSlideBy {
    font-size: 18px;
    color: #c58173;
    font-weight: 900;
    text-align: center;
}

#reviewsPagination {
    position: static;
    --swiper-theme-color: var(--orange);
    margin-top: 20px;
}

#reviewsButton {
    background-color: #a4664c;
}

@media (max-width: 800px) {
    #reviews {
        padding: 30px 20px;
    }

    #reviewsTitle {
        margin-bottom: 15px;
        font-size: 32px;
    }

    .reviewSwiperSlideTitle {
        font-size: 26px;
    }
}

/******************
Info
******************/

.info {
    background-color: #fff7ee;
}

.info.alt {
    background-color: #f8f0e3;
}

.infoInner {
    padding: 60px 20px;
}

.infoTitle {
    color: #282a29;
    text-align: center;
    margin-bottom: 40px;
    font-size: 34px;
    font-weight: 800;
}

.infoTitle.alt {
    color: #8c6257;
}

.infoTitleHighlight::before {
    background-color: #eeded7;
}

.infoTitleHighlight {
}

.infoPoint {
    margin-bottom: 20px;
    display: flex;
}

.infoPointCheck {
    color: black;
    font-size: 25px;
    margin-right: 20px;
}

.infoPointText {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
}

.infoSubtitle {
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    font-size: 26px;
}

.infoButton {
    letter-spacing: 2px;
}

@media (max-width: 750px) {
    .infoInner {
        padding: 40px;
    }

    .infoTitle {
        font-size: 28px;
    }

    .infoPointText {
        font-size: 20px;
    }
}

/*****************
Stats
 */

#stats {
}

#statsInner {
    padding: 40px 20px 10px;
}

#statsTitle {
    font-size: 50px;
    color: var(--orange);
    font-family: 'Playfair Display', serif;
    margin-bottom: 14px;
}

.statsRow {
    display: flex;
    gap: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d09790;
    margin-bottom: 10px;
    align-items: center;
}

.statsRow.last {
    border-bottom: none;
    margin-bottom: 10px;
}

.statsRowPercentage {
    color: #d09790;
    font-weight: 700;
    font-size: 40px;
}

.statsRowDescription {
    font-size: 25px;
    font-weight: 500;
}

#statsLegal {
    text-align: left;
    font-size: 14px;
    font-style: italic;
}

@media (max-width: 800px) {
    #statsTitle {
        font-size: 30px;
    }

    .statsRowPercentage {
        font-size: 40px;
    }

    .statsRowDescription {
        font-size: 17px;
    }

    #statsLegal {
        font-size: 12px;
    }

    #statsLegal br {
        display: none;
    }
}


/******************
Modules
******************/

#modules {
    position: relative;
    z-index: 1;
}

#modulesInner {
    padding: 60px 20px;
}

#modulesTitle {
    font-size: 34px;
    font-weight: 800;
    text-align: center;
    color: #8c6257;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

.modulesTitleHighlight::before {
    background-color: #e2d7cf;
}

#modulesDescription {
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 60px;
}

#modulesSwiperContainer {
    position: relative;
}

#modulesSwiper {
    margin-bottom: 30px;
}

.module {
    width: 100%;
    max-width: 236px;
    background-color: #ECE8E5;
    position: relative;
    padding: 65px 15px 45px;
    border-radius: 30px;
    margin-right: 20px;
    margin-bottom: 0;
    margin-top: 50px;
    height: auto;
}

.module:last-child {
    margin-right: 0;
}

.moduleImageWrapper {
    position: absolute;
    left: 50%;
    top: -35px;
    transform: translateX(-50%);
    background-color: #ECE8E5;
    border-radius: 100%;
}

.moduleImage {
    width: 86px;
    height: auto;
}

.moduleTitle {
    text-align: center;
    font-size: 19px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.moduleTitle > span {
    color: #c57433;
}

.moduleDescription {
    text-align: center;
    font-size: 14px;
}

#modulesPagination {
    position: unset;
    margin-top: 15px;
}

#modulesPagination .swiper-pagination-bullet {
    opacity: 1;
    background-color: #eadcd3;
}

#modulesPagination .swiper-pagination-bullet-active {
    background-color: #da9662;
}

#modulesPrevious, #modulesNext {
    background: #b38c72;
    border-radius: 100vh;
    width: 30px;
    height: 30px;
}

#modulesPrevious {
    left: -50px;
}

#modulesNext {
    right: -50px
}

#modulesPrevious::after, #modulesNext::after {
    font-size: 12px;
    color: white;
}

#moduleButton {
}

@media (max-width: 1400px) {
    #modulesPrevious {
        left: -15px;
    }

    #modulesNext {
        right: -15px;
    }
}

@media (max-width: 750px) {

    #modulesTitle {
        line-height: 1.2;
    }

    .module {
        margin: 40px auto 40px;
    }

    .module:last-child {
        margin-right: auto;
    }
}

/******************
Questions
******************/

#question {
    position: relative;
}

#question::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    content: "";
}

#questionInner {
    padding: 20px 20px 50px;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
}

#questionTitle {
    font-size: 40px;
    text-align: center;
    color: white;
    line-height: 1.2;
}


@media (max-width: 750px) {
    #questionInner {
        padding: 80px 20px 30px;
        position: relative;
        transform: none;
        top: 0;
        left: 0;
    }

    #questionTitle {
        font-size: 36px;
    }
}


/******************
Guarantee
******************/


#guarantee {
    position: relative;
}

#guarantee::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    content: "";
}

#guaranteeImage {
    width: 100%;
    display: block;
}

#guaranteeInner {
    padding: 20px;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.guaranteeTitle {
    font-size: 40px;
    text-align: center;
    font-weight: 800;
    line-height: 1.2;
    color: #fcf9f7;
    margin-bottom: 35px;
    max-width: 1035px;
    margin: 0 auto 35px;
}

.guaranteeTitle > span.italic {
    font-style: italic;
}

.guaranteeTitle.alt {
    color: #f2dbc7;
}

.guaranteeTitleHighlight::before {
    background-color: #f2dbc787;
}

#guaranteeButton {
    letter-spacing: 2px;
}

@media (max-width: 950px) {
    #guaranteeImage {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #guaranteeInner {
        padding: 40px 20px;
        position: relative;
    }

    .guaranteeTitle {
        font-size: 28px;
    }
}

/*******
 Questions
*************/

#question {
    background-color: #fcf9f7;
}

#questionInner {
    padding: 40px 20px 0;
}

#question::after {
    content: none;
}

#question picture {
    display: none;
}

#questionInner {
    position: static;
}

#questionTitle {
    color: black;
}

@media (max-width: 750px) {
    #questionInner {
        padding: 40px 20px 0;
    }
}


/******************
Tough
******************/

#tough {
    position: relative;
}

#tough::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    content: "";
}

#toughImage {
    width: 100%;
    display: block;
}

#toughInner {
    padding: 20px;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#toughTitle {
    font-size: 40px;
    text-align: center;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

#toughTitleHighlight::before {
    background-color: #e0d2c489;
}

#toughButton {
    background-color: #e0d2c4;
    letter-spacing: 1px;
}

@media (max-width: 750px) {
    #toughImage {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #toughInner {
        padding: 40px 20px 40px;
        position: relative;
        transform: none;
        top: 0;
        left: 0;
    }

    #toughTitle {
        font-size: 28px;
    }

    #toughImage {
        object-position: left;
    }
}
