
/* Hero Section */

.hero-banner {
    content: '';
    position: relative;
    width: 100vw !important;
    left: 50%;
    transform: translateX(-50%);
    height: 600px;
    padding: 0;
    margin: 0;
    background-image: url('/images/home/home_hero_banner.jpg');
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100vw !important;
    height: 100%;
    background: linear-gradient(180deg,
    rgba(247, 142, 30, 0) 0%,
    rgba(0, 0, 0, 0.1) 35%,
    rgba(0, 0, 0, 0.1) 75%,
    rgba(255, 255, 255, 0) 100%);
}

.hero-banner-wrapper {
    height: 100%;
}

.hero-content {
    position: relative;
    padding: 80px 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 24px;
    max-width: 850px;
}

.hero-content h1 {
    color: #FFFFFF;
}

.hero-content h3.subHeader {
    color: #FFF;
}

@media screen and (max-width: 767px) {
    .hero-banner {
        height: 450px;
        background-image: url('/images/home/home_hero_banner_mobile.jpg');
    }

    .hero-banner::before {
        background: linear-gradient(180deg,
        rgba(247, 142, 30, 0) 0%,
        rgba(0, 0, 0, 0.5) 35%,
        rgba(0, 0, 0, 0.5) 75%,
        rgba(255, 255, 255, 0) 100%);
    }

    .hero-content {
        padding: 40px;
        gap: 16px;
    }
}

@media screen and (max-width: 450px) {
    .hero-content {
        padding: 30px;
        gap: 12px;
    }

    .hero-content h1 {
        font-size: 28px;
    }
}


/* Software Section */

.scrollable-section-wrapper, .static-section-wrapper {
    display: flex;
    gap: 16px;
}

.software-card, .solution-card, .ebook-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.ebook-card {
    gap: 16px;
}

.strategies-card-wrapper, .coaching-card-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.strategies-card-wrapper h3 {
    text-align: center;
}

.strategies-card, .coaching-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    min-height: 291px;

    background: #ebebeb;
    border-radius: 8px;
    border: 1px solid #b5b5b5;
    padding: 0 15px 20px 15px;
    margin-top: 30px;
    /*box-shadow: 2px 2px 3px rgba(29, 29, 29, 0.2);*/
}

.coaching-card {
    min-height: 245px;
}

.strategies-card img:not(.dts-logo), .coaching-card img {
    max-width: 100%;
    align-self: center;
    margin-top: -45px;
}

.strategies-card img:not(.dts-logo), .coaching-card img {
    filter: drop-shadow(2px 2px 3px rgba(29, 29, 29, 0.5));
}

.strategies-card img.dts-logo {
    padding-top: 20px;
    width: 100%;
    object-fit: contain;
}

.strategies-card h4, .coaching-card h4 {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-top: 3px;
}

.strategies-card p, .coaching-card p {
    font-weight: 500;
}

.strategies-card input {
    border: 1px solid #b5b5b5;
}

.strategies-card form {
    width: 100%;
}

.strategies-card form fieldset {
    display: flex;
    flex-direction: column;
    gap:8px;
    margin-top: -8px;
}

.software-card-banner, .solution-card-banner {
    position: relative;
    width: 100%;
    height: 350px;
    padding: 0;
    margin: 0;
    border-radius: 10px;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.solution-card-banner {
    justify-content: flex-end;
}

.software-card-content,
.solution-card-content,
.ebook-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.software-card-content p, .solution-card p {
    font-size: 15px;
}

.software-mockup-image {
    position: absolute;
    width: 220px;
    margin-bottom: -15px;
}

.solution-mockup-image {
    position: absolute;
    width: 120px;
    margin-bottom: -15px;
    margin-right: -15px;
}

.solution-card .buttons-wrapper-horizontal {
    gap: 8px;
}

.coaching-card .buttons-wrapper-horizontal {
    gap: 8px;
    align-items: center;
    justify-content: center;
}


.ebook-mockup-image {
    width: 100%;
}

#bible-verse-section-1 {
    background-image: url('../images/home/bible-verse-1-background.png');
}

#bible-verse-section-2 {
    background-image: url('../images/home/bible-verse-2-background.png');
}

@media screen and (max-width: 1199px) {
    .scrollable-section-wrapper {
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
    }

    .scrollable-section-wrapper::-webkit-scrollbar {
        height: 7px;
    }

    .scrollable-section-wrapper::-webkit-scrollbar-track {
        background: #e8e8e8;
        border-radius: 25px;
    }

    .scrollable-section-wrapper::-webkit-scrollbar-thumb {
        background: #c6c6c6;
        border-radius: 25px;
    }

    @supports not selector(::-webkit-scrollbar) {
        .scrollable-section-wrapper {
            scrollbar-color: #c6c6c6
            #e8e8e8
        }
    }

    .software-card, .solution-card, .ebook-card, .coaching-card, .strategies-card {
        flex: 0 0 auto;
        width: 25%;
        min-width: 220px;
        min-height: 100%;
        white-space: normal;
    }

    .ebook-card {
        width: 30%;
        min-width: 273px;
    }

    .strategies-card, .coaching-card {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .static-section-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .strategies-card-wrapper, .coaching-card-wrapper {
        max-width: 400px;
        min-width: 350px;
        margin: 0 auto;
    }

    #bible-verse-section-1 {
        background-image: url('../images/home/bible-verse-1-background-mobile.png');
    }

    #bible-verse-section-2 {
        background-image: url('../images/home/bible-verse-2-background-mobile.png');
    }
}

@media screen and (max-width: 450px) {
    .ebook-card {
        width: 80vw;
        min-width: 80vw;
    }

    .strategies-card-wrapper, .coaching-card-wrapper {
        width: 80vw;
        min-width: 80vw;
    }
}

