* {
    margin: 0px;
    padding: 0px;
}

nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 8vh;
    padding: 30px;
}

nav .icon img {
    height: 6vh;
    width: 6vh;
}

nav .icon span {
    color: #7AD6C1;
    font-size: 32px;
    font-weight: bolder;
    font-style: italic;
}

nav .download {
    height: 5vh;
    background-color: #7AD6C1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #fff;
    border-radius: 2.5vh;
}

nav .download:hover {
    cursor: pointer;
}

header {
    height: 50vh;
    width: 100%;
    background: #FFFBD4;
}

header .vector {
    height: 50vh;
    width: 100%;
    background-image: url(../images/HeaderVectorDots.png);
    background-size: cover;
    display: flex;
    flex-direction: row;
}

header .vector .content {
    width: 50%;
    padding: 20px;
}

header .vector h1 span:nth-child(2) {
    color: #0061EF;
}

header .vector p {
    margin-top: 20px;
}

header .vector .download {
    height: 8vh;
    width: 300px;
    background-color: #7AD6C1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #fff;
    border-radius: 4vh;
    margin-top: 30px;
}

header .vector .download:hover {
    cursor: pointer;
}

header .vector .cover-img {
    height: 50vh;
    width: 50%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
}

header .vector .sub-cover-img {
    height: 40vh;
    width: 70%;
    background-color: #7AD6C1;
    border-top-right-radius: 12%;
    border-top-left-radius: 12%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

header .vector .sub-cover-img .heading {
    height: 40%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

header .vector .sub-cover-img .heading h1 {
    text-align: center;
}

header .vector .sub-cover-img div {
    height: 60%;
    width: 90%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
}

header .vector .sub-cover-img div img {
    width: 90%;
    height: 70%;
}

.join-us-text {
    text-align: center;
    margin-top: 20px;
}

.join-us {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 20px;
}

.join-us .join-us-card {
    width: 20%;
    height: 45vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.join-us .join-us-card img {
    height: 15vh;
    width: 15vh;
}

.join-us .join-us-card h3 {
    text-align: center;
}

.join-us .join-us-card p {
    text-align: center;
}

.listners-stories {
    background-color: #FFFBD4;
    height: 70vh;
}

.listners-stories .listners-stories-text {
    text-align: center;
    height: 10vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.listner-stories-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    height: 55vh;
}

.listner-stories-card {
    width: 20%;
    height: 55vh;
    background-color: #F9F5F6;
    font-family: "Poppins", sans-serif;
    border-radius: 8px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.6);
    padding: 20px;
}

.listner-stories-card p {
    height: 38vh;
    font-style: italic;
    /* text-align: justify; */
}

.listner-stories-card .profile {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.listner-stories-card .profile img {
    height: 5vh;
    border-radius: 50%;
}

.reviews {
    height: 40vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.reviews h1 {
    margin-bottom: 30px;
}

.card {
    background-color: #DBFFF7;
    height: 30vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border: 0 none;
}

.card-body {
    padding-left: 20%;
    padding-right: 20%;
}

.carousel-indicators .active {
    background-color: #0061EF;
}

.carousel-control-prev-icon {
    background-color: black;
}

.carousel-control-next-icon {
    background-color: black;
}

.faq {
    background-color: #FFFBD4;
    margin-top: 30px;
}

.faq h1 {
    text-align: center;
    padding-top: 30px;
}

.accordion-button {
    background-color: #FFFBD4;
}

.accordion-button:not(.collapsed) {
    background-color: #FFFBD4;
}

.accordion-button:hover {
    background-color: #FFFBD4;
}

.accordion-body {
    background-color: #FFFBD4;
    color: #000;
}

.footer {
    margin-top: 2vh;
}

.footer div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 10px;
}

.footer div a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
}

@media (max-width: 768px) {
    header {
        height: 35vh;
        width: 100%;
    }

    header .vector {
        flex-direction: column;
        text-align: center;
        height: 35vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    header .vector .download {
        height: 5vh;
        width: 200px;
        background-color: #7AD6C1;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 10px;
        padding-bottom: 10px;
        color: #fff;
        border-radius: 2.5vh;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
    }

    header .vector .download:hover {
        cursor: pointer;
    }

    header .vector .cover-img {
        display: none;
    }

    header .vector .content {
        width: 100%;
        padding: 20%;
    }

    .join-us {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .join-us .join-us-card {
        height: 40vh;
        width: 100%;
    }

    .join-us .join-us-card .img {
        height: 8vh;
        width: 8vh;
    }

    /* .listner-stories-cards {
        overflow-x: scroll;
        gap: 10px;
    }

    .listner-stories-card {
        min-width: 80%;
        scroll-snap-align: center;
    }

    .listner-stories-cards {
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    } */

    .listners-stories {
        background-color: #FFFBD4;
    }

    .listner-stories-cards {
        display: flex;
        flex-direction: row;
        justify-content: left;
        align-items: center;
        gap: 10px;
        height: 50vh;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        overflow: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
        margin-left: 10px;
        margin-right: 10px;
    }

    .listner-stories-cards::-webkit-scrollbar {
        display: none;
    }

    .listner-stories-card {
        min-width: 80%;
        height: 48vh;
        background-color: #F9F5F6;
        font-family: "Poppins", sans-serif;
        border-radius: 8px;
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.6);
        padding: 20px;
    }

    .listner-stories-card p {
        height: 35vh;
        /* text-align: justify; */
    }

    .reviews {
        height: 50vh;
        width: 100vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 30px;
    }

    .card {
        background-color: #DBFFF7;
        height: 40vh;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        border: 0 none;
    }

    .card-body {
        padding-left: 10%;
        padding-right: 10%;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .card-body-text {
        width: 100%;
        text-align: 'justify';
    }

}