:root {
    --body-text-color: #505056;
    --body-default-color: #ff3e66;
    --body-font-family: roboto, sans-serif;
    --section-bg-color: #eef1f6;
    --heading-text-color: #0e1133;
    --card-bg-color: #ffffff;
    --border-color: #e7eaef;
    --form-bg: #f5f5f7l;
    --button-bg-color: #ff3e66;
    --button-bg-text-color: #ffffff;
    --button-border-color: #e7eaef;
    --button-text-color: #0e1133;
}
body {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-family: var(--body-font-family);
    color: var(--body-text-color);
    margin: 0;
    padding: 0;
}
a, a:hover {
    text-decoration: none;
    color: var(--body-default-color);
    display: inline-block;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--body-font-family);
    color: var(--heading-text-color);
    font-weight: 900;
    margin: 0 0 15px;
    clear: both;
    line-height: 1.1;
    text-transform: capitalize;
}
h1,.h1 {
    font-size: 48px
}
h2,.h2 {
    font-size: 40px
}
h3,.h3 {
    font-size: 34px;
}
h4,.h4 {
    font-size: 28px
}
h5,.h5 {
    font-size: 24px
}
h6,.h6 {
    font-size: 22px
}
p {
    margin: 0 0 15px
}
p:last-child {
    margin-bottom: 0;
}
img {
    max-width: 100%;
}
::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}
:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}
::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}
::placeholder {
    color: inherit;
    opacity: 1;
}
input:focus, textarea:focus, select:focus, button:focus {
    border: none;
    outline: none;
    box-shadow: none;
}
.form_group {
    position: relative;
    margin-top: 15px;
}
.form_group label {
    font-size: 0.875rem;
    color: var(--heading-text-color);
    display: block;
    position: relative;
    font-weight: 700;
    margin-bottom: 5px;
}
.form_group input,
.form_group textarea,
.form_group select {
    width: 100%;
    border: none;
    background-color: var(--form-bg);
    padding: 15px 20px;
    outline: none;
    font-size: 14px;
    color: var(--body-text-color);
    display: block;
    font-weight: 400;
    min-height: auto !important;
    border-radius: 0 !important;
}
.form_group_chechbox,
.form_group_input,
.form_group_btns {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0 15px;
}
.form_group_chechbox input {
    width: 30px;
    height: 30px;
}
.form_group_button {
    margin-top: 30px;
}
.form_group_btns input {
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    color: var(--body-text-color);
}
ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}
li {
    text-decoration: none !important;
}
.button_main {
    font-size: 13px;
    line-height: 20px;
    padding: 10px 30px;
    letter-spacing: 1px;
    background-color: var(--button-bg-color);
    color: var(--button-bg-text-color);
    font-weight: 700;
    border: 2px solid transparent;
    border-radius: 50px;
    outline: none;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all .2s ease-in;
    font-family: var(--body-font-family);
    text-transform: uppercase;
}
.button_main:hover {
    background-color: transparent;
    color: var(--button-bg-color);
    border-color: var(--button-bg-color);
}

.buttonmain {
    font-size: 13px;
    line-height: 20px;
    padding: 10px 30px;
    letter-spacing: 1px;
    background-color: transparent;
    color: var(--button-text-color);
    font-weight: 700;
    border: 2px solid var(--button-border-color);
    border-radius: 50px;
    outline: none;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all .2s ease-in;
    font-family: var(--body-font-family);
    text-transform: uppercase;
}
.buttonmain:hover {
    background-color: var(--button-bg-color);
    color: var(--button-bg-text-color);
    border-color: var(--button-bg-color);
}
section {
    padding: 70px 0;
    position: relative;
}
.main_wrapper {
    position: relative;
    z-index: 9;
}
.card_box {
    background-color: var(--card-bg-color);
    position: relative;
    z-index: 99;
    padding: 30px;
    width: 100%;
    border-radius: 15px;
    margin: 15px 0;
    border: 1px solid var(--border-color);
    transition: all .3s ease-out 0s;
}
.card_box:hover {
    box-shadow: 0 -3px 0 0 rgba(234, 76, 137, .004), 0 40px 40px 0 rgba(14, 17, 51, .1);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}
.section_bg {
    background-color: var(--section-bg-color);
}


.header_wrapp {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    z-index: 999999;
    transition: all 0.3s ease-in-out;
}
.header_wrapp.sticky {
    position: fixed;
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, .058);
    background-color: var(--button-bg-text-color);
    -webkit-animation: sticky 1.2s;
    animation: sticky 1.2s;
}
.header_main {
    justify-content: center;
    align-items: center;
    padding: 0;
}
.header_main .header_menu {
    align-items: center;
    justify-content: center;
}
.header_main .header_menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.header_main .header_menu ul li {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0.8px;
}
.header_main .header_menu ul li a {
    color: var(--heading-text-color);
}
.header_main .header_menu ul li.active a {
    color: var(--body-default-color);
}

.main_wrapper {
    position: relative;
}

.hero_banner_wrapp {
    padding-top: 250px;
    padding-bottom: 170px;
    background-color: var(--section-bg-color);
    position: relative;
    overflow: hidden;
    z-index: 10;
    height: 100vh;
}
.hero_banner_bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
}
.hero_banner_content {
    position: relative;
    z-index: 9;
}
.hero_banner_content h1 {
    font-size: 60px;
    margin-bottom: 30px;
    font-weight: 700;
}
.hero_banner_content h1 span {
    font-weight: 900;
}
.hero_banner_content p {
    font-size: 24px;
}
.hero_banner_btns ul {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: start;
}
.hero_banner_btns {
    margin-top: 50px;
}
.hero_banner_btns ul li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 30px;
    border: 2px solid var(--heading-text-color);
    border-radius: 15px;
    transition: all .3s linear;
}
.hero_banner_btns ul li.ios_btns a {
    background-color: var(--button-text-color);
    color: var(--button-bg-text-color);
}
.hero_banner_btns ul li .apps_content h6 {
    margin: 0;
}
.hero_banner_btns ul li a .apps_content span {
    color: var(--body-text-color);
    font-weight: 600;
}
.hero_banner_btns ul li .apps_icon {
    font-size: 40px;
    color: var(--heading-text-color);
}
.hero_banner_btns ul li.ios_btns .apps_icon,
.hero_banner_btns ul li.ios_btns .apps_content span,
.hero_banner_btns ul li.ios_btns .apps_content h6 {
    color: var(--button-bg-text-color);
}

.hero_banner_form {
    max-width: 450px;
    width: 100%;
    background-color: var(--button-bg-text-color);
    box-shadow: -3px 0 0 0 rgba(255, 62, 102, .004), 0 30px 30px 0 rgba(14, 17, 51, .1);
    border-radius: 50px;
    padding: 10px 20px;
    margin-top: 50px;
    border-left: 3px solid var(--body-default-color);
    border-right: 3px solid var(--body-default-color);
}
.hero_banner_form .form_group {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
}
.hero_banner_form .form_group span {
    font-size: 24px;
    color: var(--heading-text-color);
}
.hero_banner_form .form_group button {
    padding: 0;
    border: none;
    background-color: transparent;
    font-weight: 900;
    height: auto !important;
    line-height: 0;
}
.hero_banner_form .form_group button span {
    color: var(--body-default-color);
}
.hero_banner_form .form_group input {
    padding: 10px;
    font-size: 16px;
    letter-spacing: 0.4px;
}

.main_heading_wrapp {
    margin-bottom: 50px;
    position: relative;
}
.main_heading_wrapp {
    margin-bottom: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.buttonmain > span {
    padding-left: 5px;
}
.main_heading_content p {
    font-size: 18px;
}
.feature_icon {
    width: 60px;
    height: 60px;
    display: inline-block;
    line-height: 60px;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 100%;
    color: var(--button-bg-text-color);
    font-size: 26px;
}
.feature_section .card_box {
    padding: 60px;
}
.card_box1 .feature_icon {
    background-color: #2eacfc;
}
.card_box2 .feature_icon {
    background-color: #ea4c89;
}
.card_box3 .feature_icon {
    background-color: #3578ff;
}
.card_box4 .feature_icon {
    background-color: #f67741;
}
.card_box5 .feature_icon {
    background-color: #6a88f7;
}
.card_box6 .feature_icon {
    background-color: #3ab094;
}
.impression_bg {
    background-color: var(--section-bg-color);
    margin-top: 50px;
    padding: 50px 50px 0;
    border-radius: 15px;
    overflow: hidden;
}
.impression_imgs {
    text-align: center;
    margin-bottom: -215px;
}

.main_heading {
    margin-bottom: 40px;
    z-index: 9;
    position: relative;
}
.main_heading h2 {
    margin-bottom: 20px;
}
.main_heading p {
    font-size: 20px;
}
.impression_list {
    display: flex;
    gap: 30px;
    align-items: center;
}
.impression_list li {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 15px;
}
.impression_list .impression_icon {
    font-size: 30px;
    color: #31c369;
}
.section_bg1 {
    background-color: #0e1133;
}
.main_heading_white h2,
.main_heading_white p {
    color: var(--button-bg-text-color);
}
.card_box_bg {
    position: relative;
    padding: 30px;
}
.card_box_bg:after {
    content: '';
    width: 100%;
    border-radius: 15px;
    height: 160px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.card_box_bg1:after {
    background-image: linear-gradient(140deg, #ddf4fd, #eaf9ff);
}
.card_box_bg2:after {
    background-image: linear-gradient(140deg, #fdead3, #fff7ee);
}
.card_box_bg3:after {
    background-image: linear-gradient(140deg, #dafedb, #f0fcf0);
}
.card_box_bg4:after {
    background-image: linear-gradient(140deg, #fedaf4, #fceff7);
}
.card_box_bg .card_box {
    margin: 0;
    box-shadow: 0 30px 40px 0 rgba(0, 41, 57, .1);
    border: none;
}
.card_box_bg .card_box {
    text-align: center;
}
.card_box_bg .card_box h5 {
    margin: 20px 0;
    font-size: 36px;
    font-weight: 900;
}


.work_bottom {
    margin-top: 50px;
}
.video_img {
    position: relative;
}
.video_img img {
    width: 100%;
    border-radius: 10px;
}
.video_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.video_bg {
    height: 90px;
    width: 90px;
    background: #fff;
    text-align: center;
    line-height: 90px;
    color: var(--body-default-color);
    border-radius: 50%;
    font-size: 30px;
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.video_bg:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 50%;
    -webkit-animation: popup 1.5s linear infinite;
    animation: popup 1.5s linear infinite;
}
.appslider_main {
    position: relative;
}

.appslider_imgs img {
    border-radius: 10px;
}
.appslider_main .owl-nav,
.testimonial_wrapp .owl-nav {
    position: absolute;
    margin: 0;
    bottom: 15px;
    left: unset;
    right: 15px;
}
.appslider_main .owl-nav button,
.testimonial_wrapp .owl-nav button {
    width: 30px;
    height: 30px;
    background-color: var(--body-default-color) !important;
    border-radius: 100% !important;
    line-height: 32px !important;
    margin: 10px 5px !important;
}
.appslider_main .owl-nav button span,
.testimonial_wrapp .owl-nav button span {
    color: #fff;
}


.gallery_video_wrapp {
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999999;
    background-color: rgba(80, 80, 86, 0.8);
}
.gallery_video_wrapp.show {
    display: block;
}
.gallery_video_bg {
    position: relative;
    display: flex;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    z-index: 1045;
    line-height: 0;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    height: 100%;
}
.gallery_video_box {
    width: 100%;
    height: 520px;
    position: relative;
}
.gallery_video_box iframe {
    object-fit: none;
}
.gallery_video_box iframe {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.close_video {
    position: absolute;
    top: -20px;
    right: 0;
    font-size: 30px;
    color: var(--card-bg-color);
    cursor: pointer;
}
.video_content {
    padding: 30px 30px 0;
    font-size: 18px;
}
.video_content h4 {
    font-weight: 900;
}

.appstore_content h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 30px;
}
.appstore_content p {
    font-size: 20px;
    line-height: 1.6;
}
.appstore_section {
    background-image: url(../imgs_frontend/appstore_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
    z-index: 10;
    padding: 110px 0;
}
.appstore_section:before {
    position: absolute;
    content: "";
    right: 170px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 100%;
    width: 860px;
    background-image: url(../imgs_frontend/appstore_imgs.png);
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    z-index: -1;
}

.mostscreen_wrapp {
    margin-top: 50px;
}
.mostscreen_box {
    text-align: center;
}
.mostscreen {
    border: 2px solid var(--border-color);
    margin: 30px;
    padding: 30px;
    border-radius: 15px;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 15px;
    align-items: center;
    color: var(--border-color);
    cursor: pointer;
}
.mostscreen.active {
    border-color: var(--body-default-color);
}
.mostscreen_text h5 {
    color: var(--button-bg-text-color);
}
.mostscreen_text p {
    font-size: 17px;
}
.mostscreen_icon {
    font-size: 46px;
    text-align: center;
}
.mostscreen.active .mostscreen_icon {
    color: var(--body-default-color);
}
.screen_section_imgs {
    /* position: relative; */
    z-index: 99;
}
.screen_section {
    position: relative;
    overflow: hidden;
}
.pricinglist {
    text-align: center;
    gap: 5px;
    display: flex;
    justify-content: center;
    align-items: center;

}
.pricing_list_bg {
    border: 2px solid var(--border-color);
}
.pricing_list_btns {
    text-align: center;
    margin-top: 15px;
}
.pricing_list_bg {
    border: 2px solid var(--border-color);
    display: inline-block;
    border-radius: 50px;
    padding: 5px;
}
.pricinglist .pricing_items {
    padding: 5px 35px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.6px;
    cursor: pointer;
}
.pricinglist .pricing_items.active {
    background-color: var(--body-default-color);
    color: var(--card-bg-color);
}

.pricing_header {
    padding-bottom: 35px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}
.pricing_header h2 {
    font-size: 68px;
    margin-top: 30px;
}
.pricing_header h2 .pricing1 {
    font-size: 24px;
    font-weight: 400;
    display: inline-block;
    vertical-align: super;
}
.pricing_header h2 .pricing2 {
    font-size: 18px;
    font-weight: 400;
    display: inline-block;
}
.pricing_content li span {
    font-size: 17px;
    color: #a1c0ff;
}
.pricing_content .pricing_list {
    margin-bottom: 30px;
}
.pricing_tabs {
    margin-top: 15px;
}
.pricing_list li {
    padding: 5px;
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    justify-content: start;
}
.pricing_popular {
    border-color: var(--button-text-color);
    background-color: var(--section-bg-color);
}
.pricing_popular .pricing_header {
    border-color: var(--heading-text-color);
}
.pricing_popular .pricing_content li span {
    color: #31c369;
}
.popular_content {
    background-color: var(--heading-text-color);
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 10px 0 0 10px;
    color: var(--card-bg-color);
    position: absolute;
    right: 0;
    font-size: 14px;
    text-transform: uppercase;
}
.testimonial_wrapp {
    background-image: url(../imgs_frontend/testimonial_bg.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px;
    margin-top: 50px;
    border-radius: 15px;
    color: var(--card-bg-color);
}
.testimonial_content {
    display: grid;
    grid-template-columns: 200px 3fr;
    align-items: center;
    gap: 50px;
}

.testimonial_img {
    text-align: center;
}
.testimonial_img img {
    max-width: 140px;
    width: 100%;
    margin: 0 auto;
}
.testimonial_img .cilent_rating {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    align-items: center;
    gap: 4px;
    color: #ffb848;
}
.testimonial_text h6 {
    font-weight: 400;
    font-size: 22px;
    color: var(--card-bg-color);
    line-height: 1.6;
    margin-bottom: 30px;
}
.testimonial_text h4 {
    color: var(--card-bg-color);
    margin-bottom: 5px;
}

.clients_wrapp {
    margin-top: 50px;
}
.cilent_boxs {
    box-shadow: 0px 4px 25px 5px rgba(0, 41, 57, .1);
    padding: 30px;
    background-color: var(--button-bg-text-color);
    width: 120px;
    height: 120px;
    margin: 20px auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_wrapp {
    background-color: var(--section-bg-color);
    padding: 60px 0 50px;
}
.footer_details p {
    font-size: 18px;
    margin: 25px 0;
}
.social_media li {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
}
.social_media li a {
    width: 36px;
    height: 36px;
    text-align: center;
    background-color: var(--button-bg-text-color);
    color: var(--button-text-color);
    box-shadow: 0 40px 60px 0 rgba(14, 17, 51, .14);
    line-height: 36px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social_media li a:hover {
    background-color: var(--body-default-color);
    color: var(--button-bg-text-color);
}

.footer_menu h5,
.footer_info h5 {
    margin-bottom: 25px;
}
.footer_menu ul li {
    padding: 5px 5px 5px 25px;
    position: relative;
}
.footer_menu ul li:after {
    content: '';
    width: 7px;
    height: 7px;
    background-color: var(--body-default-color);
    position: absolute;
    top: 15px;
    left: 5px;
    border-radius: 50%;
}
.footer_menu ul li a {
    color: var(--heading-text-color);
}
.footer_info ul li {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 10px;
    align-items: center;
}
.footer_info ul li {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 10px;
    align-items: center;
    font-size: 18px;
    padding: 10px 0;
}
.footer_info ul li .info_icon {
    font-size: 20px;
    text-align: center;
    color: var(--body-default-color);
}
.footer_info ul li .info_details a {
    color: var(--heading-text-color);
}
.footer_bottom {
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
}
.footer_btns a {
    background-color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    color: var(--heading-text-color);
    font-weight: 400;
}
.footer_btns a span {
    padding-right: 5px;
}
.copyright {
    text-align: right;
}
.copyright a {
    font-weight: 700;
}

.inner_banner_wrapp {
    background-image: url(../imgs_frontend/appstore_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 200px;
    padding-bottom: 150px;
    position: relative;
    overflow: hidden;
}
.breadcrumb_menu {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 18px;
}
.breadcrumb_menu li a {
    color: var(--heading-text-color);
    font-weight: 700;
}
.inner_banner_content {
    position: relative;
    z-index: 9;
    font-size: 20px;
    line-height: 1.6;
}
.inner_banner_content h1 {
    margin-bottom: 20px;
}
.about_section .card_box_bg {
    margin-top: 30px;
}
.about_section .card_box h5 {
    font-size: 20px;
}
.about_screen_section {
    position: relative;
    overflow: hidden;
    z-index: 9;
}
.about_screen_main {
    position: relative;
    z-index: 9;
    margin-top: 35px;
}


.download_box {
    border-radius: 20px;
    background: #ebf2fc;
    overflow: hidden;
    margin: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}
.download_content {
    padding: 30px;
    margin-bottom: 30px;
    text-align: left;
}
.download_box img {
    margin-top: auto;
    padding: 30px 30px 0;
}
.getstarted_bg {
    background-image: url('../imgs_frontend/getstarted_bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px;
    border-radius: 20px;
    margin-top: 50px;
    margin-bottom: -250px;
}
.getstarted_content {
    color: var(--button-bg-text-color);
}
.getstarted_content .form_group input {
    background-color: var(--button-bg-text-color);
    border-radius: 10px !important;
    text-align: left;
    font-size: 18px;
}
.getstarted_img {
    text-align: center;
}
.getstarted_img img {
    width: 200px;
}
.getstarted_content h2 {
    margin-bottom: 30px;
    color: var(--button-bg-text-color);
}
.getstarted_content form .form_group {
    margin: 15px 0 25px;
}
.getstarted_content .form_group input.button_main {
    background-color: var(--button-bg-color);
    color: var(--button-bg-text-color);
    text-align: center;
    line-height: 26px !important;
}
.inner_footer_wrapp {
    padding-top: 250px;
}
section.blog_wrapper .card_box {
    padding: 15px;
}
.blog_imgs img {
    border-radius: 15px;
    width: 100%;
}
.blog_content {
    padding: 30px 10px 10px;
}
.blog_head ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0 20px;
    margin-bottom: 20px;
    font-weight: 700;
}
.blog_head ul li span {
    color: var(--body-default-color);
    display: inline-block;
    padding-right: 5px;
}
.blog_content h6 a {
    line-height: 1.4;
    color: var(--heading-text-color);
}
.blog_content .linkbtns {
    display: inline-block;
    vertical-align: middle;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}
.blog_content .linkbtns span {
    display: inline-block;
    vertical-align: middle;
    padding-left: 5px;
    font-size: 16px;
}
.pagination_main {
    text-align: center;
    margin-top: 20px;
}
.pagination_main ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.pagination_main ul li a {
    font-size: 14px;
    color: #2b70fa;
    font-weight: 600;
    /* line-height: 40px; */
    background: rgba(88, 56, 252, .1);
    width: 40px;
    height: 40px;
    border-radius: 3px;
    text-align: center;
    display: inline-block;
    transition: all .4s ease;
}
.pagination_main ul li a.current,
.pagination_main ul li a:hover {
    background-color: #2b70fa;
    color: var(--button-bg-text-color);
}

.blog_sidebar {
    position: relative;
    padding-left: 50px;
}
.blog_search form .form_group {
    background-color: var(--section-bg-color);
    border-radius: 50px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}
.blog_search form .form_group input {
    padding: 0;
    font-size: 18px;
}
.blog_detail_main img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 50px;
}
.blog_detail_main h2 {
    font-size: 36px;
    margin-bottom: 30px;
}
.blog_detail_main p {
    margin-bottom: 25px;
}
.blog_detail_box {
    background-color: var(--section-bg-color);
    border-left: 3px solid var(--body-default-color);
    border-right: 3px solid var(--body-default-color);
    padding: 30px 40px;
    margin: 40px 0;
    border-radius: 30px;
    position: relative;
}
.blog_detail_box .quote_icon {
    position: absolute;
    left: 40px;
    top: 75px;
    font-size: 100px;
    color: var(--body-default-color);
    letter-spacing: -5px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.blog_detail_box h6 {
    margin-top: 50px;
    line-height: 1.4;
}
.blog_detail_box p {
    margin-bottom: 0;
}

.contact_bg {
    position: relative;
    background: var(--button-bg-text-color);
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 30px 40px 0 rgba(0, 41, 57, .1);
    margin: 15px;
    width: 100%;
}
.contact_bg form .form_group {
    margin-top: 30px;
}
.contact_bg form .form_group input,
.contact_bg form .form_group textarea {
    background-color: var(--section-bg-color);
    font-weight: 700;
}
.form_group_chechbox label {
    font-size: 14px;
}

.form_group_button .button_main {
    border: 2px solid transparent !important;
}
.form_group_button .button_main:hover {
    border-color: var(--body-default-color) !important;
}
.contact_bg form .form_group_button {
    margin: 0;
    text-align: right;
}
.contact_map iframe {
    width: 100%;
    height: 615px;
}

.error_wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.error_main {
    text-align: center;
    font-size: 20px;
}
.error_main_bg {
    border-radius: 20px;
    background: #ebf2fc;
    padding: 70px;
    text-align: center;
    display: inline-block;
}
.error_main h1 {
    margin: 50px 0px 25px;
    color: var(--body-default-color);
}
.appstore_content,
.mostscreen_main {
    position: relative;
    z-index: 9;
}


/* Custom CSS to show red validation error messages */
.error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}






/* General Form Container */
.form-container {
    display: flex;
    justify-content: center;  /* Centers horizontally */
    align-items: center;      /* Centers vertically */
    min-height: 90vh;        /* Full viewport height */
    background-color: #f7f7f7;
   box-sizing: border-box;   /* Ensures padding does not affect width/height */
}

/* Form styling */
.form {
    width: 100%;
    max-width:  650px;  /* Max width to ensure the form doesn't stretch too wide */
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Heading */
.form .text-center h1 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.form .text-center .text-gray-500 {
    font-size: 16px;
    color: #6c757d;
}

/* Login Options */
.row.g-3.mb-9 {
    margin-bottom: 30px;
}

.row .col-md-6 {
    margin-bottom: 15px;
}

.row .btn {
    font-size: 14px;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    width: 100%;
}



/* Google Button */
.btn-outline {
    border: 1px solid #ced4da;
    color: #495057;
    background-color: #f8f9fa;
}

.btn-outline:hover {
    background-color: #e9ecef;
}

/* Apple Button */
.btn-active-color-primary {
    color: #007bff;
}

.bg-state-light {
    background-color: #f8f9fa;
}

/* Separator */
.separator {
    margin: 40px 0;
    border-top: 1px solid #ddd;
    text-align: center;
}

.separator span {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

/* Input Fields */
.fv-row input.form-control {
    font-size: 14px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ced4da;
    background-color: #f8f9fa;
    width: 100%;
}

.fv-row input.form-control:focus {
    border-color: #007bff;
    background-color: #ffffff;
}

/* Forgot Password Link */
.d-flex a {
    /* color: #007bff; */
    font-size: 14px;
}

.d-flex a:hover {
    text-decoration: underline;
}

/* Submit Button */
.d-grid button.btn-primary {
    padding: 12px;
    background-color: #007bff;
    border-radius: 8px;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
}

.d-grid button.btn-primary:hover {
    background-color: #0056b3;
}

/* Sign Up Link */
.text-center .link-primary {
    color: #007bff;
}

.text-center .link-primary:hover {
    text-decoration: underline;
}

.copyright a,
.copyright a:hover {
    text-decoration: none;
    color: var(--body-default-color);
    display: inline-block;
    font-size: 16px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .form-container {
        padding: 20px;
    }

    .form {
        width: 100%;
        padding: 20px;
    }

    .separator {
        margin: 30px 0;
    }

    .row .col-md-6 {
        width: 100%;
    }

    .btn img {
        height: 18px;
    }

    .fv-row input.form-control {
        padding: 10px;
    }

    .d-grid button.btn-primary {
        font-size: 13px;
    }
}
