/* -----RESET STYLE------ */
@import url(reset.css);
/* -----HEADER STYLE----- */
@import url(header.css);
/* -----FOOTER STYLE----- */
@import url(footer.css);

/* ----------- */
body {
    font-family: Montserrat;
    font-size: 18px;
}

/* ----------- */
.wrapper {
    min-height: 100%;
    overflow: clip;
    display: flex;
    flex-direction: column;
}

/* ----------- */
[class*="__container"] {
    max-width: 1280px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

/* --------------- */
.bg_img {
    background-image: url("../Images/background.png");
    height: 730px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 112px;
    right: 0;
    background-position: right;
    z-index: -1;
}

/* ----------- */
.page {
    flex: 1 1 auto;
    padding-top: 85px;
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: block;
    flex-shrink: 0;
}

.main {
    padding-top: 93px;
    padding-bottom: 98px;
    border-bottom: 1px solid rgba(238, 238, 238, 0.1);
}

.main__container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.main__content {
    flex: 1 1 auto;
    padding-right: 20px;
    padding-top: 70px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.main__text {
    color: var(--primary-color, #FC724D);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.1px;
}

.main__title {
    color: var(--text-color, #252B42);
    font-family: Montserrat;
    font-size: 58px;
    font-style: normal;
    font-weight: 700;
    line-height: 80px;
    letter-spacing: 0.2px;
}

.main__p {
    color: var(--second-text-color, #737373);
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.2px;
}

.main__buttons {
    display: flex;
    align-items: center;
    border-radius: 5px;
    display: flex;
    gap: 10px;
}

.button {
    display: flex;
    padding: 15px 40px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    text-align: center;
    padding: 10px 32px;
    background: var(--primary-color, #FC724D);
    color: var(--colour-secondary-white-100-general, #FFF);
    color: var(--light-text-color, #FFF);
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0.2px;
}

.button_dark {
    display: flex;
    text-align: center;
    padding: 15px 40px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 32px;
    border-radius: 5px;
    border: 1px solid var(--primary-color, #FC724D);
    color: var(--primary-color, #FC724D);
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0.2px;
}

@media screen and (min-width: 150px) and (max-width: 835px) {
    .main__title {
        font-size: 36px;
        line-height: 40px;
    }

    .main__p {
        font-size: 15px;
        line-height: 25px;
    }

    .main__container {
        display: flex;
    }

    .main__content {
        padding-top: 70px;
    }
}


/* ----------------- */
.page__1 {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: left;
}

.page1 {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    padding-top: 50px;
    padding-bottom: 50px;
}

.page__1__container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-top: 160px;
    flex-direction: column;
    align-items: flex-start;
    gap: 112px;
    flex-shrink: 0;
}

.page__1__content {
    flex: 1 1 auto;
    padding-right: 20px;
    display: flex;
    justify-content: left;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.page__1__row {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
}

.page__1__text {
    color: var(--primary-text-color, #FC724D);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.2px;
}

.page__1__title {
    color: var(--text-color, #252B42);
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 0.2px;
}

.page__1__p {
    color: var(--second-text-color, #737373);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.2px;
}

.page__1__row1 {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    align-self: stretch;
}


@media screen and (min-width: 150px) and (max-width: 319px) {
    .page__1__row1 {
        display: inline-grid;
        gap: 50px;
    }

    .col-md-3 {
        display: grid;
        align-items: center;
    }
}

@media screen and (min-width: 320px) and (max-width: 375px) {
    .page__1__row1 {
        display: inline-grid;
        gap: 50px;
    }

    .col-md-3 {
        display: grid;
        align-items: center;
    }
}

@media screen and (min-width: 375px) and (max-width: 426px) {
    .page__1__row1 {
        display: inline-grid;
        gap: 50px;
    }

    .col-md-3 {
        display: grid;
        align-items: center;
    }
}

@media screen and (min-width: 426px) and (max-width: 501px) {
    .page__1__row1 {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Two columns */
        gap: 40px; /* Gap between cards */
    }
}


@media screen and (min-width: 500px) and (max-width: 840px) {
    .page__1__row1 {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Two columns */
        gap: 40px; /* Gap between cards */
    }
}


.col-md-3 {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.card {
    display: flex;
    padding: 35px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    background: var(--light-background-color, #FFF);
    box-shadow: 0px 13px 19px 0px rgba(0, 0, 0, 0.07);
}

.card:hover {
    box-shadow: 0px 13px 19px 0px rgba(1, 0, 0);
    background: var(--primary-color, #FC724D);

    .hr {
        width: 60px;
        height: 4px;
        background: var(--light-background-color, #FFF);
    }

    .card_text {
        font-size: 18px;
        color: var(--light-text-color, #FFF);
    }

    .card_p {
        font-size: 16px;
        color: var(--light-text-color, #FFF);
    }
}

.card_text {
    color: var(--text-color, #252B42);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.1px;
}

.hr {
    width: 50px;
    height: 3px;
    background: var(--danger-color, #E74040);
}

.card_p {
    color: var(--second-text-color, #737373);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.2px;
}



/* ----------------- */
.page__2 {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: left;
}

.page2 {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    padding-top: 50px;
    padding-bottom: 50px;
}

.page__2__container {
    display: flex;
    width: 100%;
    padding-top: 160px;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.page__2__row {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 30px;
    align-self: stretch;
}

.page__2__content {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
}

.hr2 {
    width: 94px;
    height: 7px;
    background: var(--danger-color, #E74040);
}

.page__2__title {
    color: var(--text-color, #252B42);
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 0.2px;
}

.page__2__text {
    color: var(--second-text-color, #737373);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.2px;
}

.a-sec {
    display: flex;
    align-items: center;
    gap: 10px;
}

.a {
    color: var(--primary-text-color, #FC724D);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.2px;
}

.ri-arrow-right-line {
    width: 9px;
    height: 16px;
    color: #FC724D;
}

.page__2__vid {
    display: flex;
    width: 100%;
    align-items: flex-start;
}

.video_card {
    height: 100%;
    flex: 1 0 0;
    background: var(--light-background-color, #FFF);
}

.media_bg-cover {
    width: 100%;
    height: 400px;
    flex-shrink: 0;
    background: url("../Images/col-md-6.png"), lightgray 50% / cover no-repeat;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
}

.vid-btn {
    display: none;
    padding: 34.8px 36.8px;
    align-items: center;
    border-radius: 73.6px;
    background: var(--primary-color, #FC724D);
}

@media screen and (min-width: 150px) and (max-width: 319px) {
    .page__2__row {
        flex-direction: column;
    }

    .media_bg-cover {
        width: 250px;
        height: 250px;
    }
}

@media screen and (min-width: 320px) and (max-width: 376px) {
    .page__2__row {
        flex-direction: column;
    }

    .media_bg-cover {
        width: 350px;
        height: 250px;
    }
}

@media screen and (min-width: 376px) and (max-width: 426px) {
    .page__2__row {
        flex-direction: column;
    }

    .media_bg-cover {
        width: 390px;
        height: 350px;
    }
}

@media screen and (min-width: 426px) and (max-width: 600px) {
    .page__2__row {
        flex-direction: column;
    }
}

@media screen and (min-width: 600px) and (max-width: 769px) {
    .page__2__row {
        flex-direction: column;
    }
}

@media screen and (min-width: 769px) and (max-width: 825px) {
    .page__2__row {
        flex-direction: column;
    }
}

/* ----------------- */
.page__3 {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: left;
}

.page3 {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    padding-top: 50px;
    padding-bottom: 50px;
}

.page__3__container {
    display: flex;
    width: 100%;
    padding-top: 160px;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.page__3__row {
    display: flex;
    width: 100%;
    gap: 80px;
    justify-content: space-between;
    align-items: center;
}

.page__3__img img {
    height: 600px;
    width: 580px;
}

.page__3__content {
    display: flex;
    /* width: 100%; */
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
    flex-shrink: 0;
}

.page__3__title {
    color: var(--text-color, #252B42);
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 0.2px;
}

.page__3__text {
    color: var(--second-text-color, #737373);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.2px;
}

@media screen and (min-width: 150px) and (max-width: 321px) {
    .page__3__row {
        display: inline-grid;
        padding-left: 5px;
        gap: 50px;
    }

    .page__3__img img {
        height: 300px;
        width: 280px;
    }
}

@media screen and (min-width: 321px) and (max-width: 376px) {
    .page__3__row {
        display: inline-grid;
        padding-left: 5px;
        gap: 50px;
    }

    .page__3__img img {
        height: 400px;
        width: 350px;
    }
}

@media screen and (min-width: 376px) and (max-width: 426px) {
    .page__3__row {
        display: inline-grid;
        padding-left: 5px;
        gap: 50px;
    }

    .page__3__img img {
        height: 400px;
        width: 380px;
    }
}

@media screen and (min-width: 426px) and (max-width: 769px) {
    .page__3__row {
        width: 100%;
        display: inline-grid;
    }

    .page__3__img img {
        height: 400px;
        width: 380px;
    }
}

@media screen and (min-width: 769px) and (max-width: 825px) {
    .page__3__row {
        width: 100%;
        display: inline-grid;
        gap: 50px;
    }
}

@media screen and (min-width: 825px) and (max-width: 960px) {
    .page__3__img img {
        height: 400px;
        width: 380px;
    }
}

/* ---------------- */
.page__4 {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: left;
}

.page4 {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    padding-top: 50px;
    padding-bottom: 50px;
}

.page__4__container {
    display: flex;
    width: 100%;
    padding-top: 160px;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    gap: 112px;
}

.page__4__row {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.page__4__content {
    display: flex;
    width: 691px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.page__4__text {
    color: var(--primary-text-color, #FC724D);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.2px;
}

.page__4__title {
    color: var(--text-color, #252B42);
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 0.2px;
}

.page__4__p {
    color: var(--second-text-color, #737373);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.2px;
}

.page__4__row1 {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
    align-self: stretch;
}

@media screen and (min-width: 150px) and (max-width: 321px) {
    .page__4__row1 {
        display: inline-grid;
        gap: 50px;
    }

    .col_md_3 {
        display: grid;
        align-items: center;
    }
}

@media screen and (min-width: 321px) and (max-width: 376px) {
    .page__4__row1 {
        display: inline-grid;
        gap: 50px;
    }

    .col_md_3 {
        display: grid;
        align-items: center;
    }
}

@media screen and (min-width: 376px) and (max-width: 470px) {
    .page__4__row1 {
        display: inline-grid;
        gap: 50px;
    }

    .col_md_3 {
        display: grid;
        align-items: center;
    }
}

@media screen and (min-width: 470px) and (max-width: 769px) {
    .page__4__row1 {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Two columns */
        gap: 40px; /* Gap between cards */
    }
}

@media screen and (min-width: 768px) and (max-width: 920px) {
    .page__4__row1 {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Two columns */
        gap: 40px; /* Gap between cards */
    }
}


.col_md_3 {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.product_card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    background: var(--light-background-color, #FFF);
    box-shadow: 0px 13px 19px 0px rgba(0, 0, 0, 0.07);
}

.product_card:hover {
    box-shadow: 0px 13px 19px 0px rgb(255, 0, 0);
}

.fixed-height1 {
    padding-left: 15px;
    padding-top: 15px;
    height: 300px;
    align-self: stretch;
    width: 100%;
    height: 300px;
    flex-shrink: 0;
    background: url("../Images/Product/p1.png"), lightgray 50% / cover no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
}

.tag-sec {
    display: inline-flex;
    padding: 0px 10px;
    align-items: center;
    border-radius: 3px;
    background: var(--danger-color, #E74040);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.10);
}

.tag {
    color: var(--light-text-color, #FFF);
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.2px;
    box-sizing: content-box;
}

.product-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding-top: 200px;
    padding-left: 55px;
}

.like {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 44.786px;
    background: var(--light-background-color, #FFF);
}

.basket {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 44.786px;
    background: var(--light-background-color, #FFF);
}

.eye {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 44.786px;
    background: var(--light-background-color, #FFF);
}

.frame1 {
    display: flex;
    padding: 10px 10px 35px 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.frame2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.frame3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.link1 {
    color: var(--primary-text-color, #FC724D);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.2px;
    padding-right: 55px;
}

.frame4 {
    display: flex;
    padding: 5px;
    align-items: center;
    gap: 5px;
    border-radius: 20px;
    background: var(--dark-background-color, #26335D);
}

.ri-star-fill {
    width: 16px;
    height: 16px;
    color: #FFCE31;
}

.small {
    color: var(--light-text-color, #FFF);
    font-family: Montserrat;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.2px;
}

.product_title {
    color: var(--text-color, #252B42);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 150% */
    letter-spacing: 0.1px;
}

.product_p {
    color: var(--second-text-color, #737373);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.2px;
}

.sales {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ri-download-2-line {
    width: 16px;
    height: 16px;
    color: #737373;
}

.s {
    color: var(--second-text-color, #737373);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.2px;
}

.prices {
    display: flex;
    padding: 5px 3px;
    align-items: flex-start;
    gap: 5px;
}

.price1 {
    color: var(--muted-color, #BDBDBD);
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.1px;
}

.price2 {
    color: var(--secondary-color-1, #0061FF);
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.1px;
}

.btn_sm {
    display: flex;
    padding: 10px 20px;
    align-items: center;
    gap: 10px;
    border-radius: 37px;
    border: 1px solid var(--primary-color, #FC724D);
}

.t {
    color: var(--primary-color, #FC724D);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.2px;
}

.ri-arrow-right-s-line {
    width: 10px;
    height: 16px;
    color: #FC724D;
}

.fixed-height2 {
    padding-left: 15px;
    padding-top: 15px;
    height: 300px;
    align-self: stretch;
    width: 100%;
    height: 300px;
    flex-shrink: 0;
    background: url("../Images/Product/p2.png"), lightgray 50% / cover no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
}

.fixed-height3 {
    padding-left: 15px;
    padding-top: 15px;
    height: 300px;
    align-self: stretch;
    width: 100%;
    height: 300px;
    flex-shrink: 0;
    background: url("../Images/Product/p3.png"), lightgray 50% / cover no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
}

.fixed-height4 {
    padding-left: 15px;
    padding-top: 15px;
    height: 300px;
    align-self: stretch;
    width: 100%;
    height: 300px;
    flex-shrink: 0;
    background: url("../Images/Product/p4.png"), lightgray 50% / cover no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
}

.link2 {
    color: var(--primary-text-color, #FC724D);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.2px;
    padding-right: 65px;
}

.link3 {
    color: var(--primary-text-color, #FC724D);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.2px;
    padding-right: 100px;
}

.link4 {
    color: var(--primary-text-color, #FC724D);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.2px;
    padding-right: 60px;
}


/* ---------------- */
.page__5 {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: left;
}

.page5 {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    padding-top: 50px;
    padding-bottom: 50px;
}

.page__5__container {
    display: flex;
    width: 100%;
    padding-top: 160px;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    gap: 112px;
}

.page__5__row {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.page__5__content {
    display: flex;
    width: 691px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.page__5__text {
    color: var(--primary-text-color, #FC724D);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.2px;
}

.page__5__title {
    color: var(--text-color, #252B42);
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 0.2px;
}

.page__5__p {
    color: var(--second-text-color, #737373);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.2px;
}

.page__5__row1 {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
}

@media screen and (min-width: 150px) and (max-width: 319px) {
    .page__5__row1 {
        display: inline-grid;
        padding-left: 5px;
        gap: 50px;
    }

    .col-md-6 {
        display: grid;
        align-items: center;
    }
}

@media screen and (min-width: 320px) and (max-width: 376px) {
    .page__5__row1 {
        display: inline-grid;
        padding-left: 5px;
        gap: 50px;
    }

    .col-md-6 {
        display: grid;
        align-items: center;
    }
}

@media screen and (min-width: 376px) and (max-width: 426px) {
    .page__5__row1 {
        display: inline-grid;
        padding-left: 5px;
        gap: 50px;
    }

    .col-md-6 {
        display: grid;
        align-items: center;
    }
}

.col-md-6 {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.testimonials_card {
    display: flex;
    padding: 25px 25px 0px 25px;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    background: var(--light-background-color, #fff);
    box-shadow: 0px 13px 19px 0px rgba(0, 0, 0, 0.07);
}

.testimonials_card:hover {
    box-shadow: 0px 13px 19px 0px rgb(1, 30, 255);
}

.circle-sec {
    display: flex;
    width: 128px;
    height: 128px;
    justify-content: center;
    align-items: center;
    border-radius: 200px;
}

.circle-sec img {
    border-radius: 200px;
}

.tcard__content {
    display: flex;
    padding: 30px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    align-self: stretch;
}

.tcard_p {
    color: var(--second-text-color, #737373);
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.2px;
}

.star-sec {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    color: #F3CD03;
}

.f1-sec {
    display: flex;
    padding: 0px 25px;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.user-title {
    color: var(--text-color, #252B42);
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.1px;
}

.user-p {
    color: var(--second-text-color, #737373);
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.2px;
}


/* ---------------- */
.page__6 {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: left;
}

.page6 {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    padding-top: 50px;
    padding-bottom: 50px;
}

.page__6__container {
    display: flex;
    width: 100%;
    padding-top: 160px;
    flex-direction: column;
    align-items: left;
    flex-shrink: 0;
    gap: 112px;
}

.page__6__content {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.page__6__text {
    color: var(--primary-text-color, #FC724D);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.2px;
}

.page__6__title {
    color: var(--text-color, #252B42);
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 0.2px;
}

.page__6__p {
    color: var(--second-text-color, #737373);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.2px;
}

.page__6__row1 {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
}

@media screen and (min-width: 150px) and (max-width: 319px) {
    .page__6__row1 {
        display: inline-grid;
        padding-left: 5px;
        gap: 50px;
    }

    .col_md-3 {
        display: grid;
        align-items: center;
    }
}

@media screen and (min-width: 320px) and (max-width: 376px) {
    .page__6__row1 {
        display: inline-grid;
        padding-left: 5px;
        gap: 50px;
    }

    .col_md-3 {
        display: grid;
        align-items: center;
    }
}

@media screen and (min-width: 376px) and (max-width: 426px) {
    .page__6__row1 {
        display: inline-grid;
        padding-left: 5px;
        gap: 50px;
    }

    .col_md-3 {
        display: grid;
        align-items: center;
    }
}

@media screen and (min-width: 426px) and (max-width: 530px) {
    .page__6__row1 {
        display: inline-grid;
        padding-left: 5px;
        gap: 50px;
    }

    .col_md-3 {
        display: grid;
        align-items: center;
    }
}

@media screen and (min-width: 529px) and (max-width: 769px) {
    .page__6__row1 {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Two columns */
        gap: 40px; /* Gap between cards */
    }
}

@media screen and (min-width: 769px) and (max-width: 1080px) {
    .page__6__row1 {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Two columns */
        gap: 40px; /* Gap between cards */
    }
}

.col_md-3 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.user_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    border-radius: 20px;
    background: var(--light-background-color, #FFF);
    box-shadow: 0px 13px 19px 0px rgba(0, 0, 0, 0.07);
}

.user_card:hover {
    box-shadow: 0px 13px 19px 0px rgb(238, 255, 0);
}

.user_fixed_height img {
    display: flex;
    height: 231px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-radius: 20px 20px 0px 0px;
}

.ucard__content {
    display: flex;
    width: 232px;
    padding: 30px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.ucard-title {
    color: var(--text-color, #252B42);
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.1px;
}

.Profession {
    color: var(--second-text-color, #737373);
    text-align: center;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.2px;
}

.social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: #FC724D;
}


/* ---------------- */
.page__7 {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: left;
}

.page7 {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    padding-top: 50px;
    padding-bottom: 50px;
}

.page__7__container {
    display: flex;
    width: 100%;
    padding: 160px 0px;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    flex-shrink: 0;
}

.page__7__row {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.page__7__content {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.page__7__text {
    color: var(--primary-text-color, #FC724D);
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.2px;
}

.page__7__title {
    color: var(--text-color, #252B42);
    text-align: center;
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 0.2px;
}

.page__7__p {
    color: var(--second-text-color, #737373);
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.2px;
}

.page__7__row1 {
    display: flex;
    width: 688px;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.col-md-8 {
    display: flex;
    width: 688px;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.subscribe {
    display: flex;
    width: 688px;
    height: 58px;
    justify-content: center;
    align-items: center;
}

.input-group {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    display: flex;
}

.form-control {
    display: flex;
    width: 100%;
    padding: 15px 40px 15px 20px;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #E6E6E6;
    background: #F9F9F9;
}

@media screen and (min-width: 150px) and (max-width: 319px) {
    .input-group {
        flex-direction: column;
        width: 250px;
        height: 100px;
    }

    .btn {
        align-items: center;
    }
}

@media screen and (min-width: 320px) and (max-width: 376px) {
    .input-group {
        flex-direction: column;
        width: 350px;
        height: 100px;
    }

    .btn {
        align-items: center;
    }
}

@media screen and (min-width: 376px) and (max-width: 426px) {
    .input-group {
        flex-direction: column;
        width: 400px;
        height: 100px;
    }

    .btn {
        align-items: center;
    }
}

@media screen and (min-width: 426px) and (max-width: 700px) {
    .input-group {
        flex-direction: column;
        width: 480px;
        height: 100px;
    }

    .btn {
        align-items: center;
    }
}

.s_text {
    color: var(--second-text-color, #737373);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.2px;
}

.input-group-append {
    display: flex;
    width: 117px;
    height: 58px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.btn {
    display: flex;
    width: 117px;
    height: 58px;
    padding: 15px 22.5px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 0px 5px 5px 0px;
    border: 1px solid #E6E6E6;
    background: var(--primary-color, #FC724D);
}

.b_text {
    color: var(--light-text-color, #FFF);
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.2px;
}