* {
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: 'DMSans_18pt-Regular';
    width: 100%;
    height: 100%;
    background-color: #09090B;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --light_black: #1E1E20;
    --dark_black: #000002;
    --pink: #FA0365;
    --light_pink: #c2024e;

}

::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

::-webkit-scrollbar-track {
    background: var(--dark_blue);
}

/******************************* common_css *******************************/
h1,
h2,
h3,
h4,
h5,
h6,
ul,
p {
    margin: 0;
    padding: 0;
}

.cust_container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 15px;
}

.common_title {
    text-align: center;
    margin: auto;
}

.common_title h3 {
    color: var(--white);
    font-size: 50px;
    font-weight: 100;
}

.common_title h3 span {
    font-family: 'Inter-SemiBold';
    display: block;
}

.common_spacing {
    padding: 80px 0 60px;
}

/******************************* end_common_css *******************************/

/******************************* header *******************************/
.first_section {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    z-index: 100;
}
.hero_main{
    background: linear-gradient(to bottom, #1E1E20 0%, #000002 100%);
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    position: relative;
    z-index: 1;
}
.header {
    padding: 23px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header_menu a {
    font-family: 'DMSans_18pt-Medium';
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    font-size: 17px;
    margin: 0 34px 0 0;
    transition: all .5s;
}

.header_menu a:hover {
    color: var(--pink);
}

.download_btn {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.download {
    font-family: 'DMSans_18pt-Bold';
    display: inline-block;
    text-decoration: none;
    color: var(--white);
    background-color: var(--pink);
    padding: 13px 21px;
    border-radius: 10px;
    font-size: 18px;
    transition: all .5s;
}

.download:hover {
    background-color: var(--light_pink);
}

.toggle_btn {
    cursor: pointer;
    width: 25px;
    display: none;
    margin-left: 10px;
}

.close_menu {
    width: 40px;
    display: none;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 5px;
}

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    animation: smoothScroll 1s forwards;
    width: 100%;
    z-index: 1000;
    background-color: var(--light_black);
}

.fixed.new_landing_header{
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}

.header_menu_list a.active {
  color: var(--pink);
}
/******************************* end_header_css *******************************/


/******************************* hero_section_css *******************************/
.hero_main{
    padding: 150px 0 58px;
}
.hero_section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

}

.small_text_section {
    font-family: 'DMSans_18pt-Medium';
    padding: 11px 25px;
    background-color: #303030;
    border: 1px solid #6E6E6E;
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--white);
    font-size: 17px;
    border-radius: 30px;
    display: inline-block;
}

.small_text_section img {
    margin-right: 12px;
}

.hero_left_section {
    flex-grow: 1;
    flex-shrink: 0;
}

.hero_left_section h3 {
    font-weight: 100;
    color: var(--white);
    font-size: 70px;
    margin: 34px 0 20px 0;
    width: 100%;
    max-width: 653px;
    line-height: 1.2;
}

.font_bold {
    font-family: 'DMSans_18pt-Bold';
}

.hero_left_section p {
    font-family: 'Inter-Light-BETA';
    color: var(--white);
    font-size: 18px;
    width: 100%;
    max-width: 650px;
    opacity: 0.8;
    line-height: 1.5;
}

.get_app {
    margin: 35px 0;
}

.get_app a {
    display: inline-block;
    margin: 0 18px 0 0;
}

.rating_box {
    position: relative;
    padding-right: 28px;
}

.rating_box::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 60%;
    background-color: var(--white);
    transform: translate(0%, -50%);
}

.rating_box:last-child::after {
    content: none;
}

.rating_box h4 {
    font-family: 'DMSans_18pt-Bold';
    color: var(--white);
    font-size: 30px;
    margin-bottom: 3px;
}

.rating_box h5 {
    font-size: 16px;
    color: #ABABAB;
    font-weight: 100;
}

.rating_section {
    display: flex;
    flex-direction: row;
    column-gap: 52px;
}

.hero_right_section {
    position: relative;
}

.hero_right_section .mobile {
    width: 100%;
}

.white_fog_top {
    position: absolute;
    left: -30%;
    top: -30%;
    height: 100%;
    width: 100%;
}

/******************************* end_hero_section_css *******************************/


/******************************* second_section_css *******************************/
.second_section {
    width: 100%;
    background-color: #09090B;
}

.second_section_inner_content {
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 25px;
    row-gap: 10px;
}

.second_section_box {
    padding: 36px 30px;
    background-color: #212123;
    border: 1px solid #7B7B7C;
    border-radius: 20px;
    transition: all .5s;
    cursor: pointer;
}
.second_section_box:hover{
    margin-top: -10px;
    border: 1px solid var(--pink);
}

.second_box_content {
    text-align: center;
}

.second_box_content h4 {
    font-family: 'Inter-Light-BETA';
    font-size: 26px;
    color: var(--white);
    margin-bottom: 18px;
}

.second_box_content p {
    font-family: 'Inter-Light-BETA';
    font-size: 18px;
    color: var(--white);
    opacity: 0.7;
    line-height: 1.5;
}

.second_box_content img {
    margin-bottom: 20px;
    height: 90px;
}

/******************************* end_second_section_css *******************************/

/******************************* third_section_css *******************************/
.third_section {
    background-color: #131315;
}

.stramer_imgs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 25px;
    row-gap: 10px;
}

.stramer_imgs img {
    width: 100%;
}

.third_section_inner_content {
    margin-top: 45px;
}

/******************************* end_third_section_css *******************************/

/******************************* fourth_section_css *******************************/
.fourth_section {
    background-color: #0A0A0C;
    overflow-x: hidden;
}

.testimonial_box {
    background-color: #1C1C1E;
    border-radius: 10px;
}

.fourth_section_testimonail {
    margin-top: 50px;
}

.testimonial_box {
    margin: 0 26px 0 0;
}

.testimonial_content_box {
    padding: 40px 20px;
}

.testimonial_content_box h4 {
    font-family: 'Inter-Regular';
    color: var(--white);
    font-size: 18px;
    font-weight: 100;
}

.star_group {
    width: auto !important;
    margin: 16px 0;
}

.testimonial_content_box p {
    font-family: 'Inter-Light-BETA';
    font-size: 14px;
    color: var(--white);
    opacity: 0.7;
    line-height: 1.5;
}

.testimonial_box_footer {
    padding: 20px 25px;
    background-color: var(--pink);
    border-radius: 10px;
    border-bottom-right-radius: 0;
}

.testimonial_box_footer_content {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.testimonial_box_footer_content img {
    width: auto !important;
    margin-right: 12px;
}

.testimonial_box_footer_content h4 {
    font-family: 'Inter-Regular';
    color: var(--white);
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial_box_footer_content p {
    color: var(--white);
    font-size: 14px;
}

.quote_img {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(20%, -60%);
}

.quote_img img {
    width: auto !important;
}

.fourth_section .owl-carousel .owl-stage-outer {
    overflow: visible;
}
.fourth_section.common_spacing{
    padding-bottom: 0;
}
/******************************* end_fourth_section_css *******************************/


/******************************* fifth_section_css *******************************/
.fifth_section {
    background-color: #0A0A0C;
}



.accordion {
    max-width: 100%;
    margin: auto;
}

.accordion-item {
    background-color: #161617;
    border-radius: 12px;
    margin-bottom: 24px;
    overflow: hidden;
}

.accordion-header {
    font-family: 'Inter-Regular';
    padding: 18px 25px;
    cursor: pointer;
    font-size: 18px;
    position: relative;
    color: var(--white);
    background-color: #222223;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 20px;
    transition: transform 0.2s;
}

.accordion-item.active .accordion-header::after {
    content: '−';
}

.accordion-body {
    padding: 18px 25px;
    display: none;
    font-size: 14px;
    line-height: 1.6;
    color: var(--white);
    font-size: 16px;
    opacity: 0.7;
    background-color: #161617;
}
.fifth_section_content{
    margin-top: 45px;
}
/******************************* end_fifth_section_css *******************************/

/******************************* footer *******************************/
.footer_section{
    padding: 98px 0;
    background: #050507;
}
.footer_left_content h3{
    font-family: 'DMSans_18pt-Medium';
    font-weight: 100;
    color: var(--white);
    font-size: 42px;
    width: 100%;
    max-width: 523px;
}
.red_text{
    color: #E0353E;
}
.footer_left_content p{
    margin-top: 8px;
    color: var(--white);
    font-size: 18px;
    width: 100%;
    max-width: 473px;
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 22px;
}
.footer_right_content_box{
    background-color: #212123;
    border-radius: 20px;
    padding: 23px 23px;
}
.footer_content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.footer_right_content{
    display: flex;
    flex-direction: row;
    column-gap: 25px;
    row-gap: 10px;
}
.footer_right_content_box{
    width: 230px;
    position: relative;
}
.footer_right_content_box h3{
    font-family: 'DMSans_18pt-Bold';
    color: var(--white);
    font-size: 30px;
    font-weight: 100;
}
.footer_right_content_box h3 span{
    font-family: 'DMSans_18pt-Light';
    display: block;
    font-size: 22px;
}
.footer_right_content_box .download_app{
    display: inline-block;
    margin: 16px 0 22px;
    background-color: var(--pink);
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    color: var(--white);
    transition: all .5s;
}
.footer_right_content_box .qr{
    display: block;
}
.footer_right_content_box a:hover{
    background-color: var(--light_pink);
}
.icons img{
    position: absolute;
    bottom: 0;
    right: 0;
}
.sub_footer_main{
    background: #050507;
}
.sub_footer{
    padding: 20px 0;
    border-top: 1px solid #121214;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sub_footer h5{
    font-weight: 100;
    font-family: 'DMSans_18pt-Light';
    color: #E6E6E6;
    font-size: 18px;
}
.footer_menu a{
    color: #E6E6E6;
    text-decoration: none;
    margin: 0 0 0 30px;
    transition: all .5s;
}
.footer_menu a:hover{
    color: var(--pink);
}
/******************************* end_footer_css *******************************/


/******************************* responsive *******************************/
@media (max-width: 1399.98px) {
    .header {
        padding: 18px 0;
    }

    .header_menu a {
        margin: 0px 22px 0 0;
    }

    .download {
        padding: 10px 18px;
        border-radius: 8px;
        font-size: 16px;
    }

    .hero_left_section h3 {
        font-size: 60px;
        margin: 20px 0 16px 0;
    }

    .small_text_section {
        padding: 8px 22px;
    }

    .get_app {
        margin: 20px 0;
    }

    .common_spacing {
        padding: 60px 0 40px;
    }

    .common_title h3 {
        font-size: 45px;
    }

    .second_section_inner_content {
        margin-top: 30px;
    }

    .third_section_inner_content {
        margin-top: 30px;
    }
    .fifth_section_content {
        margin-top: 30px;
    }
    .accordion-item {
        margin-bottom: 18px;
    }
    .footer_section {
        padding: 80px 0;
    }
    .hero_main {
        padding: 130px 0 58px;
    }
}

@media (max-width: 1199.98px) {
    .header {
        padding: 14px 0;
    }

    .header_menu a {
        margin: 0px 16px 0 0;
        font-size: 16px;
    }

    .hero_section {
        padding: 30px 0;
    }

    .small_text_section {
        padding: 8px 12px;
    }

    .hero_left_section h3 {
        font-size: 55px;
        max-width: 500px;
    }

    .hero_left_section p {
        max-width: 600px;
        font-size: 16px;
    }

    .get_app img {
        width: 180px;
    }

    .get_app a {
        margin: 0 10px 0 0;
    }

    .common_spacing {
        padding: 40px 0 30px;
    }

    .second_section_inner_content {
        margin-top: 20px;
    }

    .common_title h3 {
        font-size: 40px;
    }

    .second_section_inner_content {
        column-gap: 14px;
    }

    .second_section_box {
        padding: 18px 10px;
    }

    .second_box_content img {
        margin-bottom: 10px;
        height: 80px;
    }

    .second_box_content h4 {
        font-size: 22px;
    }

    .second_box_content p {
        font-size: 16px;
    }

    .third_section_inner_content {
        margin-top: 20px;
    }

    .testimonial_box {
        margin: 0 10px 0 0;
    }
    .fifth_section_content {
        margin-top: 20px;
    }
    .accordion-header{
        padding: 14px 15px;
        font-size: 16px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    .accordion-item {
        margin-bottom: 10px;
    }
    .accordion-body {
        padding: 14px 15px;
    }
    .footer_section {
        padding: 60px 0;
    }
    .footer_section .rating_box {
        padding-right: 15px;
    }
    .footer_right_content_box {
        width: 190px;
    }
    .icons img {
        width: 80px;
    }
    .hero_main {
        padding: 80px 0 40px;
    }
}

@media (max-width: 991.98px) {
    .toggle_btn {
        display: inline-block;
    }

    .header_menu {
        position: fixed;
        top: 0;
        left: -200%;
        width: 380px;
        height: 100vh;
        background-color: var(--black);
        padding-top: 40px;
        white-space: nowrap;
        transition: all .5s;
        z-index: 1000;
    }

    .header_menu a {
        display: block;
        padding: 10px;
        border-bottom: 1px solid #191818;
        margin: 0;
    }

    .header_menu a:last-child {
        border-bottom: 0;
    }

    .close_menu {
        display: inline-block;
    }

    .hero_section {
        flex-direction: column;
        align-items: center;
    }

    .hero_left_section {
        text-align: center;
        position: relative;
        z-index: 100;
    }

    .hero_left_section h3 {
        margin: 20px auto;
        font-size: 45px;
        max-width: 600px;
    }

    .get_app img {
        width: 160px;
    }

    .hero_right_section {
        margin-top: 30px;
    }

    .common_spacing {
        padding: 20px 0 20px;
    }

    .second_section_inner_content {
        grid-template-columns: repeat(2, 1fr);
    }

    .common_title h3 {
        font-size: 34px;
    }

    .second_section_box {
        padding: 12px 10px;
        border-radius: 10px;
    }

    .second_box_content img {
        height: 70px;
    }

    .stramer_imgs {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 10px;
    }

    .testimonial_box {
        margin: 0 10px 0 0;
    }

    .testimonial_box_footer {
        padding: 12px 10px;
    }

    .fourth_section_testimonail {
        margin-top: 40px;
    }

    .testimonial_content_box {
        padding: 30px 10px 10px;
    }
    .footer_content{
        flex-direction: column;
    }
    .footer_section {
        padding: 30px 0;
    }
    .footer_left_content h3{
        text-align: center;
        margin: auto;
        font-size: 34px;
    }
    .footer_left_content p{
        margin: 20px auto;
        text-align: center;
    }
    .footer_right_content{
        margin-top: 20px;
    }
    .footer_menu a {
        margin: 0 0 0 10px;
    }
    .sub_footer {
        padding: 14px 0;
    }
}

@media (max-width: 575.98px) {
    .download {
        padding: 8px 16px;
        font-size: 16px;
    }

    .header_logo img {
        width: 160px;
    }


    .small_text_section {
        font-size: 16px;
    }

    .hero_left_section h3 {
        margin: 12px auto;
        font-size: 34px;
        max-width: 500px;
    }

    .get_app {
        margin: 16px 0;
    }

    .get_app img {
        width: 140px;
    }

    .get_app a {
        margin: 0 5px 0 0;
    }

    .rating_section {
        column-gap: 30px;
        justify-content: center;
    }

    .rating_box h4 {
        font-size: 24px;
    }

    .hero_right_section {
        text-align: center;
    }

    .hero_right_section .mobile {
        width: 60%;
    }

    .white_fog_top {
        left: -20%;
        top: -20%;
        height: 80%;
    }

    .second_section_inner_content {
        grid-template-columns: repeat(1, 1fr);
    }

    .common_title h3 {
        font-size: 28px;
    }
    .accordion-item {
        border-radius: 8px;
    }
    .accordion-body {
        font-size: 14px;
    }
    .footer_section {
        padding: 20px 0;
    }
    .footer_left_content h3 {
        font-size: 28px;
        max-width: 400px;
    }
    .footer_right_content_box {
        border-radius: 10px;
        padding: 10px 10px;
        width: 100%;
    }
    .footer_right_content_box h3 {
        font-size: 26px;
    }
    .icons img {
        width: 60px;
    }
    .footer_right_content_box .download_app {
        margin: 12px 0 10px;
    }
    .footer_right_content{
        width: 100%;
    }
    .footer_right_content_box {
        border-radius: 6px;
    }
    .footer_right_content_box h3 {
        font-size: 22px;
    }
    .footer_right_content_box h3 span {
        font-size: 18px;
    }
    .footer_right_content_box .download_app {
        margin: 8px 0 10px;
    }
    .footer_right_content_box .download_app{
        padding: 7px 18px;
    }
    .footer_right_content_box .qr{
        width: 50px;
    }
    .footer_right_content {
        column-gap: 16px;
    }
    .sub_footer{
        flex-direction: column;
    }
    .footer_menu{
        margin-top: 10px;
    }
    .sub_footer h5{
        font-size: 16px;
    }
    .hero_main {
        padding: 60px 0 40px;
    }
    .hero_main {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
}

@media (max-width: 425.98px) {
  
    .small_text_section {
        padding: 6px 10px;
    }

    .hero_left_section h3 {
        margin: 12px auto;
        font-size: 28px;
    }

    .hero_left_section p {
        font-size: 14px;
    }

    .rating_box {
        padding-right: 10px;
    }

    .rating_box h4 {
        font-size: 18px;
    }

    .rating_box h5 {
        font-size: 14px;
    }
}

/******************************* end_responsive_css *******************************/