@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;600;700&display=swap');


input[type="text"]:autofill,
input[type="email"]:autofill,
input[type="password"]:autofill,
input[type="tel"]:autofill,
input[type="url"]:autofill,
input[type="search"]:autofill,
textarea:autofill {
    background-color: #fff !important;
    background-image: none !important;
    color: inherit !important;
    box-shadow: none !important;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    -webkit-text-fill-color: #000 !important;
    transition: background-color 5000s ease-in-out 0s;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000000;
    /*background-color: #050505;*/
    font-family: 'Montserrat', sans-serif;
    -webkit-user-select: text; /* Safari */
    -ms-user-select: text; /* IE 10 and IE 11 */
    user-select: text; /* Standard syntax */

}

section {
    padding: 30px 0 46px 0;
    position: relative;
    z-index: 2;
}

#home {
    padding: 0;
}

header.header {
    margin-bottom: 0;
}

.contact_p {
    font-size: 12px;
    line-height: 1.2;
    max-width: 100%;
    margin: 10px auto 0;
}

.contact_p,
.contact_p * {
    font-size: 12px !important;
}

/* Uniform spacing for containers and elements */
.container {
    margin-bottom: 0;
}

.row {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 0px;
}

.contact_form input,
.contact_form select,
.contact_form textarea {
    margin-bottom: 2px;
}

/* Remove extra margins that cause inconsistent spacing */
.row > div[class*="col-"] {
    margin-bottom: 0;
}

/* Ensure consistent spacing in all sections */
section .container {
    padding-top: 0;
    padding-bottom: 0;
}

/* Standardize all text and element spacing within sections */
.title_inner {
    padding-bottom: 46px;
    margin-bottom: 0;
    margin-top: 0;
}

.premium_features_pera {
    margin-bottom: 8px;
}

.premium_features_description {
    margin-bottom: 0;
}

/* Standardize form element spacing */
.form-group {
    margin-bottom: 0px;
}

.form_label {
    margin-bottom: 8px;
    margin-top: 8px;
    display: block;
}

/* Standardize FAQ spacing */
.faq-heading {
    margin-bottom: 10px;
}

.faq-text {
    margin-bottom: 15px;
}

/* Standardize footer spacing */
#footer .app_pin_logo {
    margin-bottom: 20px;
}

#footer .icons_div {
    margin-bottom: 15px;
}

#footer .terms_policy {
    margin-bottom: 10px;
}

/* Remove any inconsistent margins */
.owl-carousel .row .banner_logo,
.owl-carousel .row .banner_logo_new,
.owl-carousel .row .google_play {
    margin: 15px auto;
}

/* Consistent spacing for all interactive elements */
.contact_form .premium_features_box {
    margin-bottom: 15px;
}

@media (min-width: 992px) {
    .contact_p {
        font-size: 11px;
        white-space: nowrap;
    }
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/*!* Disable copying and printing *!*/
/*!*body.no-copy * {*!*/
/*    -webkit-user-select: none; !* Disable text selection on WebKit browsers *!*/
/*    -moz-user-select: none; !* Disable text selection on Firefox *!*/
/*    user-select: none; !* Disable text selection on other browsers *!*/
/*!*}*!*/

/*!*@media print {*!*/
/*!*    body.no-print * {*!*/
/*        display: none; !* Hide all elements when printing *!*/
/*!*    }*!*/
/*!*}*!*/

/* styles.css */
#preloader {
    width: 100%;
    height: 100%;
    background: #000;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: all 600ms;
}

#preloader:before {
    content: "";
    background-image: url(../images/app_pin_icon.png);
    background-size: cover;
    height: 150px;
    width: 150px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    animation: ver-rotate 3s infinite linear;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

@keyframes ver-rotate {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.hide {
    display: none;
}

@media (min-width: 768px) {


    .main-banner {
        padding: 4rem 0 4rem 0;
        min-height: 100vh;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* navbar css code starting here */
.navbar {
    padding: 1rem 0;
}

.transparent-header .navbar {
    background: black;
    position: absolute;
    z-index: 999;
    width: 100%;
}

@media (min-width: 992px) {
    .transparent-header .navbar {
        background: rgba(0, 0, 0, 0);
        position: absolute;
        z-index: 999;
        width: 100%;
    }
}

.navbar-sticky {
    position: fixed;
    z-index: 999;
    width: 100%;
    top: 0;
}

.navbar-sticky.expanded {
    background-color: rgba(0, 0, 0, 0.9);
    height: 100vh;
}

.navbar.navbar-sticky.sticky-active {
    position: fixed;
    /*background-color: #000;*/
    background-color: rgba(0,0,0, 0.9);
    -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    -webkit-animation: fadeInDown 0.5s ease-out forwards;
    animation: fadeInDown 0.5s ease-out forwards;
}

.navbar-brand img {
    display: block;
    width: 120px;;
}

.navbar .navbar-nav .nav-link {
    color: #fff;
    font-weight: 700;
    font-size: 17px;
}

.transparent-header .navbar.sticky-active .navbar-nav .nav-link {
    color: #fff;
}

.navbar .navbar-nav .nav-link:active,
.navbar .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-link:hover,
.transparent-header .navbar.sticky-active .navbar-nav .nav-link.active,
.transparent-header .navbar.sticky-active .navbar-nav .nav-link:active,
.transparent-header .navbar.sticky-active .navbar-nav .nav-link:focus,
.transparent-header .navbar.sticky-active .navbar-nav .nav-link:hover {
    color: #e56400;
    background: transparent;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
    text-decoration: none;
    outline: none;
}

.navbar-toggler {
    width: 28px;
    height: 28px;
    position: relative;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.navbar-toggler span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #e56400;
    border-radius: 8px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.navbar-toggler span:nth-child(1) {
    top: 3px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.navbar-toggler span:nth-child(2) {
    top: 11px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.navbar-toggler span:nth-child(3) {
    top: 19px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.navbar-toggler.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -3px;
    left: 8px;
}

.navbar-toggler.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.navbar-toggler.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 16px;
    left: 8px;
}

@media (max-width: 991px) {

    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid {
        padding-right: 15px !important;
        padding-left: 15px !important;
    }

    .navbar.mobile_menu_open {
        position: fixed;
    }


    .navbar-expand-lg.navbar .nav-link {
        padding-top: .8rem;
        text-align: center;
        font-size: 24px;
        font-weight: 700;
    }

    .navbar-expand-lg.navbar .app_pin_logo {
        display: block !important;
        text-align: center;
        margin-top: 15px;
        margin-bottom: 8px;
    }

    .navbar-expand-lg.navbar .app_pin_logo img {
        width: 50px;
    }

    .navbar-expand-lg.navbar .icons_div {
        display: flex !important;
        justify-content: center;
        margin-top: 30px;
    }

    /* Ensure toggle button stays visible on mobile */
    .navbar-toggler {
        z-index: 1001;
        position: relative;
    }

    /* Adjust the height of the collapsed menu */
    .navbar-collapse {
        background-color: #000;
        z-index: 1000;
        height: 100vh;
        overflow-y: auto;
        transition-duration: 0.2s;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        position: fixed;
        top: 0;
        margin: 0 auto;
    }

    .navbar .navbar-collapse {
        display: grid;
        opacity: 0;
        visibility: hidden;
        left: -100%;
        transition: all 600ms;
        width: 100%;
    }

    .navbar .navbar-collapse.show {
        opacity: 1;
        visibility: visible;
        left: 0;
    }

    .navbar-collapse .navbar-nav {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1;
        margin: auto 0;
        padding: 20px 0;
        width: 100%;
        top: -25px;
        position: relative;
    }

    .navbar-expand-lg.navbar .icons_div .icon_div {
        width: 65px;
        height: 50px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    /* Body styles when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    /* Menu animation classes */
    .navbar-collapse.collapsing {
        display: none;
    }

    /* Ensure toggle button remains visible when menu is open */
    body.menu-open .navbar-toggler {
        /*position: fixed !important;*/
        /*top: 20px !important;*/
        /*right: 20px !important;*/
        /*z-index: 1002 !important;*/
        /*display: block !important;*/
        /*visibility: visible !important;*/
        /*opacity: 1 !important;*/
        /*transform: none !important;*/
    }

    /* Ensure toggle button spans are visible when open */
    body.menu-open .navbar-toggler span {
        background: #fff !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Force navbar-collapse to not cover the toggle button */
    body.menu-open .navbar-collapse {
        z-index: 1000 !important;
    }
}

.nav-item.app_pin_logo .img-fluid {
    /*width: 149px !important;*/
    width: 200px !important;
}

@media (max-width: 767px) {
    .navbar-expand-lg.navbar .nav-link {
        /*font-size: 22px;*/
        /*padding-top: .6rem;*/
        /*font-weight: 700;*/

        font-size: 24px;
        padding-top: 5px;
        font-weight: 700;
    }

    .navbar-expand-lg.navbar .app_pin_logo {
        margin-top: 12px;
        margin-bottom: 8px;
    }

    .navbar-expand-lg.navbar .app_pin_logo img {
        width: 40px;
    }

    .navbar-expand-lg.navbar .icons_div {
        margin-top: 25px;
    }

    .navbar-expand-lg.navbar .icons_div .icon_div {
        width: 60px;
        height: 45px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .navbar-expand-lg.navbar .nav-link {
        /*font-size: 20px;*/
        /*padding-top: .5rem;*/
        /*font-weight: 700;*/

        font-size: 24px;
        padding-top: 5px;
        font-weight: 700;
    }

    .navbar-expand-lg.navbar .app_pin_logo {
        margin-top: 10px;
        margin-bottom: 8px;
    }

    .navbar-expand-lg.navbar .app_pin_logo img {
        width: 35px;
    }

    .navbar-expand-lg.navbar .icons_div {
        margin-top: 20px;
    }

    .navbar-expand-lg.navbar .icons_div .icon_div {
        /*width: 55px;*/
        width: 60px;
        height: 40px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }
}

.navbar-expand-lg.navbar .nav-link {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
}

.hidden {
    visibility: hidden;
}

#hidden_section {
    display: none;
}

/* offcanvas */
.offcanvas {
    padding: 25px;
}

.offcanvas hr {
    border-top: 2px solid #fff3;
}

.offcanvas .navbar-brand {
    margin-right: 0;
}

.offcanvas .nav-link {
    color: #fff;
}

.offcanvas .nav-link:active,
.offcanvas .nav-link:hover,
.offcanvas .nav-link:focus,
.offcanvas .nav-link.active {
    color: #e56400;
}


/* OLW Custom css code starting here*/
.owl-carousel .parallax-fixed {
    background-attachment: scroll !important;
}

.owl-carousel.row {
    width: auto;
}

.owl-carousel.row .owl-stage {
    margin: 0 auto;
}

.owl-carousel.row .owl-item {
    padding: 0 15px;
}

.google_play_icon {
    width: 100%;
    border: 3px solid #fff;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 0 auto;
    transition: all 300ms;
    max-width: 192px;
    padding: 3px;
}

.google_play_icon svg {
    max-width: 100%;
    width: 100%;
    height: auto;
    transition: all 300ms;
}

.google_play_icon svg path {
    transition: all 300ms;
}

/*.google_play_icon:active {*/
/*    background: #ffffff;*/
/*}*/
/*.google_play_icon:active svg path{*/
/*    fill: #000000;*/
/*}*/
@media all and ( min-width: 992px) {
    .google_play_icon:hover {
        background: #ffffff;
    }

    .google_play_icon:hover svg path {
        fill: #000000;
    }
}

.owl-carousel .row .icon_div {
    width: 58px;
    height: 58px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.owl-carousel .row .d-flex.justify-content-center {
    margin-top: 15px;
}

.owl-carousel .owl-item .animate_slide {
    -webkit-transition: all 0.45s 0.3s ease-in-out;
    transition: all 0.45s 0.3s ease-in-out;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateY(45px);
    transform: translateY(45px);
}

.owl-carousel.owl-drag .owl-item.active .animate_slide {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.owl-carousel .owl-nav i {
    color: rgb(0, 0, 0);
}

.owl-theme .owl-dots,
.owl-theme .owl-nav {
    margin-top: 20px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #e56400;
}

.app-screenshots.owl-theme .owl-nav,
.blog-slider.owl-theme .owl-nav,
.mobile-slider.owl-theme .owl-nav {
    display: none;
}

.owl-theme .owl-dots .owl-dot span {
    width: 25px;
    height: 8px;
}

.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 45%;
    width: 50px;
    height: 50px;
    margin-top: -10px;
    display: none;
    -webkit-transition: opacity 0.2s;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    line-height: 50px;
    text-align: center;
    opacity: 0.8;
    color: #333;
    left: 30px;
    font-size: 18px;
    z-index: 10;
    align-items: center;
    justify-content: center;
}

@media (min-width: 992px) {

    .owl-carousel .owl-nav .owl-next,
    .owl-carousel .owl-nav .owl-prev {
        display: flex;
    }
}

.owl-carousel .owl-nav .owl-next {
    right: 30px;
    left: auto;
}

.owl-carousel .owl-nav .owl-next i,
.owl-carousel .owl-nav .owl-prev i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.main-slider.owl-theme .owl-dots {
    position: absolute;
    width: 100%;
    bottom: 30px;
    z-index: 10;
    text-align: center;
    pointer-events: none;
}

.main-slider.owl-theme .owl-dots .owl-dot {
    margin: 0 4px;
    pointer-events: auto;
}

@media (min-width: 768px) {
    .main-slider.owl-theme .owl-dots {
        bottom: 50px;
    }
}

@media (min-width: 992px) {
    .main-slider.owl-theme .owl-dots {
        bottom: 70px;
    }
}

.main-slider-container {
    min-height: 400px;
    text-align: center;
}

.owl-carousel .item-content {
    min-height: 500px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: #e56400;
    transition: .5s;
    opacity: 1;
    color: #fff;
}

.owl-carousel .owl-nav .owl-next:hover,
.owl-carousel .owl-nav .owl-prev:hover {
    opacity: 1;
    transform: scale(1.1);
}


.img-fluid.banner_logo.banner_logo_1 {
    transform: scale(1.4);
    margin: 10px auto 5px auto !important;
}

html {
    width: 100%;
}

.form-group.select.wow.zoomIn {
    border-radius: 99999px !important;
}


/* features css code  */
.owl-carousel .row .banner_logo {
    width: 42vw;
    margin: 10px auto 50px auto;
    display: block;
}

.owl-carousel .row {
    text-align: center;
    justify-content: center;
}

.owl-carousel .row .banner_logo_new {
    width: 36vw;
    margin: 10px auto 50px auto;
    display: block;
}

@media (max-width: 991px) {

    .owl-carousel .row .banner_logo {
        width: 55vw;
        margin: 20px auto 40px auto;
    }

    .owl-carousel .row .banner_logo_new {
        width: 50vw;
        margin: 20px auto 40px auto;
    }

    .owl-carousel .row .google_play {
        width: 170px;
        margin: 8px auto 0 auto;
    }

    .owl-carousel .row .d-flex.justify-content-center {
        margin-top: 12px;
    }

    .owl-carousel .row .icon_div {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 767px) {
    section {
        padding: 30px 0;
    }

    .title_inner {
        padding-bottom: 30px;
    }

    /* Ensure consistent centering for all containers */
    .container {
        padding-left: 15px;
        padding-right: 15px;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    /* Fix row centering */
    .row {
        margin-left: 0;
        margin-right: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Fix column centering and spacing */
    .col-12, .col-md-6, .col-lg-4, .col-lg-8, .col-lg-6, .col-md-10, .col-md-8 {
        padding-left: 15px;
        padding-right: 15px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 100%;
    }

    /* Special handling for centered content */
    .row.text-center.justify-content-center {
        margin-left: auto;
        margin-right: auto;
    }

    .row.text-center.justify-content-center > div {
        margin-left: auto;
        margin-right: auto;
    }

    .main-banner {
        padding: 7.5rem 0 3.5rem 0;
    }

    .main-slider-container {
        min-height: 320px;
        padding: 0 15px;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .owl-carousel .item-content {
        min-height: 380px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .owl-carousel .row .banner_logo {
        width: 90vw;
        margin: 30px auto 40px auto;
    }

    .owl-carousel .owl-nav .owl-next,
    .owl-carousel .owl-nav .owl-prev {
        width: 40px;
        height: 40px;
        margin-top: -20px;
        left: 15px;
        font-size: 16px;
        line-height: 40px;
        align-items: center;
        justify-content: center;
    }

    .owl-carousel .owl-nav .owl-next {
        right: 15px;
    }

    .owl-carousel .row .banner_logo_new {
        width: 85vw;
        margin: 30px auto 40px auto;
    }

    .owl-carousel .row .google_play {
        width: 150px;
        border-radius: 1.4rem;
        margin: 8px auto 0 auto;
    }

    .owl-carousel .row .d-flex.justify-content-center {
        margin-top: 10px;
    }

    .owl-carousel .row .icon_div {
        width: 40px;
        height: 40px;
    }

    .owl-theme .owl-dots .owl-dot span {
        width: 20px;
        height: 6px;
    }
}

#features .premium_features_headline {
    color: #fff;
    font-weight: 700;
    /*text-transform: uppercase;*/
    text-align: center;
    width: 100%;
    display: block;
}

#features .premium_features_image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
    width: 120px;
    margin: 0 auto 0 auto;
}

.premium_features_image svg {
    overflow: visible;
    display: block;
    transition: all 300ms;
    max-width: 120px;
    width: 100%;
    max-height: 120px;
    height: 100%;
}

.premium_features_image svg.add_free_icon {
    max-width: 140px;
    max-height: 140px
}

.premium_features_image svg path {
    fill: #e56400;
    transition: all 300ms;
}

.premium_features_image svg.typing_status_icon path {
    fill: transparent;
    stroke: #e56400;
    transition: all 300ms;
}


#features .premium_features_image .img-fluid_2 {
    height: 110px;
}

#features .premium_features_pera {
    margin: 0;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
}

#features .premium_features_description {
    color: #a3a3a3;
    font-weight: 400;
    font-size: 1rem;
    margin-top: -4px;
}

.premium_features_button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 30px;
    margin: 15px auto 0 auto;
    transition: 0.3s;
    line-height: 1.5;
    font-weight: bold;
    font-size: 18px;
    width: auto;
    text-align: center;
}

.premium_features_button:hover {
    background-color: #ff7f1d;
    text-decoration: none;
    color: #fff;
}

.premium_features_button div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
}

.premium_features_button p {
    margin: 0;
    padding: 0;
    font-size: 18px;
}

.premium_features_button:hover span {
    color: #fff !important;
}

.premium_features_button span {
    margin: 0;
    padding: 0;
    color: #000 !important;
    font-size: 13px;
}

.faq_headline {
    color: #fff; /* White text */
    text-align: center; /* Centered text */
    margin-top: 0;
    font-weight: bold;
    width: 100%;
    display: block;
}

.contact_p {
    color: #fff; /* White text */
    text-align: center; /* Centered text */
    margin-top: 30px; /* Space above */
}

.contact_p a {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    text-decoration: underline;
    transition: all 300ms;
}

.contact_p a:hover {
    color: #e56400;
}

.features_section {
    padding-bottom: 16px;
}

.premium_features_box {
    background-color: #161616;
    border-radius: 25px;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    height: 100%;
    /*outline: 1px solid rgb(31, 41, 55);*/
    outline: 1px solid rgba(255, 255, 255, 0.2);
    outline-offset: -1px;
    /*margin-bottom: 15px;*/
}
/**CHECKBOX**/
.checkbox_wrap {
    margin: 20px 0;
    text-align: center;
}

.custom-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    user-select: none;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 0;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-mark {
    position: relative;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #000000;
    border: 1px solid #ffffff;
    border-radius: 50%;
    margin-right: 12px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-mark::after {
    content: '';
    position: absolute;
    top: 3px;
    width: 8px;
    height: 14px;
    border: solid #000;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s ease;
    opacity: 0;
}
.custom-checkbox input:checked + .checkbox-mark {
    border-color: #ffffff;
    background: #ffffff;
}
.custom-checkbox input:checked + .checkbox-mark::after {
    transform: rotate(45deg) scale(1);
    opacity: 1;
}

.checkbox-text {
    flex: 1;
    color: #fff;
    font-size: 12px;
    line-height: 1.2;
    text-align: left;
}
.checkbox-text  a {
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    text-decoration: underline;
    transition: all 300ms;
}

.checkbox-text a:hover {
    color: #e56400;
}
.submit_btn {
    transition: all 0.3s ease;
}

.submit_btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #ccc !important;
    border-color: #ccc !important;
}
.submit_btn.disabled:hover{
    color: rgb(33, 37, 41);
}


@media (min-width: 992px) {
    .premium_features_box:hover {
        transform: translateY(-5px);
        border-color: #e56400;
        box-shadow: 0 15px 35px rgba(22, 22, 22, 0.2);
    }

    .premium_features_box:hover .premium_features_image svg path {
        fill: #ffffff;
    }

    .premium_features_box:hover .premium_features_image svg.typing_status_icon path {
        fill: transparent;
        stroke: #ffffff;
    }

}

@media (max-width: 991px) {

    #features .premium_features_image {
        height: 80px;
        width: 80px;
    }

    #features .premium_features_image .img-fluid_2 {
        height: 80px;
    }

    /*.features_item.active .premium_features_box {*/
    /*    transform: translateY(-5px);*/
    /*    border-color: #e56400;*/
    /*    box-shadow: 0 15px 35px rgba(22, 22, 22, 0.2);*/
    /*}*/

    .features_item.active .premium_features_image svg path {
        fill: #ffffff;

    }

    .features_item.active .premium_features_image svg.typing_status_icon path {
        fill: transparent;
        stroke: #ffffff;
    }

    /*.premium_features_box:active {*/
    /*    transform: translateY(-5px);*/
    /*    border-color: #e56400;*/
    /*    box-shadow: 0 15px 35px rgba(22, 22, 22, 0.2);*/
    /*}*/
    /*.premium_features_box:active .premium_features_image svg path{*/
    /*    fill: #ffffff;*/
    /*}*/
    /*.premium_features_box:active .premium_features_image svg.typing_status_icon path{*/
    /*    fill: transparent;*/
    /*    stroke: #ffffff;*/
    /*}*/
}

@media (max-width: 767px) {

    #features .container {
        padding-left: 15px;
        padding-right: 15px;
        margin-left: auto;
        margin-right: auto;
    }

    #features .premium_features_headline {
        font-size: 28px;
    }

    #features .premium_features_image {
        height: 100px;
        width: 100px;
        margin: 0 auto 15px auto;
    }

    #features .premium_features_image .img-fluid_2 {
        height: 90px;
    }

    #features .premium_features_pera {
        font-size: 16px;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    #features .premium_features_description {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 0;
    }

    /*.premium_features_box {*/
    /*    padding: 1.5rem 1rem;*/
    /*    margin-bottom: 20px;*/
    /*    min-height: auto;*/
    /*}*/

    /*.premium_features_box {*/
    /*    padding: 1.5rem 1rem;*/
    /*    margin-bottom: 20px;*/
    /*    min-height: auto;*/
    /*}*/

    #features .premium_features_button {
        padding: 12px 30px;
        border-radius: 30px;
        margin: 15px auto 0 auto;
        font-size: 16px;
        line-height: 1.5;
    }
}

@media (max-width: 400px) {
    #features .premium_features_headline {
        font-size: 24px;
    }

    .premium_features_box {
        padding: 1.2rem 0.8rem;
    }

    #features .premium_features_image {
        height: 90px;
        width: 90px;
    }

    #features .premium_features_pera {
        font-size: 15px;
    }

    #features .premium_features_description {
        font-size: 13px;
    }

    #features .premium_features_button {
        padding: 12px 25px;
        font-size: 14px;
        margin: 15px auto 0 auto;
    }
}


/* screenshots css code  */
#screenshots .screenshots_headline {
    color: #fff;
    font-weight: 700;
    /*text-transform: uppercase;*/
    text-align: center;
    width: 100%;
    display: block;
}

#screenshots .swiper-wrapper img {
    height: 500px;
    width: 400px;
}

@media (max-width: 991px) {
    #screenshots .screenshots_headline {
        font-size: 32px;
    }

    #screenshots .swiper-wrapper img {
        height: 400px;
        width: 300px;
        border-radius: 15px;
    }
}

@media (max-width: 767px) {

    #screenshots .container {
        padding-left: 15px;
        padding-right: 15px;
        margin-left: auto;
        margin-right: auto;
    }

    #screenshots .screenshots_headline {
        font-size: 28px;
    }

    #screenshots .swiper-wrapper img {
        height: 350px;
        width: 220px;
        border-radius: 12px;
    }

    .swiper-pagination {
        margin-top: 25px !important;
    }

    /* Center screenshots section */
    #screenshots .swiper-container {
        margin-left: auto;
        margin-right: auto;
        /*margin-top: 12px;*/
    }

    #screenshots .col-lg-8.col-10 {
        margin-left: auto;
        margin-right: auto;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 400px) {
    #screenshots .screenshots_headline {
        font-size: 24px;
    }

    #screenshots .swiper-wrapper img {
        height: 300px;
        width: 180px;
    }
}

/* contact css code  */
#contact .contact_headline {
    color: #fff;
    font-weight: 700;
    /*text-transform: uppercase;*/
    text-align: center;
    width: 100%;
    display: block;
}

#contact .contact_form {
    color: #fff;
    margin: 0 auto;
    overflow: hidden;
    text-align: left;
    padding-top: 40px; /* increase top spacing */
    padding-bottom: 15px; /* increase bottom spacing */
    max-width: 600px;
}

#contact .contact_form .form_label {
    font-size: 13px;
    font-weight: 700;
}

#contact .contact_form input {
    color: #fff;
    background: transparent;
    width: 100%;
    height: 3.3em;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #fff;
    font-size: 13px;
    border-radius: 999999px;
}
#contact .contact_form input.inputfile  {
    height: auto;
}

/*input, textarea, select {*/
/*    -webkit-appearance: none;*/
/*    -moz-appearance: none;*/
/*    appearance: none;*/
/*    outline: none;*/
/*    box-shadow: none;*/
/*}*/
/*input:focus,*/
/*textarea:focus,*/
/*select:focus {*/
/*    outline: none;*/
/*    -webkit-tap-highlight-color: transparent;*/
/*    box-shadow: none;*/
/*}*/
/*input:active,*/
/*select:active,*/
/*textarea:active{*/
/*    -webkit-appearance: none;*/
/*    -webkit-tap-highlight-color: transparent;*/
/*    outline: none;*/
/*    box-shadow: none;*/
/*}*/
/*input.form-control:focus,*/
/*textarea.form-control:focus{*/
/*    box-shadow: none;*/
/*    outline: none;*/
/*}*/
#contact .contact_form .form-control:focus {
    box-shadow: none;
    background: #fff;
    color: #000000;
}

#contact .contact_form select {
    /* Reset Select */
    appearance: none;
    outline: 0;
    border: 0;
    box-shadow: none;
    /* Personalize */
    flex: 1;
    padding: 0 1em;
    color: #fff;
    background-color: transparent;
    background-image: none;
    cursor: pointer;
    font-size: 13px;
    text-align: left;
}

#contact .premium_features_box {
    border-color: #333;
}

#contact .premium_features_box:hover {
    border-color: #e56400;
}

#contact .contact_form select:focus,
#contact .contact_form select:active {
    background-color: #000;
    color: #fff;
    box-shadow: none;
    outline: none;
}

/* Remove IE arrow */
#contact .contact_form select::-ms-expand {
    display: none;
}

/* Custom Select wrapper */
#contact .contact_form .select {
    position: relative;
    display: flex;
    width: 100%;
    height: 3.3em;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #fff;
    font-size: 13px;
}

/* Arrow */
#contact .contact_form .select::after {
    content: '\25BC';
    position: absolute;
    top: -3px;
    right: 0;
    padding: 1em;
    transition: .25s all ease;
    pointer-events: none;
}

#contact .contact_form textarea {
    color: #fff;
    background: transparent;
    width: 100%;
    height: 6.3em;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #fff;
    font-size: 13px;
    border-radius: 20px;
}

.uploadFile {
    width: 100%;
    border-radius: 14px;
    text-align: center;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    position: relative;
    font-size: 13px;
    height: auto;
    overflow: hidden; /* optional: keep inner input contained */
    border-radius: 9999999px;
}

/* Correct descendant selector for file input */
.uploadFile input[type="file"] {
    cursor: pointer !important;
    display: block;
    font-size: 999px; /* to cover entire label */
    min-height: 100%;
    min-width: 100%;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    text-align: right;
    z-index: 1;
}

.row.text-center.justify-content-center {
    padding-left: 0;
}

#contact .contact_form .submit_btn {
    background-color: #ffffff;
    color: #000000;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    margin: 15px auto 0 auto;
    width: auto;
}

.submit_btn {
    background-color: #ffffff;
    color: #000000;
    /*text-transform: uppercase;*/
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    margin: 15px auto 0 auto;
    width: auto;
}

#contact .contact_form .submit_btn:hover {
    background-color: #e56400;
    color: #fff;
}

.submit_btn:hover {
    background-color: #e56400;
    color: #fff;
}

@media (max-width: 991px) {

    #contact .contact_form .select {
        font-size: 10px;
    }

    #contact .contact_form input {
        height: 2.5em;
    }
    #contact .contact_form input.inputfile  {
        height: auto;
    }

    .premium_features_pera {
        margin-top: 20px !important;
    }
}

@media (max-width: 767px) {

    #contact .container {
        padding-left: 15px;
        padding-right: 15px;
        margin-left: auto;
        margin-right: auto;
    }

    #contact .contact_headline {
        font-size: 26px;
    }

    #contact .contact_form {
        padding-top: 30px;
        padding-bottom: 1px;
    }

    .filename {
        text-align: center;
        display: block;
        margin: 0 auto;
    }

    /* Fix gray box and all premium boxes centering */
    /*.premium_features_box {*/
    /*    margin-left: auto !important;*/
    /*    margin-right: auto !important;*/
    /*    max-width: 100%;*/
    /*}*/

    /* Ensure contact form elements are centered */
    .contact_form .form-group,
    .contact_form label {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .contact_form input,
    .contact_form select,
    .contact_form textarea {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    #contact .contact_form .form_label {
        font-size: 14px;
        margin-bottom: 8px;
        display: block;
    }

    #contact .contact_form input {
        height: 48px;
        font-size: 16px;
        padding: 12px 16px;
        border-radius: 999999px;
        margin-bottom: 20px;
    }
    #contact .contact_form input.inputfile  {
        height: auto;
    }

    #contact .contact_form textarea {
        height: 120px;
        font-size: 16px;
        padding: 12px 16px;
        border-radius: 20px;
        resize: vertical;
        margin-bottom: 20px;
    }

    #contact .contact_form .select {
        height: 48px;
        font-size: 16px;
        border-radius: 999999px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
    }

    #contact .contact_form .select select {
        padding: 12px 16px;
        font-size: 16px;
        text-align: left;
        background: transparent;
        color: #fff;
        width: 100%;
        border: none;
        outline: none;
    }

    .uploadFile {
        height: auto;
        min-height: 60px;
        border-radius: 999999px;
        padding: 15px 20px;
        font-size: 14px;
        line-height: 1.3;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .captcha {
        padding: 30px 0;
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .submit_btn {
        padding: 14px 30px;
        font-size: 16px;
        min-height: 50px;
        border-radius: 25px;
    }

    .contact_p {
        font-size: 14px;
        margin-top: 20px;
        padding: 0;
        line-height: 1.4;
    }

    .premium_features_pera {
        margin-top: 20px !important;
    }
}

@media (max-width: 400px) {
    #contact .contact_headline {
        font-size: 22px;
    }

    #contact .contact_form {
        padding-top: 25px;
    }

    .contact_p {
        font-size: 13px;
        padding: 0;
    }
}

/* faqs css code  */
#faq .faq-heading {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    padding: 10px 0 10px 30px;
    border-left: 4px solid #e56400;
}


#faq .faq_block {
    width: 50vw;
    margin: 0 auto;
}

#faq .faq-heading {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    padding: 10px 0 10px 14px;
    border-left: 4px solid #e56400;
    transition: all 300ms;
}

#faq .faq_item.active .faq-heading {
    color: #e56400;
    border-color: #ffffff;
}

#faq .faq-heading:hover {
    color: #e56400;
    cursor: pointer;
    border-color: #000000;
}

#faq .faq-text {
    /*font-weight: 100;*/
    font-weight: 400;
    color: #fff;
    padding-left: 20px;
    margin-bottom: 0;
}
#faq .faq-text p{
    margin-bottom: 10px;
}
#faq .faq-text p:last-child{
    margin-bottom: 0;
}

.faq_item {
    transition: all 300ms;
    padding-bottom: 0;
}

#faq .faq_item.active {
    padding-bottom: 30px;
}

#faq .faq_block div {
    display: block;
    position: relative;
    /*cursor: pointer;*/
}

#faq .faq-toggle {
    display: none;
}

.faq-text a {
    font-weight: 700;
    color: #fff;
    text-decoration: underline;
    transition: all 300ms;
}

.faq-text a:hover {
    color: #e56400;
}

@media (max-width: 991px) {

    #faq .faq_block {
        width: 75vw;
    }

    #faq .faq_headline {
        font-size: 32px;
    }

    #faq .faq-heading {
        font-size: 17px;
        padding: 12px 0 12px 20px;
    }

    #faq .faq-text {
        font-size: 15px;
        line-height: 1.5;
        padding-left: 25px;
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    #faq .container {
        padding-left: 15px;
        padding-right: 15px;
        margin-left: auto;
        margin-right: auto;
    }

    #faq .faq_block {
        width: 100%;
        padding: 0;
        margin: 0 auto;
    }

    #faq .faq_headline {
        font-size: 26px;
    }

    #faq .faq-heading {
        font-size: 16px;
        padding: 15px 0 15px 18px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    #faq .faq-text {
        font-size: 14px;
        line-height: 1.5;
        padding-left: 22px;
        margin-bottom: 0;
        padding-right: 15px;
    }

    #faq .faq_item.active {
        padding-bottom: 20px;
    }


}

@media (max-width: 400px) {
    #faq .faq_headline {
        font-size: 22px;
    }

    #faq .faq_block {
        padding: 0;
    }

    #faq .faq-heading {
        font-size: 15px;
        padding: 12px 0 12px 15px;
    }

    #faq .faq-text {
        font-size: 13px;
        padding-left: 19px;
        padding-right: 10px;
    }
}

/* footer css code  */
#footer {
    padding: 30px 0;
}

#footer .app_pin_logo {
    width: 100px;
    margin-bottom: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#footer .icons_div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

#footer .icon_div {
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

#footer .terms_policy {
    color: #fff;
    padding-top: 20px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

#footer .terms_policy a {
    color: #fff;
    text-decoration: none;
    transition: all 300ms;
}

#footer .terms_policy a:hover {
    color: #e56400;
}

#footer .copyright {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0;
}

.zero-scrolltop {
    background: #e56400 !important;
    font-size: 24px;
    position: fixed;
    bottom: 20px;
    right: 15px;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    height: 34px;
    width: 34px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    transition: all 300ms;
}

.zero-scrolltop.zero-scrolltop-active {
    opacity: 0.5;
    visibility: visible;
}

.zero-scrolltop:hover {
    opacity: 1;
    color: #fff;
}

.zero-scrolltop img {
    filter: invert(100%);
    height: 25px;
    width: 25px;
}

@media (max-width: 991px) {
    #footer {
        padding: 30px 0;
    }

    #footer .app_pin_logo {
        width: 90px;
        margin-bottom: 15px;
    }

    #footer .icons_div {
        margin-bottom: 18px;
    }

    #footer .icon_div {
        width: 45px;
        height: 45px;
        margin: 0 8px;
    }

    #footer .terms_policy {
        font-size: 13px;
        padding: 0;
    }

    #footer .copyright {
        font-size: 13px;
    }

}

@media (max-width: 767px) {
    #footer {
        padding: 30px 0;
    }

    #footer .container {
        padding-left: 15px;
        padding-right: 15px;
        margin-left: auto;
        margin-right: auto;
    }

    #footer .app_pin_logo {
        width: 80px;
        margin-bottom: 20px;
    }

    #footer .icons_div {
        margin-bottom: 15px;
    }

    #footer .icon_div {
        width: 40px;
        height: 40px;
        margin: 0 6px;
    }

    #footer .terms_policy {
        font-size: 12px;
        padding: 0;
        line-height: 1.4;
    }

    #footer .copyright {
        font-size: 11px;
        line-height: 1.3;
        padding: 0 10px;
    }
}

@media (max-width: 400px) {
    #footer {
        padding: 30px 0;
    }

    #footer .app_pin_logo {
        width: 70px;
        margin-bottom: 15px;
    }

    #footer .icon_div {
        width: 35px;
        height: 35px;
        margin: 0 5px;
    }

    #footer .terms_policy {
        font-size: 11px;
        padding: 0 10px;
    }

    #footer .copyright {
        font-size: 10px;
        padding: 0 10px;
    }
}

#terms_of_service {
    color: #fff;
}

#terms_of_service a {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
}

#contact .premium_features_box {
    padding: 1.5rem 1rem;
}


.captcha {
    text-align: center;
    padding-bottom: 25px;
    padding-top: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

iframe[src*="challenges.cloudflare.com"] {
    min-width: 50px !important;
    margin: 0 auto;
    display: block;
}

.btn.btn-bd-primary.submit_btn {
    width: auto;
    padding: 12px 30px;
}


.btn-bd-primary {
    --bs-btn-font-weight: 600;
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bd-violet-bg);
    --bs-btn-border-color: var(--bd-violet-bg);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: #{shade-color($bd-violet, 10%)};
    --bs-btn-hover-border-color: #{shade-color($bd-violet, 10%)};
    --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
    --bs-btn-active-color: var(--bs-btn-hover-color);
    --bs-btn-active-bg: #{shade-color($bd-violet, 20%)};
    --bs-btn-active-border-color: #{shade-color($bd-violet, 20%)};
}

.contact_form input,
.contact_form select,
.contact_form textarea {
    background-color: #333; /* default dark */
    color: #fff;
    transition: background-color 0.2s, color 0.2s;
}

/* When field has value */
#contact .contact_form input.filled,
#contact .contact_form select.filled,
#contact .contact_form textarea.filled {
    background-color: #fff !important;
    color: #000 !important;
}

/* When select field has value, also style the wrapper */
#contact .contact_form .select:has(select.filled) {
    background-color: #fff !important;
    border-color: #fff !important;
}

#contact .contact_form .select:has(select.filled) select {
    background-color: #fff !important;
    color: #000 !important;
}

/* Also style the select wrapper when it has a value */
#contact .contact_form .select select.filled {
    background-color: #fff !important;
    color: #000 !important;
}


.submit_btn.inactive {
    opacity: 0.5; /* visually looks disabled */
    pointer-events: none; /* prevents click and hover */
    cursor: default; /* not pointer */
    transition: opacity 0.2s;
}

.submit_btn:not(.inactive) {
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
}

#featured_image .row {
    padding-left: 15px;
    padding-right: 15px;
}

.intro_image_block {
    display: flex;
    background: #ffffff;
    border-radius: 40px;
    padding: 4% 2.8% 4% 4%;
    max-width: 100%;
    outline: 3px solid transparent;
    transition: all 300ms;
}

/*.intro_image_block:active{*/
/*    outline-color: #e56400;*/
/*    transform: translateY(-5px);*/
/*}*/
.intro_image_left {
    width: 53%;
}

.intro_image_right {
    width: 47%;
    padding-left: 3%;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
}

.intro_image_top {
    padding-bottom: 13px;
}

.intro_image_top img {
    display: block;
    /* width: 95%; */
    text-align: right;
    margin: auto;
    margin-right: 0;
}

.intro_button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro_button a {
    display: flex;
    background: #000000;
    transition: all 300ms;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    max-width: 192px;
    padding: 3px;
    border: 3px solid #000000;
}

.intro_button a img {
    max-width: 100%;
    display: block;
}

.intro_button a svg {
    overflow: visible;
    max-width: 100%;
    width: 100%;
    height: auto;
    transition: all 300ms;
}

.intro_button a svg path {
    transition: all 300ms;
}

/*.intro_button a:active{*/
/*    background-color: #ffffff;*/
/*}*/
/*.intro_button a:active svg path{*/
/*    fill: #000000;*/
/*}*/
.contact_page {
    padding-top: 150px;
}
/***********************/
.simple_steps_slider .swiper-wrapper{
    padding-top: 5px;
}
.simple_steps_slider .swiper-wrapper .swiper-slide{
    height: auto;
}
.simple_steps_headline{
    margin-bottom: 46px;
}
.simple_steps_headline .title_inner{
    font-size: 3rem;
    line-height: 1;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 1rem;
    padding-bottom: 0;
    letter-spacing: -0.9px;
}

.simple_steps_headline .title_inner span{
    color: #e56400;
}
.simple_steps_headline p{
    font-size: 1.125rem;
    line-height: 1.75rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #a3a3a3;
    margin-bottom: 0;
}
.material-symbols-outlined {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}
.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}
@font-face {
    font-family: "Material Symbols Outlined";
    src: url("https://fonts.gstatic.com/s/materialsymbolsoutlined/v312/kJEPBvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzBwG-RpA6RzaxHMPdY40KH8nGzv3fzfVJO1Q.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 700;
    font-display: swap;
}
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -moz-font-feature-settings: 'liga';
    -moz-osx-font-smoothing: grayscale;
}
.step_card{
    background-color: #161616;
    transition: all 0.3s ease;
    border-radius: 24px;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /*border: 3px solid rgb(31, 41, 55);*/
    border: 3px solid transparent;
    /*outline: 1px solid rgb(31, 41, 55);*/
    outline: 1px solid rgba(255, 255, 255, 0.2);
    outline-offset: -1px;
    height: 100%;
    /*height: 420px;*/
}
@media all and (min-width: 991px){
    .step_card:hover{
        transform: translateY(-5px);
        border-color: #e56400;
        /*outline: 3px solid #e56400;*/
        /*outline-offset: -3px;*/
        outline-color: transparent;
    }
    .step_card:hover .step_icon span {
        color: #e56400;
    }
}

.step_num{
    color: rgb(255 255 255 / 0.2);
    /*font-family: Plus Jakarta Sans, sans-serif;*/
    font-weight: 900;
    font-size: 36px;
    line-height: 40px;
    text-align: left;
}
.step_num span{

}
.step_content{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: flex;
    padding-top: 60px;
}
.step_icon{
    border-radius: 9999px;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 64px;
    height: 64px;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    background: #ffffff;
    margin-bottom: 32px;
}
.step_icon span{
    font-size: 30px;
    line-height: 36px;
    transition: all 300ms;
}
.step_title{
    font-size: 20px;
    color: #e56400;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 16px;
    text-align: center;
}
.step_text{
    font-size: 14px;
    line-height: 22.75px;
    max-width: 220px;
    margin: auto;
    color: #a3a3a3;
    font-weight: 400;
}
/*.premium_features_slider.swiper-container{*/
/*    padding-left: 0;*/
/*    padding-right: 0;*/
/*}*/
/**POPUP**/
.contact_confirmation_popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 16px;
    background: #000000;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms;
}
.contact_confirmation_popup.open{
    opacity: 1;
    visibility: visible;

}
.popup_wrap{
    background: #ffffff;
    border-radius: 48px;
    padding: 32px 32px 32px 32px;
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
}
.popup_content{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.popup_image{
    border: 4px solid #000000;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
}
.popup_image svg{

}
.popup_title{

}
.popup_title h4{
    font-family: Montserrat, Noto Sans, sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.8px;
    line-height: 40px;
    padding-bottom: 12px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 8px;
    text-align: center;
}
.popup_subtitle{

}
.popup_subtitle p{
    margin-bottom: 0;
    color: rgb(0, 0, 0);
    font-family: Montserrat, Noto Sans, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding-bottom: 12px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 4px;
    text-align: center;
}
.popup_back{
    margin-top: 24px;
}
.popup_back a{
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Montserrat, Noto Sans, sans-serif;
    font-size: 16px;
    font-weight: 700;
    height: 100%;
    letter-spacing: 0.24px;
    line-height: 24px;
    min-width: 84px;
    padding-left: 20px;
    padding-right: 20px;
    transition: all 300ms;
    border-radius: 9999px;
    text-decoration: none;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 48px;

}
.popup_back a:hover{
    text-decoration: none;
    background: #e56400;
}
.premium_features_slider .owl-carousel .owl-stage-outer,
.simple_steps_slider .owl-carousel .owl-stage-outer{
   padding-top: 5px;
    margin-top: -5px;
}
 .premium_features_slider .owl-theme .owl-nav.disabled + .owl-dots,
 .simple_steps_slider .owl-theme .owl-nav.disabled + .owl-dots{
    margin-top: 20px;
}


@media all and (min-width: 992px) {
    .intro_button a:hover {
        background-color: #ffffff;
    }

    .intro_button a:hover svg path {
        fill: #000000;
    }

    .intro_image_block:hover {
        outline-color: #e56400;
        transform: translateY(-5px);
    }
    .premium_features_slider .swiper-wrapper{
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
        padding-top: 5px;

    }
    .simple_steps_slider .swiper-wrapper{
        display: grid;
        height: auto;
        gap: 20px;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .simple_steps_slider .swiper-slide{
        width: auto;
    }
    .premium_features_slider .owl-carousel{
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
    }
    .simple_steps_slider .owl-carousel{
        display: grid;
        height: auto;
        gap: 20px;
        grid-template-columns: 1fr 1fr;
    }
    .navbar-expand-lg.navbar .navbar-nav li:nth-last-child(2) .nav-link {
        padding-right: 0;
    }
}
@media all and (min-width: 1199px) {
    .simple_steps_slider .owl-carousel{
        display: grid;
        height: auto;
        gap: 20px;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media all and (max-width: 991px) {
    .intro_image_block {
        background: #ffffff;
        border-radius: 20px;
        padding: 4%;
        flex-direction: column;
        max-width: 520px;
        align-items: center;
    }

    .intro_image_left {
        width: 100%;
        padding-bottom: 20px;
    }

    .intro_image_right {
        width: 70%;
        padding-left: 0;
    }

    .intro_button a {
        padding: 3px;
        width: 192px;
        max-width: 65%;
        min-width: 180px;
    }
    .simple_steps_headline .title_inner{
        font-size: 36px;
    }
    /*.owl-item.active .premium_features_box,*/
    /*.owl-item.active .step_card{*/
    /*    border-color: #e56400;*/
    /*    outline-color: transparent;*/
    /*}*/
    /*.owl-item.active .premium_features_image svg path {*/
    /*    fill: #ffffff;*/
    /*}*/
    /*.owl-item.active .premium_features_box .premium_features_image svg.typing_status_icon path {*/
    /*    fill: transparent;*/
    /*    stroke: #ffffff;*/
    /*}*/
    /*.owl-item.active .step_card .step_icon span {*/
    /*    color: #e56400;*/
    /*}*/
    .step_content {
        padding-top: 0;
    }
    .step_icon {
        margin-bottom: 20px;
    }
    .step_title {
        font-size: 18px;
        margin-bottom: 0;
    }
    .step_card {
        padding: 24px;
        position: relative;
    }
    .step_num {
        /*font-size: 28px;*/
        /*position: absolute;*/
        /*top: 24px;*/
        /*left: 24px;*/
        font-size: 28px;
        position: absolute;
        /*top: 0px;*/
        /*left: 10px;*/
        top: 6px;
        left: 12px;
    }
    .step_text {
        max-width: 320px;
    }
    .simple_steps_slider .owl-carousel .owl-stage{
        display: flex;
        flex-wrap: nowrap;
    }
    .simple_steps_slider .owl-item {
        display: flex;
        height: auto;
        /*margin-left: 2px;*/
        width: 100%;
        padding-left: 2px;
        padding-right: 2px;
    }
    .premium_features_slider .owl-item{
        padding-left: 2px;
        padding-right: 2px;
    }
    .simple_steps_slider .owl-item .item{
        width: 100%;
    }
    .owl-progressbar {
        width: 100%;
        height: 6px;
        margin-top: 20px;
        border-radius: 30px;
        overflow: hidden;
        position: relative;
        background: #D6D6D6;
    }

    .owl-progressbar-fill {
        height: 100%;
        width: 0%;
        transition: width 0.3s ease;
        background: #e56400;
        border-radius: 30px;
    }
    .owl-item .features_item{
        visibility: visible !important;
        animation-duration: 0ms !important;
        animation-delay: 0ms !important;
        animation-name: none !important;
    }
    #features .premium_features_pera {
        color: #e56400;
        font-weight: 700;
        font-size: 18px;
    }
    .premium_features_image svg path {
        fill: #fff;
    }
    .premium_features_image svg.typing_status_icon path {
        stroke: #fff;
    }
}

/* Mobile centering fixes - AGGRESSIVE */
@media (max-width: 767px) {
    /* Reset any conflicting margins and paddings */
    * {
        box-sizing: border-box;
    }

    /* Force all containers to center with maximum specificity */
    body .container,
    section .container,
    header .container,
    footer .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
    }

    /* Force all rows to center properly */
    .container .row,
    .row {
        display: flex !important;
        flex-wrap: wrap !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        justify-content: center !important;
    }

    /* Force all columns to center */
    .col-12, .col-md-6, .col-lg-4, .col-lg-8, .col-lg-6, .col-md-10, .col-md-8,
    .col-lg-8.col-md-10.col-12, .col-lg-8.col-md-10.col-12.text-center {
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
        flex: 0 0 auto !important;
    }

    /* Force gray box to center */
    /*.premium_features_box,*/
    /*.contact_form .premium_features_box,*/
    /*.col-lg-8.col-md-10.col-12.p-3.wow.zoomIn.premium_features_box,*/
    /*.row.text-center.justify-content-center > .col-lg-8.col-md-10.col-12.p-3.wow.zoomIn.premium_features_box {*/
    /*    margin-left: auto !important;*/
    /*    margin-right: auto !important;*/
    /*    max-width: 100% !important;*/
    /*    width: 100% !important;*/
    /*    float: none !important;*/
    /*    display: block !important;*/
    /*    position: relative !important;*/
    /*    left: 0 !important;*/
    /*    right: 0 !important;*/
    /*}*/

    /* Force form elements to center */
    .contact_form input,
    .contact_form select,
    .contact_form textarea,
    .contact_form .form-group {
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
        max-width: 100% !important;
    }

    /* Force justify-content-center to work */
    .row.justify-content-center,
    .row.text-center.justify-content-center {
        justify-content: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Force sections to center content */
    section {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Complete mobile reset for perfect centering */
    * {
        box-sizing: border-box !important;
    }

    html, body {
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
    }

    /* Force all containers to perfect center */
    .container,
    .container-fluid,
    section > .container,
    header > .container,
    footer > .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Force all rows to center perfectly */
    .row,
    .container > .row,
    .container .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: stretch !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Force all columns to center perfectly */
    [class*="col-"] {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        flex: 0 0 auto !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Special handling for centered content rows */
    .row.text-center.justify-content-center,
    .row.justify-content-center {
        justify-content: center !important;
        align-items: center !important;
    }

    .row.text-center.justify-content-center > [class*="col-"],
    .row.justify-content-center > [class*="col-"] {
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
        flex: 0 0 auto !important;
    }

    /* Force gray box to perfect center */
    /*.premium_features_box,*/
    /*.col-lg-8.col-md-10.col-12.p-3.wow.zoomIn.premium_features_box,*/
    /*.row.text-center.justify-content-center > .col-lg-8.col-md-10.col-12.p-3.wow.zoomIn.premium_features_box {*/
    /*    margin-left: auto !important;*/
    /*    margin-right: auto !important;*/
    /*    max-width: 100% !important;*/
    /*    width: 100% !important;*/
    /*    float: none !important;*/
    /*    display: block !important;*/
    /*    position: relative !important;*/
    /*    left: 0 !important;*/
    /*    right: 0 !important;*/
    /*    padding-left: 15px !important;*/
    /*    padding-right: 15px !important;*/
    /*    box-sizing: border-box !important;*/
    /*}*/

    .step_card{
        /*padding-top: 30px;*/
        padding-bottom: 30px;
        padding-top: 40px;
    }
    .premium_features_box{
        /*padding-top: 36px;*/
        /*padding-bottom: 37px;*/
        padding-top: 40px;
        padding-bottom: 40px;
    }


    /* Fix back-to-top button position for mobile */
    .zero-scrolltop {
        right: 15px !important;
        bottom: 15px !important;
        width: 30px !important;
        height: 30px !important;
        line-height: 30px !important;
        z-index: 1000 !important;
    }

    .zero-scrolltop img {
        width: 15px !important;
        height: 15px !important;
    }
    .step_card{
        height: 100%;
    }
    .step_content {
        padding-top: 0;
        padding-bottom: 0;
    }
    .simple_steps_headline .title_inner{
        font-size: 36px;
    }
    .step_icon {
        width: 84px;
        height: 84px;
        margin-bottom: 20px;
    }
    .step_icon span {
        font-size: 64px;
    }
    .simple_steps_headline {
        margin-bottom: 30px;
    }
}

@media (max-width: 320px) {
    .nav-item.app_pin_logo .img-fluid {
        width: 130px !important;
    }

    .navbar-expand-lg.navbar .nav-link {
        font-size: 18px;
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

@media (max-height: 420px) {
    .nav-item.app_pin_logo .img-fluid {
        width: 90px !important;
    }

    .navbar-expand-lg.navbar .nav-link {
        font-size: 17px;
        padding-top: 0px;
        font-weight: 700;
        padding-bottom: 0px;
    }

    .navbar-expand-lg.navbar .icons_div .icon_div {
        width: 40px;
        height: 40px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    .navbar-expand-lg.navbar .icons_div {
        margin-top: 6px;
    }

    .navbar-expand-lg.navbar .app_pin_logo {
        margin-top: 5px;
        margin-bottom: 6px;
    }
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
}

/* Force mobile centering - inline styles */
@media (max-width: 767px) {
    * {
        box-sizing: border-box !important;
    }

    html, body {
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
    }

    .container, .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        width: 100% !important;
    }

    [class*="col-"] {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        flex: 0 0 auto !important;
    }

    /*.premium_features_box,*/
    /*.col-lg-8.col-md-10.col-12.p-3.wow.zoomIn.premium_features_box {*/
    /*    margin-left: auto !important;*/
    /*    margin-right: auto !important;*/
    /*    max-width: 100% !important;*/
    /*    width: 100% !important;*/
    /*    padding-left: 15px !important;*/
    /*    padding-right: 15px !important;*/
    /*}*/
    .zero-scrolltop {
        right: 15px !important;
        bottom: 15px !important;
        width: 30px !important;
        height: 30px !important;
        line-height: 30px !important;
    }
    .zero-scrolltop img {
        width: 15px !important;
        height: 15px !important;
    }
    /* Hide social media icons section on mobile and remove space */
    @media (max-width: 767px) {
        .col-md-6.col-12.animate_slide.d-flex.align-items-center.justify-content-center.justify-content-md-end {
            display: none !important;
            visibility: hidden !important;
            height: 0 !important;
            margin: 0 !important;
            padding: 0 !important;
        }
    }

    .captcha {
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    iframe[src*="challenges.cloudflare.com"] {
        margin: 0 auto !important;
        display: block !important;
    }
}

/* Orange gradient border only for active/front image */
#screenshots .swiper-slide.swiper-slide-active img {
    border: 3px solid transparent !important;
    border-radius: 15px !important;
    background: linear-gradient(135deg, #ff8c00, #ff6b35, #e56400) border-box !important;
    box-shadow: 0 8px 25px rgba(229, 100, 0, 0.15) !important;
}

/* Fix image sizing in swiper slides */
#screenshots .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

#screenshots .swiper-slide img {
    max-width: 100%;
    /*max-height: 100%;*/
    max-height: 78vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    height: 100%;
}
/**************************/
body.body_inner_page footer{
    margin-top: auto;
}
body.body_inner_page{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
@media all and (max-width: 767px) {
    body.body_inner_page{
        min-height: auto;
        display: block;
    }
}
body.body_inner_page footer{
    background-color: #000;
}
.body_inner_page .navbar {
    background-color: #000;
}

.inner_page_section{
    /*padding-top: 86px;*/
    /*padding-top: 140px;*/
    /*padding-bottom: 60px;*/
    padding-top: 100px;
    padding-bottom: 0px;
    background-color: #FAFAFA;
    min-height: 74vh;
}

@media all and (max-width: 767px) {
    .inner_page_section .simple_steps_headline{
        padding: 0 16px;
    }
    .content_inner_page h2{
        font-size: 24px;
    }
    .content_inner_page h3{
        font-size: 20px;
    }
}
.inner_page_section .container{
    /*background: #fff;*/
    border-radius: 8px;
    padding: 40px 20px 40px 20px;
}
.inner_page_section .title_inner{
    color: #000000;
}
.inner_page_section .title_inner p{
    color: #666666;
}
.content_inner_page h2{
    color: #000000;
    font-weight: 600;
}
.content_inner_page h3{
    color: #000000;
    font-weight: 600;
    font-size: 22px;
}
.content_inner_page p{
    color: #111111;
}
.content_inner_page ul li{
    color: #111111;
}
.content_inner_page p + h2,
.content_inner_page ul + h2{
    padding-top: 10px;
}
.content_inner_page p + h3,
.content_inner_page ul + h3{
    padding-top: 6px;
}
.inner_page_section .intro_image_right {
    width: 100%;
}
.checkbox_alert {
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    border: 2px solid #e56400;
    border-radius: 8px;
    padding: 10px 10px;
    margin-bottom: 10px;
    display: none;
}
.checkbox_alert p{
    margin-bottom: 0;
}
.checkbox_alert.active{
    display: block;
}
.email_error_message {
    display: none;
    color: #ff6c6c;
    font-size: 12px;
    font-weight: 400;
}

.email_error_message.active {
    display: block;
}
.form-group {
    position: relative;
}
.file_item {
    display: flex;
    justify-content: space-between;
    padding: 6px 10px;
    margin-top: 5px;
    background: #f3f3f3;
    border-radius: 6px;
    gap: 5px;
}

.file_remove {
    cursor: pointer;
    color: red;
    z-index: 9;
    width: 20px;
    height: 20px;
}
.file_list{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #000;
}
.uploadFile {
    border-radius: 8px;
    padding: 10px;
}
.file_error_message{
    color: #ff6c6c;
    font-size: 14px;
}
.file_error_message.active{
    padding-top: 10px;
}
/*.faq_section{*/
/*    background: ;*/
/*}*/
/*********************************/
.faq_section{
    background: #FAFAFA;
}
.faq_headline {
    color: #000;
}
#faq .faq-heading {
    color: #000;
}
#faq .faq-text {
    color: #000;
}
#faq .faq_item.active .faq-heading {
    color: #e56400;
    border-color: #000000;
}
.faq-text a {
    color: #000;
}
/********************************/
.content_inner_page table{
    width: 100%;
}
.content_inner_page table{
    margin-bottom: 1rem;
}
.content_inner_page table,
.content_inner_page th,
.content_inner_page td {
    border: 1px solid #666666;
    border-collapse: collapse;
    padding: 10px;
}
.content_inner_page table tr th{
    background: #e2e6ea;
}

@media all and (max-width: 767px) {
    .content_inner_page td{
        font-size: 14px;
    }
    .content_inner_page table,
    .content_inner_page th,
    .content_inner_page td {
        padding: 5px;
    }
}