/****/
/*/FONT-SIZE/*/
.fs_10 {
    font-size: 10px !important;
}

.fs_11 {
    font-size: 11px !important;
}

.fs_12 {
    font-size: 12px !important;
}

.fs_13 {
    font-size: 13px !important;
}

.fs_14 {
    font-size: 14px !important;
}

.fs_15 {
    font-size: 15px !important;
}

.fs_16 {
    font-size: 16px !important;
}

.fs_17 {
    font-size: 17px !important;
}

.fs_18 {
    font-size: 18px !important;
}

.fs_19 {
    font-size: 19px !important;
}

.fs_20 {
    font-size: 20px !important;
}

.fs_22 {
    font-size: 22px !important;
}

.fs_24 {
    font-size: 24px !important;
}

.fs_26 {
    font-size: 26px !important;
}

.fs_28 {
    font-size: 28px !important;
}

.fs_30 {
    font-size: 30px !important;
}

.fs_32 {
    font-size: 32px !important;
}

.fs_34 {
    font-size: 34px !important;
}

.fs_36 {
    font-size: 36px !important;
}

.fs_38 {
    font-size: 38px !important;
}

.fs_40 {
    font-size: 40px !important;
}

.fs_50 {
    font-size: 50px !important;
}

.fs_60 {
    font-size: 60px !important;
}

.fs_70 {
    font-size: 70px !important;
}

.fs_80 {
    font-size: 80px !important;
}

.fs_90 {
    font-size: 90px !important;
}

.fs_100 {
    font-size: 100px !important;
}

.fw_400 {
    font-weight: 400;
}

.fw_500 {
    font-weight: 500;
}

.fw_600 {
    font-weight: 600;
}

.fw_700 {
    font-weight: 700;
}

.fw_800 {
    font-weight: 800;
}

.fw_900 {
    font-weight: 900;
}

.clip_1 {
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.clip_2 {
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.clip_3 {
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.clip_4 {
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.clip_5 {
    -webkit-line-clamp: 5;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.clip_6 {
    -webkit-line-clamp: 6;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.clip_7 {
    -webkit-line-clamp: 7;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.clip_8 {
    -webkit-line-clamp: 8;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

/*/Modal/*/
.new_modal {
    position: fixed;
    height: 100vh;
    width: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #0000005c;
    z-index: 9999;
    visibility: hidden;
}

.new_modal .modal_content {
    max-height: 100vh;
    overflow: hidden;
    overflow-x: hidden;
    background-color: #fff;
    border-radius: 3px;
    -webkit-transform: scale(0.2);
    -ms-transform: scale(0.2);
    transform: scale(0.2);
    opacity: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.modal_open {
    visibility: visible;
}

.modal_open .modal_content {
    -webkit-transform: scale(1.0);
    -ms-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 1;
}

.new_modal .mw_auto {
    width: auto;
}

.new_modal .mw_320 {
    min-width: 320px;
    max-width: 320px;
}

.new_modal .mw_400 {
    min-width: 320px;
    max-width: 400px;
}

.new_modal .mw_500 {
    min-width: 320px;
    max-width: 500px;
}

.new_modal .mw_600 {
    min-width: 320px;
    max-width: 600px;
}

.new_modal .mw_700 {
    min-width: 320px;
    max-width: 700px;
}

.new_modal .mw_1000 {
    min-width: 320px;
    max-width: 1000px;
}

.new_modal .w_320 {
    min-width: 320px;
    width: 320px;
}

.new_modal .w_400 {
    min-width: 320px;
    width: 400px;
}

.new_modal .w_500 {
    min-width: 320px;
    width: 500px;
}

.new_modal .w_600 {
    min-width: 320px;
    width: 600px;
}

.new_modal .w_700 {
    min-width: 320px;
    width: 700px;
}

.new_modal .w_800 {
    min-width: 320px;
    width: 800px;
}

.new_modal .w_900 {
    min-width: 320px;
    width: 900px;
}

.new_modal .w_1000 {
    min-width: 320px;
    width: 1000px;
}

.new_modal .w_fit {
    min-width: 320px;
    width: 100%;
}

.new_modal .mh_auto {
    min-height: 100px;
    height: auto;
}

.new_modal .mh_fit {
    height: 100vh;
}

.new_modal .modal_head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 59px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.new_modal .modal_head h6,
.new_modal .modal_head i {
    padding: 15px;
    color: #39363a;
    font-weight: bold;
}

.new_modal .modal_head i {
    cursor: pointer;
}

.new_modal .modal_body {
    max-height: calc(100vh - 120px);
    min-height: 100px;
    padding: 20px 15px 25px;
    overflow-y: auto;
}

.new_modal .mh_fit .modal_body {
    height: 100vh !important;
}

.new_modal .modal_footer {
    padding: 5px 15px;
    height: 60px;
    background-color: #eee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    grid-gap: 5px;
}

.new_modal .input_flex {
    border: 1px solid #aaa;
}

.new_modal .input_flex span {
    padding: 0 4px 0 10px;
}

.new_modal .input_flex input {
    color: #111;
    width: 100%;
    border: none;
    padding: 21px 12px 4px;
    font-size: 15px;
    background-color: #f9f9f9c7;
}

.new_modal .input_flex textarea {
    color: #111;
    width: 100%;
    border: none;
    padding: 21px 12px 4px;
    font-size: 15px;
    background-color: #f9f9f9c7;
}

.new_modal .input_flex select {
    color: #111;
    width: 100%;
    border: none;
    padding: 21px 8px 6px;
    font-size: 15px;
    background-color: #f9f9f9c7;
}

.new_modal .modal_footer button {
    padding: 13px 25px;
}


.para {
    color: #a3a3a3;
}

.stars {
    display: flex;
    gap: 10px;
}

.star {
    color: #E6C7F6;
    font-size: 40px;
}

.one_icon {
    background-color: #ccc;
    width: 15%;
    border-radius: 55px;
    position: relative;
    padding: 15px 15px !important;
    white-space: nowrap;

}

.icon_2 {
    width: 20%;
}

.gap_1 {
    padding-left: 23px;
}

.android {
    position: absolute;
    color: #000;
    top: 5px;
    left: 0;
    height: 100%;
    width: 100%;
}

.company_icons {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px !important;
    width: 45px;
    border-radius: 50%;
    background-color: #3f3992c5;
    color: #fff;
    margin-left: 10px;
    text-decoration: none;
}

.next_company_icons {
    background-color: #4646463a;
}

.next_company_icons_2 {
    background-color: #c4bfbfbd;
}

.windows {
    color: #87ceeb;
}

.text_color1 {
    color: #000;
}

.stats-bg {
    position: relative;
    background-image: url('../images/istockphoto-1433540156-612x612.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.stats-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #0f052bec;
}

.stats-content {
    position: relative;
    padding: 80px 15px;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
}

.stat-label {
    font-size: 1rem;
    color: #ddd;
}

.dot-divider {
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    margin: 0 20px;
    display: inline-block;
    vertical-align: middle;
}

.web_img {
    height: 300px;
    width: 100%;
}

.web_img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.web-img_3 {
    height: 300px;
    position: relative;
}

.web_img_3 img {
    object-fit: cover;
}

.web-img_4 {
    height: auto;
    width: 100%;
}

.web-img_4 img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px !important;
}

.web-img_5 {
    height: 300px;
    width: 100%;
}

.web-img_5 img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.person_img {
    height: 50px;
    width: 50px;
}

.person_img img {
    height: 100%;
    width: 100%;
    border-radius: 50%;
}

.next_person_img {
    height: 90px;
    width: 90px;
}

.person_info {
    width: calc(100% - 90px);
}

.tech span {
    background-color: #3d1a52;
    padding: 5px 20px;
    border-radius: 25px;
    position: absolute;
    top: -130px;
    right: 25px;
}

.web_info_4 {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    /* background-color: #0000002f; */
}

.next_main_info {
    border: 1px solid #ccc;
    border-radius: 10px;
}

.main_all_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.main_info {
    position: relative;
    top: 150px;
}

.spase_3 {
    margin-left: 25px;
}

.menu {
    white-space: nowrap;
    overflow-x: auto;
}

.menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 90px;
}

.menu ul li a {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.5s;
}

.menu ul li a:hover {
    color: #2bff00;
}

.menu .act_menu {
    color: #2bff00;
}

.trending_sec_start {
    height: auto;
    width: 100%;
    background-image: url('../images/pexels-frank-cone-140140-2495173.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.trending_sec_start::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #000000e7;
    z-index: 0;
    pointer-events: none;
}

.trending_sec_start .container {
    position: relative;
    z-index: 2;
}

.banner_sec {
    height: 500px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-image: url('../images/Screenshot_11.png');
}

.bg_color_1 {
    background-color: #8b81a760;
    color: #fff;
}

.bg_color_2 {
    background-color: #3f51b575;
}

.bg_color_3 {
    background-color: #1e1e3f;
}

.bg_color_4 {
    background-color: #fff !important;
}

.radius_1 {
    border-radius: 0 0 10px 10px;
}

.text_color_1 {
    color: #fff;
}

.comment {
    display: inline-block;
    color: #fff;
    width: max-content;
    border: none;
    text-align: center;
    font-weight: 500;
    background-color: #8b81a760;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
}

.form_info {
    border-radius: 25px;
    border: 1px solid #fff;
}

.form-container {
    border-radius: 12px;
    padding: 25px;
    margin: auto;
    border-radius: 25px;
    border: 1px solid #fff;
}

.form-control,
.form-control::placeholder {
    background: #3d3a69;
    color: #c1b7e1;
    border: none;
    border-radius: 8px;
    font-weight: 500;
}

.form-control {
    padding: 15px;
}

.form-control:focus {
    background: #3d3a69;
    color: #c1b7e1;
    box-shadow: none;
    border-color: #6f42c1;
}

.form-control-lg {
    height: 100px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.btn-purple {
    background: #9662e4;
    color: white;
    border-radius: 8px;
    font-weight: 400;
    height: 45px;
}

.btn-purple:hover {
    background: #7e4cd1;
    color: white;
}

.m_top_5 {
    margin-top: 98px;
}

.form_img img {
    border-radius: 0px 95px 0 95px;
}

.heading_6 {
    margin-top: 15px;
}

.info-card {
    background-color: #1e0b3c;
    border-radius: 1rem;
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #5e3bbd;
}

.info-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.info-card h5 {
    padding-top: 15px;
    font-weight: 600;
}

.info-card p {
    font-size: 0.875rem;
    color: #ccc;
    padding-top: 10px;
}

.info-card {
    position: relative;
}

.card-img img {
    position: absolute;
    top: -20px;
}


.pricing-table {
  background: linear-gradient(180deg, #31194b, #251945);
  padding: 40px;
  border-radius: 20px;
  overflow-x: auto;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
  text-align: center;
}

.pricing-table thead th {
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
}

.pricing-table thead small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #aaa;
}

.pricing-table td,
.pricing-table th {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px;
}

.pricing_btn {
  margin-top: 10px;
  padding: 8px 16px;
  background: #fff;
  color: #333;
  font-size: 14px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.pricing_btn:hover {
  background: #6c63ff;
  color: #fff;
}

.checkmark {
  color: #6c63ff;
  font-weight: bold;
  font-size: 18px;
}


@media only screen and (max-width:768px) {
    .new_modal {
        background-color: #fff;
        align-items: inherit;
    }

    .new_modal .modal_content {
        height: 100vh;
    }
}

/*/Modla Ends/*/

@media (max-width: 991px) {
    .m_top_2 {
        margin-top: 10px;
    }

    .web_info_4 {
        top: -30px;
    }

    .tech span {
        top: -90px;
    }

    .bg_color_2 {
        width: 16%;
    }

    .m_top_6 {
        margin-top: 45px;
    }
}

@media (max-width: 768px) {
    .banner_sec {
        height: 400px;
    }

    .menu ul {
        grid-gap: 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .one_icon {
        width: 22%;
    }

    .web_info_4 {
        top: -50px;
    }

    .tech span {
        top: -40px;
    }

    .heading_5 {
        font-size: 16px;
    }

    .icon_3 {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .info-box {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto;
    }
}

@media (max-width: 660px) {
    .tech span {
        top: -20px;
        font-size: 14px !important;
    }
}

@media (max-width: 575px) {
    .banner_sec {
        height: 300px;
    }

    tbody tr td:first-child {
        font-size: 12px;
    }

    tbody td {
        font-size: 12px !important;
    }

    .checkmark {
        font-size: 12px !important;
    }

    .white_space {
        font-size: 10px;
    }

    .d_none {
        display: none;
    }

    .m_top_2 {
        margin-top: 15px;
    }

    .company_icons {
        height: 27px !important;
        width: 27px;
        font-size: 17px !important;
    }

    .one_icon {
        width: 25%;
    }

    .icon_3 {
        width: 100% !important;
        font-size: 12px;
    }

    .android {
        top: 15px;
    }

    .android_span {
        margin-left: 25px;
    }

    .spase_2 {
        margin-left: 5px;
        font-size: 12px;
    }

    .web_info_4 {
        top: -0px;
        padding-left: 85px;
        padding-right: 75px;
    }

    .tech span {
        top: -140px;
    }

    .m_top_3 {
        margin-top: 15px !important;
    }

    .m_top_4 {
        margin-top: 25px;
    }

    .m_top_5 {
        margin-top: 45px;
    }

    .heading_text {
        text-align: center;
    }

    .web-img_4 {
        height: 350px;
    }

    .width_box_1 {
        width: 100%;
    }

    .heading_6 {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .heading_4 {
        font-size: 18px;
    }
}

@media (max-width: 420px) {
    .banner_sec {
        height: 200px;
    }

    .text_font1 {
        font-size: 14px;
    }

    .one_icon {
        width: auto;
    }

    .spase {
        padding-left: 25px;
    }

    .moscd_block {
        display: inline-block !important;
    }

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

    .next_person_img {
        height: 50px;
        width: 50px;
    }

}

@media (max-width: 495px) {
    .menu ul {
        justify-content: inherit;
    }

    .web_info_4 {
        padding-left: 60px;
        padding-right: 45px;
    }

}

@media (max-width: 400px) {
    .heading_4 {
        font-size: 16px;
    }
}

@media (max-width: 344px) {
    .banner_sec {
        height: 150px;
    }

    .text_font1 {
        font-size: 14px;
    }

    .company_icons {
        height: 23px !important;
        width: 23px !important;
        border-radius: 50% !important;
        font-size: 14px !important;
    }

    .android_span {
        margin-left: 15px;
    }

    .web_info_4 {
        top: -20px;
    }

    .tech span {
        top: -100px;
    }
}