@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');


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

a {
    text-decoration: none;
}

ul {
    list-style: none;
}


html {
    scroll-behavior: smooth;
}

:root {
    --headFont: 'Jost', sans-serif;
    --bodyFont: 'Jost', sans-serif;
    --styleFont: 'Jost', sans-serif;
    --themeColor: #479ccf;
    --headColor: #150050;
    --bodyColor: #747474;
}

/*.container {
  max-width: 1360px;
  width: 100%;
  margin: auto;
  padding: 0 20px;
}*/

img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    display: block;
}

/* ******************************************************** common css *********************************************************** */

.flex {
    display: flex;
    flex-wrap: wrap;
}

.align_center {
    align-items: center;
}

.justify_between {
    justify-content: space-between;
}

.justify_center {
    justify-content: center;
}

.justify_end {
    justify-content: flex-end;
}

/* ******** start header ******** */

.menu_icon {
    display: none;
}

body.active {
    overflow: hidden;
}

/* body.active::before {
    content: "";
    position: absolute;
    background: #000;
    opacity: 50%;
    height: 99999vh;
    width: 100vw;
    z-index: 99999;
} */

.site-header {
    position: fixed;
    top: 0;
    z-index: 9;
    width: 100%;
    background: transparent;
    transition: transform 0.25s;
}

.hidden {
    transform: translateY(-100%);
}

/*header.scroll {
  background: #fff;
  box-shadow: 0px 4px 14px 0px rgba(168, 168, 168, 0.25);
}

header.scroll .main_header {
  padding: 20px 0;
}*/

main {
    padding-top: 30px;
}

/* nav {
    margin-left: -45px;
} */

.nav_disabled {
    pointer-events: none !important;
    opacity: 0.6 !important;
}

.main_header {
    padding: 25px 0;
}

.header_logo a {
    display: block;
}

.main_header nav ul {
    border-radius: 50px;
    background: #fff;
    box-shadow: 0px 4px 14px 0px rgba(96, 96, 96, 0.25);
    padding: 8px 10px;
}

.main_header nav ul.sub-menu {
    position: absolute;
    top: 100%;
    width: max-content;
    border-radius: 10px;
    right: 0;
    display: none;
    box-shadow: 0px 4px 14px 0px rgba(96, 96, 96, 0.25);
}

.main_header nav ul.sub-menu li a {
    padding: 10px 15px;
}

.main_header nav .has-child {
    position: relative;
}

#main #not_found_section {
    text-align: center;
}

.main_header nav .has-child>a:after {
    content: "";
    height: 5px;
    width: 5px;
    border-right: solid 1.5px #272829;
    border-bottom: solid 1.5px #272829;
    position: absolute;
    top: 14px;
    right: 17px;
    transform: rotate(45deg);
    display: block;
    transition: all ease-in-out 0.3s;
}

.main_header nav .has-child>a:hover:after {
    border-right: solid 1.5px #fff;
    border-bottom: solid 1.5px #fff;
    transform: rotate(225deg);
    top: 16px;
}

/*header.scroll .main_header nav ul {
  box-shadow: unset;
}*/

.main_header nav ul li a,
.main_header nav ul li .non-link {
    color: #272829;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    transition: 0.3s;
    padding: 10px 30px;
    display: block;
}

.main_header nav ul li a:hover,
.main_header nav ul li .non-link:hover {
    background: #272829;
    border-radius: 50px;
    color: #fff;
}

.main_header nav>ul>li {
    position: relative;
}

.header_btn .btn {
    color: var(--themeColor);
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    padding: 10px 30px;
    border: 1px solid #10a19d;
    background: #fff;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.25);
    transition: 0.3s;
    border-radius: 26px;
    display: block;
}

.header_btn .btn:hover {
    box-shadow: none;
}

/* ******** end header  ********** */

/* ************ start top arrow ********************* */
.top_arrow_button {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 9;
    display: none;
}

.top_arrow_button a {
    background: linear-gradient(90deg, rgb(71 156 207) 0%, rgb(232 246 255) 100%);
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0px 1px 10px rgba(43, 43, 43, 0.5);
}

/* ************ end top arrow ********************* */

/* ******** start hero banner  ********** */
.hero_section {
    position: relative;
}

.main_banner .left_banner {
    max-width: 40%;
    width: 100%;
}

.main_banner .right_banner {
    max-width: 60%;
    width: 100%;
}

.left_banner_vector {
    position: absolute;
    top: -105px;
    width: 100%;
    left: 0;
    z-index: -1;
}

.left_banner_vector::before {
    content: "";
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 13.02%,
            rgba(255, 255, 255, 0.5) 34.9%,
            #fff 100%);
    position: absolute;
    height: 100%;
    width: 100%;
}

.left_banner_vector2 {
    position: absolute;
    filter: blur(75px);
    left: 0;
    top: 40%;
    z-index: -1;
}

.left_banner .left_banner_content span {
    color: var(--themeColor);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    display: block;
}

.left_banner .left_banner_content h1 {
    color: #272829;
    font-family: var(--headFont);
    font-size: 33.3px;
    font-weight: 700;
    line-height: 42px;
    margin-bottom: 25px;
    margin-top: 9px;
}

.left_banner .left_banner_content p {
    color: #747474;
    font-size: 15px;
    font-weight: 400;
}

.left_banner_content .star_svg {
    gap: 2px;
}

.left_banner_content .banner_btn a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    background: #000;
    box-shadow: 0px 4px 14px 0px rgba(123, 123, 123, 0.25);
    padding: 12px 25px;
    transition: 0.3s;
    border: solid 1px #000;
}

.left_banner_content .banner_btn a:hover {
    background: var(--themeColor);
    border: solid 1px var(--themeColor);
}

.left_banner_content .banner_btn a.border-btn {
    background-color: transparent;
    color: #10a19d;
    border: 1px solid #10a19d;
    font-weight: 400;
}

.left_banner_content .banner_btn a.border-btn:hover {
    color: #fff;
    background-color: #10a19d;
}

.left_banner_content .banner_btn {
    display: flex;
    margin-top: 35px;
    gap: 15px;
}

.right_banner_vector {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.right_banner_vector2 {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -2;
    filter: blur(100px);
}

.right_banner_content .right_img1_content p,
.right_banner_content .right_img2_content p,
.right_banner_content .right_img3_content p {
    color: #000;
    font-family: var(--styleFont);
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    width: 137px;
    text-align: center;
    margin-top: -38px;
}

.right_banner_content .right_img2_content p {
    margin: unset;
}

.right_banner_content svg {
    max-width: 100%;
    height: auto;
}

.right_banner_content .right_img1_content svg {
    max-width: 40%;
}

.right_banner_content .right_img3_content p {
    margin: unset;
}

.right_banner_content {
    display: flex;
    justify-content: end;
}

.right_banner_content .right_banner_img {
    position: relative;
}

.right_banner_content .right_img1_content {
    position: absolute;
    left: -2%;
    top: 3%;
    width: 56.7978%;
    display: none;
}

.right_banner_content .right_img2_content {
    position: absolute;
    right: 15%;
    bottom: 9%;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 9.4043%;
    display: none;
}

.right_banner_content .right_img3_content {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;
    position: absolute;
    left: 10%;
    bottom: 0%;
    width: 13.0094%;
    display: none;
}

.right_banner_content .right_img3_content svg {
    margin-right: -41%;
}

/* ******** end hero banner  ********** */

/* start sponcer logo */

.logo_section {
    overflow: hidden;
}

.sponcer_logo {
    padding: 30px 20px;
    border-top: 1px solid rgba(174, 174, 174, 0.25);
    border-bottom: 1px solid rgba(174, 174, 174, 0.25);
}

/* end sponcer logo */

/* start chat pannel */

.chat_pannel {
    background-image: url("undefined");
    position: relative;
    z-index: 1;
}

.chat_pannel::before {
    content: "";
    background: linear-gradient(360deg,
            rgba(255, 255, 255, 0) 13.02%,
            rgba(255, 255, 255, 0.5) 34.9%,
            #fff 100%);
    position: absolute;
    height: 20%;
    width: 100%;
    top: 0;
    z-index: -1;
}

.chat_pannel::after {
    content: "";
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 13.02%,
            rgba(255, 255, 255, 0.5) 34.9%,
            #fff 100%);
    position: absolute;
    height: 7%;
    width: 100%;
    z-index: -2;
    bottom: 0;
}

.pannel_title {
    text-align: center;
    margin: auto;
    padding-bottom: 60px;
    padding-top: 40px;
}

.pannel_title h2 {
    color: var(--themeColor);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
}

.pannel_title h3,
.pannel_title .h3 {
    color: #000;
    font-family: var(--headFont);
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
    margin-top: 15px;
    /* width: 72.2%; */
    margin-left: auto;
    margin-right: auto;
}

.pannel_title p {
    color: #585858;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.chat_vector,
.chat_vector2,
.chat_vector3 {
    position: absolute;
    z-index: 0;
    left: 0;
}

.chat_vector2 {
    top: -120px;
    filter: blur(100px);
    z-index: -1;
}

.chat_vector3 {
    right: 0;
    left: unset;
}

.main_chat_pannel {
    margin-top: 45px;
    justify-content: center;
    padding-bottom: 100px;
}

.main_chat_pannel .chat_pannel_img {
    position: relative;
    cursor: pointer;
}

/* start play button */
.chat_pannel_img_gif.active::before {
    display: none;
}

.main_chat_pannel .chat_pannel_img_gif::before {
    content: "";
    position: absolute;
    background: #182160;
    opacity: 27%;
    height: 100%;
    width: 100%;
    border-radius: 8px;
}

.main_chat_pannel .chat_pannel_img.chat_pannel_img_gif .play_button {
    position: absolute;
    top: 45%;
    left: 48%;
    cursor: pointer;
    z-index: 2;
}

.main_chat_pannel .chat_pannel_img.chat_pannel_img_gif .play_button svg {
    fill: #fff;
    display: block;
}

/* end play button */

.chat_pannel .chat_content p {
    width: 121px;
    font-family: var(--styleFont);
    text-align: center;
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}

.chat_content1 {
    text-align: end;
    position: absolute;
    left: -14.9%;
    top: 37%;
    width: 15.2221%;
}

.chat_content2 {
    position: absolute;
    right: -17%;
    top: 15%;
    width: 15.2221%;
}

.chat_content.chat_content3 {
    position: absolute;
    bottom: -21%;
    left: 30%;
    width: 25.79453%;
}

.chat_content3 svg {
    max-width: 40%;
    height: auto;
}

.chat_content1 svg {
    max-width: 70%;
    height: auto;
    margin-right: -9px;
}

.chat_content2 svg.custom_order {
    margin-left: -30px;
    max-width: 75%;
    height: auto;
}

.chat_content2 svg.custom_info {
    margin-left: -30px;
    max-width: 65%;
    height: auto;
}

.chat_content.chat_content2 p {
    margin-left: 6.5px;
    width: 140px;
}

.chat_content.chat_content3 p {
    margin-top: 76px;
    width: 80px;
}

.custom_info2,
.custom_order2 {
    display: none;
}

/* +++++++++++ msg chat ++++++++++ */

.main_message_chat {
    padding-top: 90px;
    position: relative;
}

.main_message_chat .pannel_title h3,
.main_message_chat .pannel_title .h3 {
    margin-top: 0;
}

.main_message_chat .msg_chat {
    margin-top: 90px;
    align-items: center;
}

.main_message_chat .left_msg_chat {
    max-width: 51%;
    width: 100%;
}

.main_message_chat .right_msg_chat {
    max-width: 49%;
    width: 100%;
    padding-left: 131px;
    display: flex;
    align-items: end;
}

.left_msg_chat .left_img_content,
.left_msg_chat .left_img_content2 {
    color: #000;
    text-align: center;
    font-family: var(--styleFont);
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}

.left_msg_chat .left_msg_img {
    position: relative;
    margin: 0 auto;
}

.left_msg_chat .left_img_content2 {
    position: absolute;
    top: 24%;
    right: -20%;
    width: 40.9391%;
}

.left_msg_chat .left_img_content {
    position: absolute;
    top: 23%;
    left: 0;
    width: 32.6155%;
}

.left_msg_chat svg {
    max-width: 100%;
    height: auto;
}

.left_msg_chat .left_img_content2 svg {
    max-width: 40%;
    height: auto;
}

.left_msg_chat .left_img_content p,
.left_msg_chat .left_img_content2 p {
    width: 102px;
}

.left_msg_chat .left_img_content p {
    margin-top: -23px;
}

.left_msg_chat .left_img_content2 p {
    margin-top: -19px;
    width: 119px;
}

.right_msg_chat .right_msg_content span {
    color: #150050;
    font-size: 26px;
    font-weight: 500;
    line-height: 30px;
    display: block;
    text-transform: capitalize;
}

.right_msg_chat .right_msg_content h5 {
    color: #747474;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    margin-top: 14px;
    margin-bottom: 23px;
}

.right_msg_content .msg_type {
    gap: 77px;
}

.right_msg_content .msg_type .auto_msg h6 {
    color: #272829;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 15px;
}

.right_msg_content .msg_type .auto_msg p {
    color: #747474;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    align-items: start;
    margin-bottom: 8px;
}

.right_msg_content .msg_type .auto_msg p img,
.right_msg_content .msg_type .auto_msg p svg {
    margin-right: 8px;
    margin-top: 3px;
}

/* end chat pannel */

/* start chat managment */
.row_reverse {
    flex-direction: row-reverse;
}

.managment_title h3 {
    color: #272829;
    text-align: center;
    font-family: var(--headFont);
    font-size: 33.3px;
    font-weight: 700;
    line-height: 42px;
}

.managment_title {
    width: 50%;
    margin: auto;
    position: relative;
    z-index: 1;
}

.main_chat_managment {
    background-image: url("undefined");
    position: relative;
    z-index: 0;
    left: 0;
    padding-top: 90px;
}

.main_chat_managment::before {
    content: "";
    background: linear-gradient(360deg,
            rgba(255, 255, 255, 0) 13.02%,
            rgba(255, 255, 255, 0.5) 34.9%,
            #fff 100%);
    position: absolute;
    height: 20%;
    width: 100%;
    top: 0;
    z-index: -1;
}

.main_chat_managment::after {
    content: "";
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 13.02%,
            rgba(255, 255, 255, 0.5) 34.9%,
            #fff 100%);
    position: absolute;
    height: 15%;
    width: 100%;
    z-index: -1;
    bottom: 0;
}

.left_chat_managment,
.right_chat_managment {
    max-width: 50%;
    width: 100%;
}

.main_chat_managment .left_chat_managment {
    margin-top: 29px;
}

.main_chat_managment .right_chat_managment {
    padding-left: 9px;
}

.main_chat_managment .row_reverse .right_chat_managment {
    padding-right: 30px;
    padding-left: 0;
}

.left_managment_content span {
    color: var(--themeColor);
    font-size: 16px;
    font-weight: 500;
    display: block;
}

.left_managment_content h5 {
    color: #150050;
    font-family: var(--headFont);
    font-size: 26px;
    font-weight: 700;
    line-height: 30px;
    margin: 20px 0;
}

.left_managment_content p {
    color: #747474;
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
    margin-bottom: 15px;
    display: flex;
    align-items: start;
}

.left_managment_content p img {
    margin-right: 8px;
    margin-top: 2px;
}

.right_managment_content .chat_managment_img {
    padding-bottom: 90.15025%;
    position: relative;
    width: 100%;
    height: 100%;
}

.right_managment_content .chat_managment_img img {
    position: absolute;
    left: 0;
    top: 0;
    margin: auto;
    object-fit: contain;
}

/* end chat managment */



/* start testimonial */
.testimonial_section {
    background-image: url("undefined");
    position: relative;
    z-index: 0;
}

.testimonial_section::before {
    content: "";
    background: linear-gradient(360deg,
            rgba(255, 255, 255, 0) 13.02%,
            rgba(255, 255, 255, 0.5) 34.9%,
            #fff 100%);
    position: absolute;
    height: 34%;
    width: 100%;
    top: 0;
    z-index: -1;
}

.testimonial_section::after {
    content: "";
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 13.02%,
            rgba(255, 255, 255, 0.5) 34.9%,
            #fff 100%);
    position: absolute;
    height: 15%;
    width: 100%;
    z-index: -1;
    bottom: 0;
}

.testimonial_section .pannel_title h3,
.testimonial_section .pannel_title .h3 {
    margin-bottom: 16px;
    margin-top: 17px;
}

.testimonial_section .pannel_title div h4 {
    color: #272829;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-left: 8px;
}

.test_star .star_svg {
    gap: 3px;
}

.main_testimonial {
    padding-top: 60px;
    overflow: hidden;
}

.main_testimonial .review_slide {
    border: 1px solid #ebebeb;
    background: #fff;
    padding: 19px 20px;

    display: flex;
    flex-direction: column;
    height: 100%;
}

.review_slide .teview_name {
    height: auto;
}

.review_slide .teview_name h4 {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    width: 60%;
}

.review_slide .teview_name .star_svg {
    gap: 1px;
}

.review_slide .review_p {
    margin-top: auto;
}

.review_slide .review_p p {
    color: #747474;
    font-size: 15px;
    font-weight: 400;
    margin-top: 15px;
}


.review_slide .review_p.active {
    margin-top: 0;
}

/* readmore */
.morecontent span {
    display: none;
}

.morelink {
    color: #10a19d;
    font-weight: 500;
    transition: 0.3s;
}

.morelink:hover {
    color: #150050;
}

/* end testimonial */

/* start pricing */
.pricing_section {
    position: relative;
    z-index: 3;
}

.pricing_section .pannel_title {
    width: 100%;
}

.main_pricing {
    gap: 20px;
    margin-top: 120px;
}

.pricing_view {
    max-width: 25.5%;
    width: 100%;
    position: relative;
}

.pricing_view .plan_btn {
    color: #fff;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    padding: 12px;
    background-color: #6527be;
    display: block;
    margin: 20px 0 0;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: unset;
}

.pricing_view .pricing_advance .plan_btn {
    background-color: #2f58cd;
}

.pricing_view .pricing_primium .plan_btn {
    background-color: #65451f;
}

.pricing_view .pricing_forever,
.pricing_view .pricing_advance,
.pricing_view .pricing_primium {
    padding: 20px;
    background: rgba(101, 39, 190, 0.1);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: baseline;
}

.pricing_view .pricing_advance {
    background: rgba(47, 88, 205, 0.1);
}

.pricing_view .pricing_primium {
    background: rgba(101, 69, 31, 0.1);
}

.pricing_view .pricing_forever span,
.pricing_advance span,
.pricing_primium span {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    padding: 3px 6px;
    background: #6527be;
}

.pricing_advance span {
    background: #2f58cd;
}

.pricing_primium span {
    background: #65451f;
}

.pricing_view .pricing_forever h3,
.pricing_advance h3,
.pricing_primium h3 {
    color: #6527be;
    font-family: var(--headFont);
    font-size: 26px;
    font-weight: 700;
    line-height: 30px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.pricing_advance h3 {
    color: #2f58cd;
}

.pricing_primium h3 {
    color: #65451f;
}

.pricing_view .pricing_forever p,
.pricing_advance p,
.pricing_primium p {
    color: #6527be;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.pricing_advance p {
    color: #2f58cd;
}

.pricing_primium p {
    color: #65451f;
}

.pricing_primium a {
    color: #65451f;
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
    text-decoration-line: underline;
    display: inline-flex;
    align-items: center;
}

.pricing_primium a svg {
    margin-left: 2px;
}

.pricing_view .pricing_forever_content p,
.pricing_advance_content p,
.pricing_primium_content p {
    display: flex;
    align-items: start;
    color: #6527be;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 16px;
}

.pricing_advance_content p {
    color: #2f58cd;
}

.pricing_primium_content p {
    color: #65451f;
}

.pricing_view .pricing_forever_content p img,
.pricing_advance_content p img,
.pricing_primium_content p img {
    margin-right: 8px;
}

.advance_arrow p,
.primium_arrow p {
    color: #000;
    font-family: var(--styleFont);
    font-size: 22px;
    font-weight: 400;
    line-height: 26px;
    margin-right: 7px;
}

.advance_arrow {
    position: absolute;
    top: -54px;
    right: 67px;
}

.primium_arrow {
    position: absolute;
    top: -60px;
    right: 67px;
}

.primium_arrow svg,
.advance_arrow svg {
    margin-top: 13px;
}

.popular_txt {
    position: absolute;
    top: -17px;
    left: 19px;
}

.popular_txt p {
    color: #65451f;
    font-family: var(--styleFont);
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
}

.popular_txt svg {
    margin-left: 0px;
    top: 20px;
    position: absolute;
    rotate: 5deg;
}

/* end pricing */

/* start faq */
.faq_section {
    position: relative;
    z-index: 1;
}

.faq_vector {
    position: absolute;
    right: 0;
    top: -300px;
    filter: blur(100px);
    z-index: -1;
}

.main_faq {
    margin-top: 60px;
}

.main_accordion {
    max-width: 824px;
    width: 100%;
    margin: auto;
}

.accordion {
    width: 100%;
    border: 1px solid #ebebeb;
    background: #fff;
    margin-bottom: 17.5px;
}

.accordion .accordion_pannel h4 {
    padding: 15px;
    color: #434343;
    font-size: 16px;
    font-weight: 500;
}

.accordion .accordion_pannel {
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid #ebebeb;
}

.accordion p {
    color: #545454;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px;
}

.accordion p:last-child {
    margin-bottom: 0px;
}

.accordion p span {
    color: #000;
    font-weight: 600;
}

.pannel {
    display: none;
    padding: 15px;
    padding-top: 13px;
}

.accordion_pannel::before,
.accordion_pannel::after {
    content: "";
    position: absolute;
    top: 50%;
    background-color: #434343;
    transition: all 0.3s;
}

.accordion_pannel::before {
    right: 21px;
    width: 2px;
    height: 12px;
    margin-top: -8px;
}

.accordion_pannel::after {
    right: 16px;
    width: 12px;
    height: 2px;
    margin-top: -3px;
}

.accordion_pannel.active::before {
    transform: rotate(90deg);
}

.accordion .pannel img {
    margin-bottom: 20px;
    width: 100%;
}

/* end faq */

/* start blog */
.blog_section {
    overflow: hidden;
    background-image: url("undefined");
    position: relative;
    z-index: 0;
}

.blog_section::before {
    content: "";
    background: linear-gradient(360deg,
            rgba(255, 255, 255, 0) 13.02%,
            rgba(255, 255, 255, 0.5) 34.9%,
            #fff 100%);
    position: absolute;
    height: 15%;
    width: 100%;
    top: 0;
    z-index: -1;
}

.blog_section::after {
    content: "";
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 13.02%,
            rgba(255, 255, 255, 0.5) 34.9%,
            #fff 100%);
    position: absolute;
    height: 15%;
    width: 100%;
    z-index: -1;
    bottom: 0;
}

.main_blog {
    margin-top: 61px;
}

.blog_section .pannel_title {
    width: 100%;
}

.blog_view .blog_contanet h4 {
    color: #3e3e3e;
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 10px;
}

.blog_view .blog_contanet p {
    color: #3e3e3e;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    margin-top: auto;
}

.blog_view .blog_contanet {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 16px;
}

.blog_view .blog_img {
    padding-bottom: 77.5193%;
    position: relative;
    width: 100%;
    height: auto;
}

.blog_view .blog_img img {
    position: absolute;
    left: 0;
    top: 0;
    margin: auto;
    object-fit: cover;
    width: 100%;
}


.blog_view {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog_slider {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 60px;
}

.blog_slider .main_blog_wrap {
    display: flex;
    flex-direction: column;
    height: auto;
    max-width: calc(33.33% - 14px);
    width: 100%;
}

.main_blog .blog_btn {
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    padding: 12px 40px;
    background: #000;
    box-shadow: 0px 4px 14px 0px rgba(123, 123, 123, 0.25);
    transition: 0.3s;
    display: block;
    width: 155px;
    margin: 50px auto 0;
}

.main_blog .blog_btn:hover {
    background-color: var(--themeColor);
}

.blog_pagination ul {
    gap: 12px;
    justify-content: center;
    margin-top: 50px;
}

.blog_pagination ul li a {
    height: 34px;
    width: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bodyColor);
    font-family: var(--bodyFont);
    font-size: 18px;
    line-height: 24px;
    border-radius: 8px;
    transition: 0.3s;
}

.blog_pagination ul li a svg path {
    stroke: #479ccf;
}

.blog_pagination ul li a.active,
.blog_pagination ul li a:hover {
    background-color: #479ccf;
    color: #fff;
}

.blog_pagination a:hover svg path {
    stroke: #fff;
}

/* end blog */

/* start help section */
.need_help_section .pannel_title {
    width: 100%;
}

.need_help_section .help_btn {
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    padding: 12px 40px;
    background: #000;
    box-shadow: 0px 4px 14px 0px rgba(123, 123, 123, 0.25);
    transition: 0.3s;
    display: block;
    width: 155px;
    margin: auto;
}

.need_help_section .help_btn:hover {
    background-color: var(--themeColor);
}

.need_help_section .pannel_title h3,
.need_help_section .pannel_title .h3 {
    margin-top: 13px;
    margin-bottom: 20px;
}

/* end help section */

/* start footer */

.foot_vector {
    position: absolute;
    bottom: 0;
    z-index: -1;
}

.footer_content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer_content a {
    display: block;
}

.footer_content ul li a {
    color: #434343;
    font-size: 14px;
    font-weight: 400;
    transition: 0.3s;
}

.footer_content ul li a:hover {
    color: var(--themeColor);
}

.footer_content ul {
    gap: 30px;
    padding: 14px 15px;
    border-top: 1px solid #1c22601a;
    border-bottom: 1px solid #1c22601a;
    margin-top: 29px;
    margin-bottom: 18px;
}

.footer_content .footer_social_icon {
    gap: 15px;
    margin-bottom: 20px;
}

.footer_social_icon a svg {
    display: block;
}

.footer_content p {
    color: #a6a6a6;
    font-size: 14px;
    font-weight: 400;
}

.footer_social_icon a svg path {
    transition: 0.3s;
}

.footer_social_icon a:hover svg path {
    fill: var(--themeColor);
}

/* end footer */

.rte .pannel_title {
    padding-bottom: 30px;
}

.rte h6 {
    color: #272829;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    margin: 20px 0 15px 0;
}

.small-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.medium-container {
    max-width: 1100px;
    width: 100%;
    /* padding: 0 15px;
    margin: 0 auto; */
}

.rte ul {
    padding: 20px 0 20px 20px;
}

.rte ul li {
    list-style: disc;
}

.rte ul li:not(:last-child) {
    padding-bottom: 15px;
}

.blog-det-title.spacer {
    padding-top: 0;
}

.blog-det-title-text {
    max-width: 100%;
    width: 100%;
}

.blog-det-title-text span {
    color: #747474;
    font-size: 14px;
    font-weight: 400;
    padding-top: 15px;
    display: block;
}

.blog-det-title-text h1 {
    color: #000;
    font-family: var(--headFont);
    font-size: 36px;
    font-weight: 700;
    line-height: 42px;
    margin-bottom: 20px;
}

/* .blog-detail p {
    padding-bottom: 20px;
} */


.blog-detail h2 {
    font-size: 28px;
    padding: 30px 0 25px;
    line-height: 1.2;
    font-family: var(--headFont);
    color: #000;
}

.blog-detail-sec {
    position: relative;
}

.bg-vector {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 0;
}

/* .medium-container .bolg-detail-content {
    max-width: 77%;
    width: 100%;
    padding-right: 100px;
} */

.medium-container .right-blog-img {
    max-width: 23%;
    width: 100%;
}

.right-blog-img .blog-custom-blog-img {
    padding-bottom: 180%;
    position: sticky;
    width: 100%;
    height: auto;
    display: block;
    top: 100px;
}

.right-blog-img .blog-custom-blog-img img {
    position: absolute;
    left: 0;
    top: 0;
    margin: auto;
    object-fit: contain;
    border-radius: 12px;
}

.blog-detail h3 {
    padding: 10px 0 20px;
    font-size: 24px;
    line-height: normal;
    font-family: var(--headFont);
}

.blog-detail h4 {
    font-size: 20px;
    padding: 15px 0;
    line-height: normal;
    font-family: var(--headFont);
}

.blog-detail p a {
    color: var(--themeColor);
    text-decoration: underline;
    transition: 0.3s;
}

.custom-blog-market-img {
    margin-top: 15px;
}

.custom-blog-market-img img {
    width: 100%;
    border-radius: 10px;
}

.blog-detail .social-link-div {
    padding: 20px 0;
}

.blog-detail .social-link-div p {
    padding-bottom: 10px;
    color: #a1a1a1;
    font-size: 14px;
    line-height: 14px;
}

.blog-detail .social-link-div .social_link {
    gap: 10px;
}

.blog-detail .social-link-div .social_link a:hover svg {
    transform: translateY(-2px);
    transition: 0.3s;
}

.bolg-detail-content h3+.custom-blog-market-img {
    margin-top: 5px;
}

.bolg-detail-content ul,
.bolg-detail-content ol {
    padding-left: 50px;
}

.bolg-detail-content ul li {
    list-style: disc;
}

.bolg-detail-content ul li::marker {
    font-size: x-large;
}

.chat-tab {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 60px;
    position: relative;
    z-index: 2;
}

.chat-tab .chat-tab-list {
    max-width: 40%;
    width: 100%;
}

.chat-list-item {
    padding-bottom: 20px;
}

.chat-list-item h4 {
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    color: #6527be;
    background-color: #f4edff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    column-gap: 12px;
    font-family: var(--headFont);
    cursor: pointer;
}

.chat-list-item h4 .chat-tab-arrow {
    margin-left: auto;
}

.chat-tab .chat-tab-img {
    max-width: 60%;
    width: 100%;
}

.chat-tab .chat-tab-img .chat-tab-img-box {
    display: none;
}

.chat-tab .chat-tab-img .chat-tab-img-box.active {
    display: block;
}

.chat-list-item-cont {
    display: none;
    background-color: #f4edff;
}

.chat-list-item-cont .widget-mob-img {
    padding: 30px;
    display: none;
}

.chat-list-item.active .chat-list-item-cont {
    display: block;
}

.chat-tab-img .chat-tab-img-box img {
    margin-left: auto;
}

.chat-list-item-cont h5 {
    padding: 10px 20px 20px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: #272829;
    font-family: var(--headFont);
}

.chat-list-item-cont p {
    font-size: 15px;
    line-height: 22px;
    display: flex;
    align-items: flex-start;
    padding: 0 20px 15px;
}

.chat-list-item-cont p svg {
    min-width: 16px;
    height: auto;
    margin: 2px 10px 0 0;
}

.chat-list-item-cont p img {
    width: 16px;
    margin-right: 8px;
    display: block;
    margin-top: 3px;
}

.chat_managment:after {
    content: "";
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 13.02%,
            rgba(255, 255, 255, 0.5) 34.9%,
            #fff 100%);
    position: absolute;
    height: 7%;
    width: 100%;
    z-index: -2;
    bottom: 0;
}

.chat_managment:before {
    content: "";
    background: linear-gradient(360deg,
            rgba(255, 255, 255, 0) 13.02%,
            rgba(255, 255, 255, 0.5) 34.9%,
            #fff 100%);
    position: absolute;
    height: 20%;
    width: 100%;
    top: 0;
    z-index: -1;
}

.chat_managment {
    background-image: url("undefined");
    position: relative;
}

.message_tab_section {
    position: relative;
    z-index: 3;
}

.main_tab_wrapper .tab_nav {
    margin-bottom: 45px;
    display: flex;
    justify-content: center;
}

.main_tab_wrapper .tab_nav_ul {
    gap: 2px;
    background: #fff;
    padding: 6px;
    border: 1px solid var(--themeColor);
    border-radius: 30px;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: fit-content;
}

.main_tab_wrapper .tab_nav_ul li {
    cursor: pointer;
    color: #272829;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    padding: 10px 30px;
    transition: 0.3s;
    border-radius: 30px;
}

.main_tab_wrapper .tab_nav_ul li:hover,
.main_tab_wrapper .tab_nav_ul li.active {
    background-color: #272829;
    color: #fff;
}

.tab_content {
    gap: 20px;
}

.tab_content .message_item {
    background-color: #fff;
    border: 1px solid #d5d5d5;
    padding: 20px;
    max-width: calc(33.33% - 14px);
    width: 100%;
    display: flex;
    flex-direction: column;
    height: auto;
}

.message_item .msg_title {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

.message_item .msg_title h3 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: #272829;
    font-family: var(--headFont);
    display: flex;
    align-items: center;
    gap: 5px;
}

.message_item .msg_title h3 img {
    height: 20px;
    width: 20px;
}

.message_item .msg_contnet {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.message_item .msg_contnet p {
    color: #545454;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 18px;
}

.message_item .msg_contnet p a {
    color: var(--themeColor);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 500;
}

.message_item .msg_contnet p a svg {
    height: auto;
    max-width: 20px;
    width: 100%;
}



.message_item .msg_contnet p:last-child {
    margin-bottom: 0;
    margin-top: auto;
}

.message_item .msg_title svg {
    max-width: 24px;
    width: 100%;
}

.msg-detail-title h2 {
    color: #272829;
    font-family: var(--headFont);
    font-size: 40px;
    font-weight: 700;
    line-height: 46px;
}

.msg-detail-content {
    padding: 50px 0;
}

.msg-detail-content p {
    padding-bottom: 20px;
}

.message-bubble p {
    padding-bottom: 10px;
    font-size: 14px;
    color: #2a2a2a;
    line-height: 18px;
}

.message-bubble p:last-child {
    padding-bottom: 0;
}

.message-bubble {
    padding: 22px;
    border-radius: 0 20px 20px;
    position: relative;
    background-color: #daf7cb;
    margin: 5px auto 25px 25px;
    max-width: 600px;
}

.message-bubble:after {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    border-top: 0px solid transparent;
    border-bottom: 25px solid transparent;
    border-right: 25px solid #daf7cb;
    position: absolute;
    right: 100%;
    top: 0;
}

.msg-hero .auto_msg h6 {
    display: flex;
    align-items: center;
}

.msg-hero .auto_msg img {
    width: 16px;
    margin-right: 5px;
}

.msg-hero .right_msg_chat {
    padding-left: 0;
    padding-right: 100px;
}

.msg-hero .right_msg_content p {
    color: var(--themeColor);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    display: block;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.msg-hero .chat_vector2 {
    right: 0;
    left: unset;
}

.msg-hero .banner_btn a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    background: #000;
    box-shadow: 0px 4px 14px 0px rgba(123, 123, 123, 0.25);
    padding: 12px 25px;
    transition: 0.3s;
    border: solid 1px #000;
}

.msg-hero .banner_btn a:hover {
    background: var(--themeColor);
    border: solid 1px var(--themeColor);
}

.msg-hero .banner_btn a.border-btn {
    background-color: #fff;
    color: #10a19d;
    border: 1px solid #10a19d;
    font-weight: 400;
}

.msg-hero .banner_btn a.border-btn:hover {
    color: #fff;
    background-color: #10a19d;
}

.msg-hero .banner_btn {
    display: flex;
    margin-top: 35px;
    gap: 15px;
}

.what-is-templete {
    background-image: unset;
}

.what-is-templete:before {
    content: unset;
}

.what-is-templete p {
    padding-bottom: 10px;
    color: #747474;
    font-size: 15px;
    font-weight: 400;
    text-transform: unset;
}

.what-is-templete ol {
    padding: 10px 20px 15px;
}

.what-is-templete ol li {
    color: #747474;
    font-size: 15px;
    font-weight: 400;
    text-transform: unset;
}

.what-is-templete ol li p {
    padding-bottom: 5px;
}

.what-is-templete .main_message_chat {
    padding-top: 0;
}

.why-templete {
    padding: 120px 0;
}

.why-templete .why-title {
    text-align: center;
    padding-bottom: 50px;
}

.why-templete p {
    color: #747474;
    font-size: 15px;
    font-weight: 400;
    text-transform: unset;
}

.why-box-wrap {
    display: flex;
    flex-wrap: wrap;
}

.why-box-wrap .why-box {
    max-width: 33.33%;
    width: 100%;
    padding: 15px;
}

.why-box-wrap .why-box h3 {
    padding-bottom: 10px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: #272829;
    font-family: var(--headFont);
    display: flex;
    align-items: center;
}

.why-box-wrap .why-box h3 svg {
    margin-right: 8px;
}

.why-templete {
    background-image: url("undefined");
    position: relative;
}

.why-templete:after {
    content: "";
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 13.02%,
            rgba(255, 255, 255, 0.5) 34.9%,
            #fff 100%);
    position: absolute;
    height: 7%;
    width: 100%;
    bottom: 0;
}

.why-templete:before {
    content: "";
    background: linear-gradient(360deg,
            rgba(255, 255, 255, 0) 13.02%,
            rgba(255, 255, 255, 0.5) 34.9%,
            #fff 100%);
    position: absolute;
    height: 20%;
    width: 100%;
    top: 0;
}

.message_tab_section-title {
    text-align: center;
}

.message_tab_section-title p {
    color: #747474;
    font-size: 15px;
    font-weight: 400;
    text-transform: unset;
}

.h2 {
    color: #272829;
    font-family: var(--headFont);
    font-size: 33.3px;
    font-weight: 700;
    line-height: 42px;
    margin-bottom: 25px;
    margin-top: 9px;
}

.faq_vector {
    position: absolute;
    right: 0;
    top: -300px;
    filter: blur(100px);
    z-index: -1;
}

.templete-message-list .blog-det-title-text span {
    color: var(--themeColor);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    display: block;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.why-templete .container {
    position: relative;
}

.msg-hero .right_msg_content .msg_type .auto_msg {
    width: 100%;
}

#recommended_apps .pannel_title h1 {
    color: #272829;
    font-family: var(--headFont);
    font-size: 33px;
    font-weight: 700;
    line-height: 42px;
    margin: 13px auto 24px;
}

#recommended_apps .pannel_title p a.btn {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    background: #000;
    box-shadow: 0px 4px 14px 0px rgba(123, 123, 123, 0.25);
    padding: 12px 25px;
    transition: 0.3s;
    display: inline-block;
    margin-top: 20px;
}

#recommended_apps .pannel_title p a.btn:hover {
    background-color: var(--themeColor);
}

.main_recommended_apps {
    gap: 30px;
    margin-top: 120px;
}

.main_recommended_apps .apps_item {
    background-color: #fff;
    border: 1px solid #d5d5d5;
    max-width: calc(33.33% - 20px);
    width: 100%;
    display: flex;
    flex-direction: column;
    height: auto;
}

.apps_item .apps_logo {
    padding: 40px;
    display: flex;
    justify-content: center;
}

.apps_item .apps_logo img {
    border-radius: 10px;
    background-color: #fff;
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.apps_item .apps_content {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
    padding: 20px;
}

.apps_item .apps_content h3 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: #272829;
    font-family: var(--headFont);
    margin-bottom: 20px;
}

.apps_item .apps_content p {
    color: #545454;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 18px;
}

.apps_item .apps_content .apps_btn {
    margin-top: auto;
}

.apps_item .apps_content .apps_btn a {
    color: var(--themeColor);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 500;
}

.apps_item .apps_content .apps_btn a svg {
    height: auto;
    max-width: 20px;
    width: 100%;
}

.apps_item .optim_app,
.apps_item .ils_app,
.apps_item .equate_app,
.apps_item .notifio_app,
.apps_item .imageagram_app {
    background-color: #dee2fd;
}

.apps_item .picsmize_app {
    background-color: #ffdeb4;
}

.apps_item .leo_app {
    background-color: #f9f4ea;
}

.apps_item .preorder_app {
    background-color: #ffd0dd;
}

.apps_item .wizio_app {
    background-color: #fff7bd;
}



.dark_btn {
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    padding: 12px 40px;
    background: #000;
    box-shadow: 0px 4px 14px 0px rgba(123, 123, 123, 0.25);
    transition: 0.3s;
    display: block;
    border: unset;
    font-family: inherit;
    cursor: pointer;
}

.dark_btn:hover {
    background-color: var(--themeColor);
}

.wp-link-gen .wp-link-gen-content {
    max-width: 60%;
    width: 100%;
    margin: 0;
    text-align: left;
    padding: 50px 10px 50px 30px;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.wp-link-gen .wp-link-gen-content a {
    margin-top: auto;
    width: fit-content;
}

.wp-link-gen .wp-link-gen-image {
    max-width: 40%;
    width: 100%;
    z-index: 1;
    padding-right: 20px;
    padding-top: 20px;
}

.wp-link-gen-image svg {
    display: block;
    margin-left: auto;
    max-width: 100%;
}

.wp-link-gen {
    background-image: url("undefined");
    position: relative;
}

.wp-link-gen:after {
    content: "";
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 13.02%,
            rgba(255, 255, 255, 0.5) 34.9%,
            #fff 100%);
    position: absolute;
    height: 100px;
    width: 100%;
    z-index: 0;
    bottom: 0;
}

.wp-link-gen:before {
    content: "";
    background: linear-gradient(360deg,
            rgba(255, 255, 255, 0) 13.02%,
            rgba(255, 255, 255, 0.5) 34.9%,
            #fff 100%);
    position: absolute;
    height: 100px;
    width: 100%;
    top: 0;
    z-index: 0;
}

.wp-link-gen .flex {
    border: solid 1px #b0b0b0;
}

.wp-link-gen .flex {
    position: relative;
}

.wp-link-gen .flex:after {
    content: "";
    display: block;
    background-image: url("undefined");
    position: absolute;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    bottom: 0;
    left: 0;
    background-position: -20% 85%;
    transform: rotate(180deg);
}

.wp-link-gen .flex::before {
    content: "";
    display: block;
    background-image: url("undefined");
    position: absolute;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    bottom: 0;
    right: 0;
    background-position: -20% 90%;
}

.main_link_generaor_banner {
    justify-content: center;
    text-align: center;
}

.main_link_generaor-container {
    background-color: #25d36614;
    padding: 50px;
}



.msg_link_generat .msg_link_preview:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
    width: 500px;
}

.app-share-link-wrap {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(160deg, #95ecda 0%, #ebf9d3 100%);
    z-index: 99;
}

.app-share-link-wrap h2 {
    color: #272829;
    font-family: var(--headFont);
    font-size: 40px;
    font-weight: 700;
    line-height: 44px;
    padding-bottom: 40px;
}

.app-share-link-wrap #message_link {
    padding: 10px;
    background-color: #fff;
    margin-bottom: 5px;
    color: #7e7e7e;
    border: 1px solid #d5d5d5;
    word-break: break-all;
}

.app-share-link-wrap .success {
    color: green;
    font-size: 14px;
}

.app-share-link-wrap #copy_link {
    margin-top: 25px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    background: #000;
    box-shadow: 0px 4px 14px 0px rgba(123, 123, 123, 0.25);
    padding: 12px 25px;
    transition: 0.3s;
    border: solid 1px #000;
    font-family: inherit;
}

.app-share-link-wrap .app-share-link-close {
    position: absolute;
    right: 20px;
    top: 20px;
    background-color: transparent;
    border: unset;
    font-family: unset;
    color: #7a7a7a;
    font-size: 14px;
    cursor: pointer;
}

.copy_link_section {
    max-width: 600px;
    text-align: center;
    padding: 20px;
}

.app-share-link-wrap.section-hide {
    display: none;
}

.copy_link_section svg {
    max-width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.link_generat_contant .form-error,
.form-error {
    font-size: 12px !important;
    line-height: 1.5 !important;
    color: #f00;
    padding-top: 5px;
}

.link_number_input-wrap {
    display: flex;
}

.hide {
    display: none;
}

.link_number_input-wrap #generat_link_number {
    width: 0;
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0;
}

.iti__flag-container {
    background-color: #ffffff;
}


.link_number_input-wrap #generat_link_p_number::-webkit-outer-spin-button,
.link_number_input-wrap #generat_link_p_number::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.link_number_input-wrap #generat_link_p_number[type="number"] {
    -moz-appearance: textfield;
}

.message-box-wrap::-webkit-scrollbar {
    width: unset;
}

.message-box-wrap {
    position: sticky;
    top: 0;
    max-height: 395px;
    height: 100%;
    overflow: auto;
    z-index: -1;
}

.message-box-wrap::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: transparent;
}

.message-box-wrap::-webkit-scrollbar {
    width: 5px;
    background-color: transparent;
}

.message-box-wrap::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #b4b4b4;
}

.bredul {
    display: flex;
    align-items: center;
    column-gap: 25px;
    flex-wrap: wrap;
}

.breadcrumbsp {
    padding: 10px 15px;
    background-color: #479ccf;
}

.bredul a {
    color: #fff;
    font-size: 14px;
    position: relative;
}

.bredul p {
    color: #fff;
    font-size: 14px;
}

.bredul a:after {
    content: "";
    height: 6px;
    width: 6px;
    border-right: solid 2px #fff;
    border-bottom: solid 2px #fff;
    display: block;
    position: absolute;
    top: 7px;
    right: -17px;
    transform: rotate(315deg) translateY(-50%);
}

.main_error_page .error_image img {
    max-width: 300px;
    display: block;
    margin: 20px auto;
}

.main_error_page .error_content {
    text-align: center;
}

.main_error_page .error_content p {
    line-height: 1.5;
}

.main_error_page .error_content a {
    margin-top: 20px;
    display: inline-block;
}

.primary-btn {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    background: #000;
    box-shadow: 0px 4px 14px 0px rgba(123, 123, 123, 0.25);
    padding: 12px 25px;
    transition: 0.3s;
    border: solid 1px #000;
}

.chat_pannel.error_page_sec:after {
    content: unset;
}

.blog-detail .main_link_generat p {
    padding-bottom: 0;
}

.blog-detail .main_link_generat h2 {
    padding: 0;
}

.policy-container h1,
.term-service-container h1 {
    text-align: center;
}



@media only screen and (max-width: 1440px) {

    .pannel_title h3,
    .pannel_title .h3 {
        width: 100%;
    }

    .chat_pannel .pannel_title {
        width: 50%;
    }

    .main_chat_pannel .chat_pannel_img {
        max-width: 70%;
    }

    .main_message_chat .right_msg_chat {
        padding-left: 65px;
    }

    .chat_content.chat_content3 {
        bottom: -25%;
    }

    .managment_title {
        width: 50%;
    }

    .main_chat_managment {
        padding-top: 40px;
    }

    .right_msg_chat .right_msg_content span {
        font-size: 22px;
        line-height: 24px;
    }

    .left_managment_content span {
        font-size: 14px;
    }

    .left_managment_content h5 {
        font-size: 22px;
        line-height: 24px;
        margin: 15px 0;
    }

    .left_managment_content p {
        font-size: 14px;
        line-height: 19px;
        margin-bottom: 10px;
    }

    .managment_title h3 {
        font-size: 28px;
        line-height: 40px;
    }

    .right_msg_content .msg_type {
        gap: 35px;
    }

    .main_faq {
        margin-top: 40px;
    }

    .msg_link_generat .msg_link_preview {
        align-items: start;
    }
}

@media only screen and (max-width: 1150px) {


    .left_banner .left_banner_content h1 {
        font-size: 25px;
        line-height: 32px;
        margin-bottom: 14px;
    }

    .left_banner .left_banner_content p {
        font-size: 13px;
    }


    .left_banner_vector2 {
        top: 20%;
    }

    .left_banner_content .banner_btn {
        margin-top: 25px;
    }

    .left_banner_content .banner_btn a {
        font-size: 13px;
    }

    .chat_pannel .pannel_title {
        width: 60%;
    }

    .main_message_chat {
        padding-top: 60px;
    }

    .main_message_chat .left_msg_chat {
        max-width: 50%;
    }

    .main_message_chat .right_msg_chat {
        max-width: 50%;
        padding-left: 95px;
    }

    .right_msg_content .msg_type {
        gap: 0px;
        width: 100%;
    }

    .right_msg_content .msg_type .auto_msg {
        width: 50%;
    }

    .left_msg_chat .left_img_content2 p {
        margin-left: -10px;
    }

    .main_message_chat .msg_chat {
        padding-top: 50px;
    }


    .pricing_view .pricing_forever p,
    .pricing_advance p,
    .pricing_primium p {
        font-size: 13px;
        line-height: 17px;
    }

    .pricing_view .pricing_forever h3,
    .pricing_advance h3,
    .pricing_primium h3 {
        font-size: 23px;
        line-height: 25px;
        margin: 7px 0;
    }

    .pricing_view .pricing_forever span,
    .pricing_advance span,
    .pricing_primium span {
        font-size: 11px;
        padding: 2px 5px;
    }

    .popular_txt p {
        font-size: 16px;
        line-height: 20px;
    }

    .advance_arrow svg,
    .primium_arrow svg {
        width: 30%;
        height: 30%;
    }

    .primium_arrow {
        top: -50px;
        right: 12px;
    }

    .advance_arrow {
        top: -50px;
        right: 12px;
    }

    .pricing_view .pricing_forever_content p,
    .pricing_advance_content p,
    .pricing_primium_content p {
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 10px;
    }

    .pricing_view .pricing_forever,
    .pricing_advance,
    .pricing_primium {
        margin-bottom: 15px;
    }

    .main_blog {
        margin-top: 40px;
    }

    .blog_view .blog_contanet h4 {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 3px;
    }

    .blog_view .blog_contanet {
        margin-top: 10px;
    }

    .h2 {
        font-size: 25px;
        line-height: 32px;
        margin-bottom: 14px;
    }

    .left_link_generator h1 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 14px;
    }

    .left_link_generator p {
        font-size: 13px;
    }

    .left_link_generator .banner_btn {
        margin-top: 30px;
    }

    .left_link_generator .banner_btn a {
        font-size: 13px;
        padding: 10px 20px;
    }

    .link_generat_step_sec .pannel_title {
        margin-bottom: 40px;
    }

    .link_step_contant {
        padding: 0px 10px;
    }

    .link_generat_step_item span {
        font-size: 24px;
    }

    .link_generat_step_item .step_number P {
        height: 40px;
        width: 40px;
        font-size: 18px;
        line-height: 18px;
    }

    .link_generat_step_item .step_number {
        margin: 10px 0 20px;
    }

    .link_step_contant h4 {
        font-size: 18px;
        line-height: 20px;
    }

    .link_step_contant p {
        font-size: 14px;
    }

    .msg_preview_content {
        max-width: 325px;
    }

    .preview_row_two {
        justify-content: space-between;
    }

    .call_icon_div {
        max-width: unset;
        width: auto;
        gap: 10px;
    }

    .msg_preview_text {
        top: 16%;
    }

    .msg_preview_text p {
        margin-bottom: unset;
        font-size: 21px;
        margin-left: -45px;
    }

    .msg_preview_point svg {
        max-width: 55%;
    }

}

@media only screen and (max-width: 1024px) {

    .pannel_title {
        width: 80%;
        padding-bottom: 50px;
    }

    .main_header nav ul li a,
    .main_header nav ul li .non-link {
        font-size: 13px;
        padding: 7px 16px;
    }

    .main_header nav .has-child>a:after {
        top: 12px;
        right: 5px;
    }

    .main_header nav .has-child>a:hover:after {
        top: 13px;
    }

    .pannel_title h3,
    .pannel_title .h3 {
        margin-bottom: 10px;
    }

    .main_banner .left_banner {
        max-width: 45%;
    }

    .main_banner .right_banner {
        max-width: 55%;
    }

    .left_banner .left_banner_content h1 {
        font-size: 21px;
        line-height: 27px;
        margin-top: 5px;
        margin-bottom: 9px;
    }

    .left_banner .left_banner_content span {
        font-size: 15px;
    }

    .left_banner .left_banner_content p {
        font-size: 13px;
    }

    .right_banner_content .right_img1_content p,
    .right_banner_content .right_img2_content p,
    .right_banner_content .right_img3_content p {
        font-size: 15px;
        line-height: 17px;
        width: 105px;
    }

    .right_banner_content .right_img2_content p {
        margin-left: 35px;
    }

    .left_banner_vector2 {
        top: -4%;
    }

    .sponcer_logo {
        padding: 20px 20px;
    }

    .chat_pannel .pannel_title {
        width: 75%;
    }

    .chat_content.chat_content3 svg {
        margin-left: 0px;
    }

    .chat_pannel .chat_content p {
        width: 100px;
        font-size: 15px;
        line-height: 17px;
    }

    .chat_pannel .chat_content1 p {
        margin-left: -10px;
    }

    .chat_pannel .chat_content3 p {
        width: 65px;
    }

    .chat_content2 {
        top: 1%;
    }

    .left_msg_chat .left_img_content {
        top: 20%;
    }

    .main_chat_pannel {
        padding-bottom: 70px;
    }

    .left_msg_chat .left_img_content p {
        width: 75px;
        font-size: 15px;
        line-height: 16px;
    }

    .left_msg_chat .left_img_content2 p {
        margin-top: -12px;
        font-size: 15px;
        line-height: 16px;
        width: 85px;
        margin-left: -5px;
    }

    .right_msg_content .msg_type .auto_msg h6 {
        font-size: 14px;
        line-height: 15px;
        margin-bottom: 10px;
    }

    .right_msg_content .msg_type .auto_msg p {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .right_msg_chat .right_msg_content h5 {
        font-size: 12px;
        line-height: 18px;
        margin-top: 8px;
        margin-bottom: 13px;
    }

    .main_message_chat .right_msg_chat {
        padding-left: 73px;
    }

    .main_chat_managment .left_chat_managment {
        margin-top: 0px;
    }

    .managment_title {
        width: 70%;
    }

    .left_managment_content p img {
        margin-right: 5px;
    }

    .pricing_primium a {
        font-size: 12px;
        margin-top: 5px;
    }

    .pricing_view {
        max-width: 30%;
    }

    .main_pricing {
        gap: 15px;
        margin-top: 75px;
    }

    .pricing_view .pricing_forever h3,
    .pricing_advance h3,
    .pricing_primium h3 {
        font-size: 21px;
    }

    .popular_txt p {
        font-size: 15px;
    }

    .popular_txt svg {
        margin-left: 0px;
        top: 15px;
    }

    .advance_arrow p,
    .primium_arrow p {
        font-size: 17px;
    }

    .advance_arrow {
        top: -40px;
        right: 13px;
    }

    .primium_arrow {
        top: -40px;
        right: 13px;
    }

    .medium-container .bolg-detail-content {
        padding-right: 50px;
    }

    .blog_slider .main_blog_wrap {
        max-width: calc(33.33% - 10px);
    }

    .blog_slider {
        gap: 15px;
    }

    .main_message_chat .msg_chat {
        padding-top: 0;
    }

    .what-is-templete .right_msg_chat {
        padding-left: 20px;
    }

    .h2 {
        font-size: 21px;
        line-height: 27px;
        margin-top: 5px;
        margin-bottom: 9px;
    }

    .left_link_generator span {
        font-size: 15px;
    }

    .right_link_generator,
    .left_link_generator {
        max-width: 50%;
    }

    .main_link_generator_step .pannel_title h3,
    .main_link_generator_step .pannel_title .h3 {
        margin-top: unset;
    }

    .link_generat_step_sec .pannel_title {
        margin-bottom: 30px;
    }

    .link_step_contant {
        padding: unset;
    }

    .msg_link_generat {
        padding: 30px 15px 0 15px;
    }

    .msg_link_generat .msg_link_preview {
        max-height: 450px;
    }

    .msg_preview_content {
        top: 40px;
    }

    .preview_row_one {
        padding: 8px 12px;
    }

    .preview_row_two {
        padding: 8px 12px 8px 8px;
        gap: 12px;
    }

    .msg_call_preview_content .talk_day p {
        font-size: 11px;
        line-height: 11px;
        padding: 4px 11px;
        margin-top: 15px;
    }

    .link_generat_contant form {
        max-width: 95%;
    }


    .message-box-wrap {
        max-height: 300px;
    }
}

@media only screen and (max-width: 991px) {
    .chat-tab .chat-tab-img {
        display: none;
    }

    .chat-tab .chat-tab-list {
        max-width: 700px;
        margin: 0 auto;
    }

    .chat-list-item-cont .widget-mob-img {
        display: block;
    }

    .main_tab_wrapper .tab_nav_ul li {
        font-size: 14px;
        padding: 7px 18px;
    }

    .tab_content {
        gap: 20px;
    }

    .tab_content .message_item {
        padding: 15px;
        max-width: calc(33.33% - 10px);
    }

    .message_item .msg_title h3 {
        font-size: 18px;
        line-height: 22px;
    }

    .message_item .msg_title h3 img {
        height: 18px;
        width: 18px;
    }

    .message_item .msg_title {
        margin-bottom: 10px;
    }

    .msg-hero .right_msg_chat {
        padding-right: 50px;
    }

    .why-box-wrap .why-box {
        max-width: 50%;
    }

    .tab_content .message_item {
        max-width: calc(50% - 10px);
    }

    .what-is-templete p,
    .what-is-templete ol li,
    .why-templete p,
    .message_tab_section-title p,
    .message_item .msg_contnet p {
        font-size: 12px;
        line-height: 18px;
    }

    .msg-hero .msg_chat,
    .chat_pannel .msg_chat {
        margin-top: 50px;
    }

    .msg-hero .banner_btn a {
        padding: 12px 15px;
        font-size: 13px;
    }

    .why-box-wrap .why-box h3 {
        font-size: 16px;
        line-height: 20px;
    }

    .why-box-wrap .why-box h3 svg {
        margin-right: 5px;
        max-width: 20px;
    }

    .why-templete {
        padding: 60px 0;
    }


    .main_recommended_apps {
        gap: 20px;
    }

    .main_recommended_apps .apps_item {
        max-width: calc(50% - 10px);
    }

    .apps_item .apps_content {
        padding: 15px;
    }

    .apps_item .apps_logo {
        padding: 30px;
    }

    .app_resource_item {
        padding: 15px;
        max-width: calc(50% - 10px);
    }

    .app_resource_item h3 {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 10px;
    }

    .app_resource_item svg {
        margin-right: 5px;
        max-width: 20px;
    }

    .app_resource_item p {
        font-size: 12px;
        line-height: 18px;
    }

    .link_generat_step_item .step_number P {
        height: 35px;
        width: 35px;
        font-size: 16px;
        line-height: 16px;
    }

    .link_generat_step_item .step_number {
        margin: 5px 0 10px;
    }

    .link_step_contant h4 {
        font-size: 15px;
        line-height: 18px;
        padding-bottom: 7px;
    }

    .link_step_contant p {
        font-size: 13px;
    }

    .preview_row_two {
        gap: unset;
    }

    .msg_preview_text p {
        font-size: 18px;
        line-height: 17px;
        margin-right: unset;
        max-width: 82px;
    }

    .preview_msg_wlc p {
        font-size: 14px;
        line-height: 17px;
        padding: 4px 9px;
    }

    .msg_preview_text p::before {
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-top: 15px solid #fff;
        right: 20px;
        bottom: -15px;
    }

    .preview_avtar_name {
        gap: 6px;
    }

    .preview_row_one .header_preview p {
        font-size: 12px;
    }

    .preview_avtar_name .name {
        font-size: 13px;
        line-height: 13px;
        margin-bottom: 4px;
    }

    .preview_avtar_name .last_seen {
        font-size: 11px;
        line-height: 11px;
    }

    .msg_link_generat {
        padding: 0;
    }

    .msg_preview_content {
        max-width: 285px;
    }

    .msg_preview_text {
        top: 18%;
        right: -60%;
    }


    .wp-link-gen .flex:after {
        background-position: 0 85%;
    }

    .wp-link-gen .flex::before {
        background-position: 0 90%;
    }

    .wp-link-gen h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .wp-link-gen .wp-link-gen-content {
        padding: 35px 10px 35px 30px;
    }
}

@media only screen and (max-width: 768px) {


    /* main {
        padding-top: 40px;
      } */

    .top_arrow_button {
        right: 20px;
        bottom: 20px;
    }

    .top_arrow_button a {
        padding: 5px;
    }

    .menu_icon,
    .menu_icon .menu_btn,
    .menu_icon .menu_btn svg {
        display: block;
    }

    .menu_icon button {
        background-color: transparent;
        border: none;
        cursor: pointer;
    }

    .cross {
        display: none;
        margin: 25px;
    }

    .cross.active {
        display: block;
    }

    .bars.active {
        display: none;
    }


    .header_logo,
    .menu_icon,
    .header_btn {
        width: 33.33%;
    }

    .header_logo {
        display: flex;
        justify-content: center;
    }

    .header_btn {
        display: flex;
        justify-content: end;
    }

    .header_btn .btn {
        font-size: 12px;
        padding: 8px 18px;
    }

    .main_banner .left_banner {
        max-width: 100%;
    }

    .left_banner .left_banner_content {
        text-align: center;
    }

    .main_banner .right_banner {
        max-width: 100%;
        margin-top: 30px;
    }

    .right_banner_content {
        justify-content: center;
    }

    .right_banner_content .right_img1_content p,
    .right_banner_content .right_img2_content p,
    .right_banner_content .right_img3_content p {
        font-size: 13px;
        line-height: 15px;
        width: 90px;
    }

    .right_banner_content .right_img2_content {
        right: 16%;
        bottom: 11%;
    }

    .left_banner_vector2 {
        top: 18%;
    }

    .left_banner_content .banner_btn {
        margin-top: 20px;
        justify-content: center;
    }

    .main_chat_pannel {
        justify-content: center;
        margin-top: 60px;
        padding-bottom: 50px;
    }

    .chat_pannel .pannel_title {
        width: 85%;
    }

    .chat_content1 svg {
        rotate: 87deg;
        margin-right: 8px;
        margin-left: -24px;
    }

    .main_chat_pannel .chat_pannel_img {
        max-width: 100%;
        margin-top: 6px;
    }

    .chat_pannel .chat_content p {
        font-size: 13px;
        line-height: 14px;
        margin-bottom: 4px;
    }

    .chat_content1 {
        top: -14%;
        left: 10%;
        text-align: center;
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 10.2221%;
    }

    .chat_content2 svg.custom_info,
    .custom_order {
        display: none;
    }

    .chat_content2 svg.custom_info2 {
        display: block;
        max-width: 70%;
        height: auto;
    }

    .chat_content2 svg.custom_order2 {
        max-width: 50%;
        display: block;
        height: auto;
    }

    .chat_content2.chat_info {
        top: -15.5%;
    }

    .chat_content2.chat_order {
        bottom: -18%;
    }

    .chat_content2 {
        right: 10%;
        top: unset;
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 10.2221%;
    }

    .chat_content.chat_content3 {
        bottom: -14%;
    }

    .chat_content.chat_content3 p {
        margin-top: 35px;
    }

    .chat_content.chat_content3 svg {
        margin-left: -16px;
        width: 30%;
    }

    .main_message_chat {
        padding-top: 45px;
    }

    .main_message_chat .left_msg_chat {
        max-width: 100%;
        justify-content: center;
        margin-top: 20px;
    }

    .right_msg_content .msg_type {
        gap: 20px;
        width: unset;
    }

    .right_msg_content .msg_type .auto_msg {
        width: unset;
    }

    .main_message_chat .right_msg_chat {
        max-width: 100%;
        margin-top: 0px;
        padding-left: unset;
    }

    .main_message_chat .msg_chat {
        margin-top: 35px;
        padding-top: 0;
        flex-direction: column-reverse;
    }

    .main_chat_managment .left_chat_managment {
        margin-top: 20px;
    }

    .main_chat_managment .row_reverse .right_chat_managment {
        padding-right: 0px;
        padding-left: 0;
    }

    .left_msg_chat .left_img_content p,
    .left_msg_chat .left_img_content2 p {
        font-size: 13px;
        line-height: 14px;
        width: 72px;
        margin-left: 0;
    }

    .left_msg_chat .left_img_content2 p {
        margin-left: -98%;
        margin-bottom: -77%;
    }

    .left_msg_chat .left_img_content {
        top: 21%;
    }

    .left_msg_chat .left_img_content2 {
        flex-direction: column-reverse;
        width: 16.9391%;
        bottom: -14%;
        right: 2%;
    }

    .left_msg_chat .left_img_content2 svg {
        max-width: 65%;
        height: auto;
        rotate: 179deg;
    }

    .chat_managment {
        padding-top: 30px;
    }

    .pannel_title h3,
    .pannel_title .h3 {
        font-size: 26px;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .pannel_title p {
        font-size: 15px;
        line-height: 1.4;
    }

    .pannel_title h2 {
        font-size: 14px;
    }

    .right_msg_content .msg_type .auto_msg h6 {
        font-size: 13px;
        line-height: 15px;
        margin-bottom: 10px;
    }

    .right_msg_content .msg_type .auto_msg p img,
    .right_msg_content .msg_type .auto_msg p svg {
        margin-right: 6px;
        width: 14px;
        margin-top: 4px;
    }

    .right_msg_chat .right_msg_content h5 {
        line-height: 15px;
    }

    .left_managment_content p img {
        margin-right: 6px;
    }

    .managment_title h3 {
        font-size: 23px;
        line-height: 28px;
    }

    .managment_title {
        width: 80%;
    }

    .left_chat_managment,
    .right_chat_managment {
        max-width: 100%;
        width: 100%;
    }

    .main_chat_managment .right_chat_managment {
        padding-left: 0px;
        padding-top: 15px;
    }

    .main_chat_managment {
        padding-top: 15px;
    }

    .left_managment_content p {
        font-size: 12px;
        line-height: 15px;
    }

    .left_managment_content p img {
        margin-right: 5px;
        margin-top: 0px;
        width: 13.95px;
    }

    .right_managment_content .chat_managment_img img {
        height: 100%;
        width: 100%;
    }

    .testimonial_section .pannel_title div {
        margin-top: 0px;
    }

    .review_slide .review_p p {
        font-size: 12px;
        line-height: 18px;
        margin-top: 10px;
    }

    .review_slide .teview_name h4 {
        font-size: 14px;
    }

    .pannel_title {
        width: 100%;
        padding-bottom: 30px;
    }



    span.sec-sub-title {
        font-weight: 400;
        font-size: 14px;
    }

    .main_testimonial {
        padding-top: 30px;
    }

    .pricing_view {
        max-width: 50%;
        margin-top: 25px;
        padding: 10px;
    }

    .main_pricing {
        margin-top: 20px;
        gap: unset;
    }

    .primium_arrow {
        top: -33px;
        right: -20px;
    }

    .advance_arrow {
        top: -33px;
        right: -20px;
    }

    .pricing_view .pricing_forever h3,
    .pricing_advance h3,
    .pricing_primium h3 {
        font-size: 18px;
        margin: 3px 0;
    }

    .pricing_view .pricing_forever span,
    .pricing_advance span,
    .pricing_primium span {
        font-weight: 400;
    }

    .pricing_primium a {
        font-size: 11px;
        margin-top: 5px;
    }

    .pricing_view .pricing_forever,
    .pricing_advance,
    .pricing_primium {
        height: unset;
    }

    .pricing_view .pricing_forever_content p,
    .pricing_advance_content p,
    .pricing_primium_content p {
        font-size: 12px;
        line-height: 15px;
    }

    .pricing_view .pricing_forever p,
    .pricing_advance p,
    .pricing_primium p {
        font-size: 12px;
        line-height: 17px;
    }

    .popular_txt {
        top: -3px;
        left: 13px;
    }

    .popular_txt p {
        font-size: 14px;
    }

    .accordion .accordion_pannel h4 {
        padding: 13px;
        font-size: 14px;
        margin-right: 10px;
    }

    .pannel {
        padding: 12px;
        padding-top: 9px;
    }

    .accordion p {
        font-size: 12px;
        margin-bottom: 0px;
    }

    .blog_slider .main_blog_wrap {
        max-width: calc(50% - 8px);
    }

    .blog_pagination ul li a {
        height: 28px;
        width: 28px;
        font-size: 16px;
        line-height: 19px;
    }

    .blog_pagination ul {
        gap: 10px;
        margin-top: 30px;
    }

    .blog_view .blog_contanet h4 {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 2px;
    }

    .blog_view .blog_contanet p {
        font-size: 12px;
    }

    .footer_content ul {
        gap: 20px;
        padding: 14px 10px;
    }

    .blog-det-title-text span {
        padding-bottom: 10px;
    }

    .blog-det-title-text h1 {
        font-size: 32px;
        line-height: 39px;
        margin-top: 5px;
    }

    .blog-detail img {
        margin-bottom: 40px;
    }

    .medium-container {
        padding: unset;
    }

    .medium-container .bolg-detail-content {
        padding-right: 40px;
        /* max-width: 75%; */
    }

    .medium-container .right-blog-img {
        max-width: 25%;
    }

    .blog-detail p {
        font-size: 14px;
        padding-bottom: 15px;
    }

    .blog-detail h2 {
        font-size: 22px;
        padding: 20px 0 15px;
    }

    .blog-detail h3 {
        padding: 20px 0 15px;
        font-size: 20px;
    }

    .blog-detail h4 {
        font-size: 18px;
        padding-bottom: 10px;
    }

    .bolg-detail-content ul,
    .bolg-detail-content ol {
        padding-left: 40px;
    }

    .tab_content .message_item {
        max-width: calc(50% - 10px);
    }

    .what-is-templete .right_msg_chat {
        padding-left: 0;
    }

    .msg-hero .right_msg_chat {
        padding-right: 0;
    }

    .msg-hero .msg_chat {
        flex-direction: unset;
    }

    .msg-hero .msg_chat,
    .chat_pannel .msg_chat {
        margin-top: 20px;
    }

    .msg-hero .left_msg_chat {
        margin-top: 50px;
    }

    .main_tab_wrapper .tab_nav {
        margin-bottom: 30px;
    }

    .templete-message-list .blog-det-title-text span {
        padding-top: 0;
    }

    .main_header nav .has-child>a:hover:after {
        border-right: solid 1.5px #10a19d;
        border-bottom: solid 1.5px #10a19d;
        top: 25px;
    }

    .main_header nav .has-child>a:after {
        top: 22px;
    }

    .main_header nav ul.sub-menu {
        padding: 0 !important;
        left: 0;
        width: 100%;
    }


    /* start apps  */
    #recommended_apps .pannel_title h1 {
        font-size: 23px;
        line-height: 28px;
        margin-bottom: 8px;
        margin-top: 6px;
    }

    #recommended_apps .pannel_title p a.btn {
        padding: 9px 18px;
        font-size: 12px;
        margin-top: 10px;
    }

    .main_recommended_apps {
        margin-top: 60px;
    }

    .apps_item .apps_content p,
    .apps_item .apps_content .apps_btn a {
        font-size: 13px;
        line-height: 18px;
    }

    .apps_item .apps_content p {
        margin-bottom: 10px;
    }

    .apps_item .apps_content h3 {
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 12px;
    }

    .apps_item .apps_content .apps_btn a svg {
        max-width: 16px;
    }

    /* end apps */

    /* start link generator */
    .main_link_generaor_banner {
        gap: 20px;
    }

    .right_link_generator,
    .left_link_generator {
        max-width: 100%;
        text-align: center;
    }

    .left_link_generator .banner_btn {
        justify-content: center;
    }

    /* step */
    .link_generat_step_sec .pannel_title {
        margin-bottom: 10px;
    }

    .link_generat_step_item span {
        font-size: 21px;
    }

    .link_generat_step_item .step_number P {
        height: 35px;
        width: 35px;
        font-size: 16px;
        line-height: 19px;
    }

    .link_step_contant h4 {
        font-size: 16px;
        padding-bottom: 7px;
    }

    .link_step_contant p {
        font-size: 13px;
    }


    .link_generat_step_item .step_number::after {
        animation: border-animi 5s infinite linear;
    }

    .link_generat_step_item .step_number::before {
        animation: border-animi 5s infinite linear;
        width: 90%;
    }

    @keyframes border-animi {
        0% {
            background-position: 0px 0px, 300px 116px, 0px 150px, 216px 0px;
        }

        100% {
            background-position: 300px 0px, 0px 116px, 0px 0px, 216px 150px;
        }
    }

    /* number link */
    .number_link_generat .chat_vector2 {
        top: auto;
        bottom: 0;
        width: 60% !important;
    }

    .link_generat_contant .h2 {
        font-size: 19px;
        line-height: 22px;
    }

    .link_generat_contant p {
        font-size: 14px;
    }

    .link_generat_contant form {
        margin-top: 20px;
        max-width: 100%;
    }

    .link_generat_contant form input,
    .link_generat_contant form textarea {
        padding: 10px;
        font-size: 14px;
    }

    .link_custom_msg #textarea_count span {
        font-size: 12px;
        line-height: 12px;
    }

    .link_generat_contant .submit_btn button {
        font-size: 13px;
        line-height: 13px;
        padding: 10px 20px;
    }

    .link_generat_contant .link_custom_msg {
        padding: 15px 0;
    }

    .main_link_generat {
        padding: 30px;
    }

    .right_link_generat,
    .left_link_generat {
        max-width: 100%;
    }

    .msg_link_generat .msg_link_preview {
        display: flex;
        align-items: center;
    }

    .msg_preview_text p {
        font-size: 21px;
        line-height: 21px;
        max-width: 125px;
    }

    .msg_preview_text {
        top: 20%;
        right: -60%;
    }

    .app_resource_item {
        max-width: calc(50% - 6px);
    }

    .pannel ul li,
    .pannel a {
        font-size: 12px;
    }

    /* end link generator */
}

@media only screen and (max-width: 650px) {

    .menu_icon,
    .menu_icon .menu_btn,
    .menu_icon .menu_btn svg {
        display: block;
    }

    .menu_icon button {
        background-color: transparent;
        border: none;
        cursor: pointer;
    }

    .cross {
        display: none;
        margin: 25px;
    }



    .cross.active {
        display: block;
    }

    .bars.active {
        display: none;
    }


    .main_header nav ul {
        display: block;
        width: 100%;
        padding: 20px;
        border-radius: 0px;
        background: transparent;
        box-shadow: none;
    }

    .main_header nav ul li {
        padding: 10px 0;
    }

    .main_header nav ul li a,
    .main_header nav ul li .non-link {
        font-size: 16px;
    }

    .header_logo,
    .menu_icon,
    .header_btn {
        width: 33.33%;
    }

    .header_logo {
        display: flex;
        justify-content: center;
    }

    .header_logo img {
        max-height: 49px;
        width: auto;
    }

    .header_btn {
        display: flex;
        justify-content: end;
    }

    .header_btn .btn {
        font-size: 12px;
        padding: 8px 18px;
    }

    /* play button */
    .main_chat_pannel .chat_pannel_img.chat_pannel_img_gif .play_button {
        top: 42%;
        left: 47%;
    }

    /* ************************ start 17/01 blog-detail ************************ */
    .blog-det-title-text h1 {
        font-size: 26px;
        line-height: 33px;
    }

    .blog-detail img {
        margin-bottom: 30px;
    }

    .blog-det-title-text {
        max-width: 100%;
        /* margin-top: 25px; */
    }

    .medium-container .bolg-detail-content {
        max-width: 100%;
        padding-right: unset;
    }

    .blog-detail p {
        padding-bottom: 10px;
    }

    .medium-container .right-blog-img {
        max-width: 100%;
        display: flex;
        justify-content: center;
        padding: 20px 0;
    }

    .right-blog-img .blog-custom-blog-img {
        padding-bottom: unset;
    }

    .right-blog-img .blog-custom-blog-img img {
        position: unset;
    }

    .bolg-detail-content ul,
    .bolg-detail-content ol {
        padding-left: 30px;
    }

    .bolg-detail-content ul li::marker {
        font-size: large;
    }

    .main_tab_wrapper .tab_nav_ul li {
        font-size: 13px;
        padding: 6px 12px;
    }

    .message_item .msg_title h3 {
        font-size: 16px;
        line-height: 20px;
    }

    .message-bubble {
        padding: 15px;
        border-radius: 0 15px 15px;
        margin: 5px auto 20px 20px;
    }

    .message-bubble:after {
        border-bottom: 18px solid transparent;
        border-right: 18px solid #daf7cb;
    }

    /* start apps */

    .main_recommended_apps .apps_item {
        max-width: 100%;
    }

    /* start number link gemerator */
    .link_generat_step_item .step_number::before {
        width: 55%;
    }

    .preview_msg_wlc {
        padding: 15px 20px;
    }

    .preview_msg_wlc p {
        font-size: 14px;
        line-height: 16px;
        padding: 4px 9px;
    }

    .preview_row_one .header_preview p {
        font-size: 11px;
    }

    .header_preview svg {
        width: 11px;
        height: 8px;
    }

    .header_preview .battery_icon {
        width: 14px;
        height: 10px;
    }

    .msg_preview_content {
        top: 55px;
        border-radius: 38px 38px 0 0;
        border: 5px solid #5e465d;
    }

    .msg_preview_content::after {
        border-radius: 35px 35px 0 0;
        border: 1.5px solid #706f6f;
        top: -3px;
        left: -3px;
        width: 101.1%;
    }

    .msg_call_preview_content {
        top: 6px;
        left: 6px;
        width: calc(100% - 12px);
    }

    .msg_preview_point {
        display: flex;
    }

    .preview-arrow-mobile {
        display: block;
    }

    .preview-arrow-desktop {
        display: none;
    }

    .msg_preview_text p {
        margin-top: -11px;
        margin-left: unset;
    }

    .msg_preview_text .msg_preview_point svg {
        margin-left: -5px;
        max-width: 20%;
        margin-top: -7px;
    }

    .msg_preview_text {
        top: -10%;
        right: 0;
        max-width: 100%;
    }

    .msg_preview_header {
        border-radius: 27px 27px 0 0;
    }


    .number_link_generat .chat_vector2 {
        width: 80% !important;
    }

    /* end number link gemerator */

    .wp-link-gen .wp-link-gen-content {
        max-width: 100%;
        padding: 20px;
        text-align: center;
    }

    .wp-link-gen .wp-link-gen-image {
        max-width: 100%;
        padding-left: 20px;
    }

    .wp-link-gen-image svg {
        margin-right: auto;
        height: auto;
    }

    .wp-link-gen .wp-link-gen-content a {
        margin: 0 auto;
        margin-top: 20px;
    }

    .wp-link-gen h3 {
        margin-top: 15px;
    }

    .chat-list-item h4 {
        font-size: 14px;
        line-height: 20px;
    }

    .chat-list-item h4 svg {
        max-width: 30px;
        height: auto;
        width: 100%;
    }

    .chat-list-item h4 {
        column-gap: 8px;
        padding: 12px 10px;
    }

    .chat-list-item h4 .chat-tab-arrow {
        max-width: 20px;
        height: auto;
    }

    .chat-list-item-cont h5 {
        font-size: 16px;
        line-height: 20px;
        padding: 10px 15px 15px;
    }

    .chat-list-item-cont p {
        padding: 0 15px 15px;
    }

    .chat-list-item-cont p {
        font-size: 14px;
        line-height: 20px;
    }

    .chat-list-item-cont .widget-mob-img {
        padding: 15px;
    }

    .dark_btn {
        padding: 12px 20px;
    }

    .app-share-link-wrap h2 {
        font-size: 26px;
        line-height: 30px;
    }

    .copy_link_section svg {
        max-width: 60px;
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 425px) {


    /*  header.scroll .main_header {
    padding: 15px 0;
  }*/

    .right_banner_content .right_img1_content p,
    .right_banner_content .right_img2_content p,
    .right_banner_content .right_img3_content p {
        font-size: 12px;
        line-height: 12px;
        width: 82px;
    }

    .right_banner_content .right_img2_content {
        right: 15%;
        bottom: 10%;
    }

    .left_banner_content .banner_btn a {
        padding: 9px 18px;
        font-size: 12px;
    }

    .left_banner_content .banner_btn {
        margin-top: 15px;
    }

    .sponcer_logo {
        padding: 15px 20px;
    }

    .chat_pannel .pannel_title {
        width: 100%;
    }

    .chat_pannel .chat_content p {
        font-size: 12px;
        line-height: 11px;
    }

    .chat_content1 {
        top: -16%;
    }

    .chat_content2.chat_info {
        top: -20%;
    }

    .chat_content.chat_content3 {
        bottom: -17%;
        left: 27%;
    }

    .main_chat_pannel {
        margin-top: 45px;
        padding-bottom: 23px;
    }

    .left_msg_chat .left_img_content p {
        font-size: 12px;
        line-height: 11px;
        width: 60px;
    }

    .left_msg_chat .left_img_content2 p {
        font-size: 11px;
        line-height: 11px;
        width: 60px;
    }

    .left_msg_chat svg {
        max-width: 30%;
    }

    .left_msg_chat .left_img_content p {
        margin-top: -10px;
    }

    .right_msg_chat .right_msg_content span {
        font-size: 19px;
    }

    .managment_title {
        width: 100%;
    }

    .left_managment_content h5 {
        font-size: 19px;
        margin-top: 10px;
        margin-bottom: 15px;
    }


    .testimonial_section .pannel_title h3,
    .testimonial_section .pannel_title .h3 {
        margin-bottom: 10px;
        margin-top: 4px;
    }

    .testimonial_section .test_star .star_svg svg {
        width: 15%;
    }

    .testimonial_section .test_star .star_svg {
        justify-content: center;
    }

    .testimonial_section .pannel_title div h4 {
        margin-left: 0px;
    }

    .pricing_view {
        max-width: 100%;
        margin-top: 15px;
    }

    .main_pricing {
        margin-top: 0px;
    }

    .need_help_section .help_btn,
    .main_blog .blog_btn {
        font-size: 13px;
        line-height: 16px;
        padding: 10px 25px;
    }

    .need_help_section .pannel_title h3,
    .need_help_section .pannel_title .h3 {
        margin-top: 10px;
        margin-bottom: 23px;
    }

    .footer_content ul li a {
        font-size: 11px;
    }

    .footer_content ul {
        gap: 10px;
        padding: 10px 2px;
        margin: 15px 0;
    }

    .footer_content .footer_social_icon {
        gap: 10px;
        margin-bottom: 10px;
    }

    .footer_content p {
        font-size: 12px;
    }

    .footer_social_icon a svg {
        width: 27px;
        height: 27px;
    }

    .popular_txt p {
        font-size: 12px;
    }

    .popular_txt {
        position: absolute;
        top: -5px;
        left: 12px;
    }

    .primium_arrow,
    .advance_arrow {
        top: -18px;
        right: 1px;
    }

    .advance_arrow p,
    .primium_arrow p {
        font-size: 13px;
        margin-right: 1px;
        line-height: 14px;
    }

    /* play button */
    .main_chat_pannel .chat_pannel_img.chat_pannel_img_gif .play_button svg {
        height: 30px;
        width: 30px;
    }

    .blog_slider .main_blog_wrap {
        max-width: 100%;
    }

    .tab_content .message_item {
        max-width: 100%;
    }

    .tab_content .message_item {
        max-width: 100%;
    }

    /* start link genreator */
    .left_link_generator h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .left_link_generator span {
        font-size: 14px;
    }

    .left_link_generator .banner_btn a {
        padding: 9px 18px;
    }

    .link_generat_contant p {
        font-size: 13px;
    }

    /* number */

    .msg_preview_text p::before {
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 12px solid #fff;
        right: 20px;
        bottom: -12px;
    }

    .msg_link_generat .msg_link_preview {
        max-height: 350px;
    }

    .preview_row_one {
        padding: 6px 10px;
    }

    .msg_preview_avtar .avatar_icon {
        width: 18px;
        height: 18px;
    }

    .msg_preview_avtar {
        height: 30px;
        width: 30px;
    }

    .preview_avtar_name {
        gap: 4px;
    }

    .preview_avtar_name .name {
        font-size: 12px;
        line-height: 12px;
    }

    .preview_avtar_name .last_seen {
        font-size: 10px;
        line-height: 10px;
    }

    .call_icon_div {
        gap: 5px;
    }

    .call_icon_div .video_icon {
        width: 18px;
        height: 15px;
    }

    .call_icon {
        width: 15px;
        height: 15px;
    }

    .preview_row_two {
        padding: 7px 9px 7px 7px;
    }

    .msg_call_preview_content .talk_day p {
        font-size: 10px;
        line-height: 10px;
        padding: 3px 9px;
        margin-top: 10px;
    }

    .msg_preview_text p {
        font-size: 20px;
        line-height: 21px;
    }

    /* resource */
    .app_resource_item {
        max-width: 100%;
    }

    .app_resource_item h3 {
        font-size: 13px;
        line-height: 19px;
    }

    .app_resource_item svg {
        margin-right: 8px;
        max-width: 18px;
    }

    .main_link_generat {
        padding: 15px;
    }

    .number_link_generat .chat_vector2 {
        width: 100% !important;
    }

    /* end link genreator */

    .message-box-wrap {
        max-height: 210px;
    }
}

@media only screen and (max-width: 320px) {

    .header_btn .btn {
        font-size: 11px;
        padding: 4px 8px;
    }

    .left_banner .left_banner_content h1 {
        font-size: 16px;
        line-height: 19px;
        margin-top: 5px;
        margin-bottom: 7px;
    }

    .left_banner .left_banner_content span {
        font-size: 13px;
    }

    .left_banner .left_banner_content p {
        font-size: 11px;
        line-height: 16px;
    }


    .right_banner_content .right_img2_content {
        bottom: 9%;
    }

    /* play button */
    .main_chat_pannel .chat_pannel_img.chat_pannel_img_gif .play_button {
        top: 39%;
        left: 45%;
    }

    .pannel_title h2 {
        font-size: 12px;
    }

    .pannel_title h3,
    .pannel_title .h3 {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 7px;
        margin-top: 3px;
    }

    .pannel_title p {
        font-size: 12px;
        line-height: 17px;
    }

    .chat_content.chat_content3 {
        bottom: -25%;
        left: 17%;
        width: unset;
    }

    .chat_content.chat_content3 svg {
        margin-left: -10px;
        width: 20%;
    }

    .main_message_chat {
        padding-top: 40px;
    }

    .right_msg_chat .right_msg_content h5 {
        font-size: 12px;
        line-height: 17px;
        margin-top: 5px;
        margin-bottom: 10px;
    }

    .left_msg_chat .left_img_content {
        top: 19%;
        width: 40.6155%;
    }

    .left_msg_chat .left_img_content2 p {
        margin-left: -116%;
        margin-bottom: -81%;
    }

    .right_msg_chat .right_msg_content span {
        font-size: 15px;
        line-height: 15px;
    }

    .managment_title h3 {
        font-size: 15px;
        line-height: 20px;
    }

    .left_managment_content span {
        font-size: 12px;
    }

    .left_managment_content h5 {
        font-size: 15px;
        line-height: 15px;
        margin: 9px 0;
    }

    .left_managment_content p {
        font-size: 11px;
        line-height: 15px;
    }



    .accordion .accordion_pannel h4 {
        font-size: 12px;
        line-height: 15px;
        margin-right: 12px;
    }

    .main_blog {
        margin-top: 20px;
    }

    .need_help_section .help_btn,
    .main_blog .blog_btn {
        font-size: 12px;
        line-height: 16px;
        padding: 7px 20px;
    }

    .need_help_section .pannel_title h3,
    .need_help_section .pannel_title .h3 {
        margin-top: 7px;
        margin-bottom: 15px;
    }

    .footer_content ul {
        padding: 10px 0px;
        gap: 8px;
    }

    .footer_content ul li a {
        font-size: 10px;
    }
}

.page_contain h1 {
    margin: 40px 0;
    text-align: center;
}

.page_contain h2 {
    margin: 30px 0 20px;
}

.page_contain p {
    margin-bottom: 10px;
}

.page_contain {
    color: #272829;
}

/*  end responsive */





/*Home page css start*/
.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
}

.nav-menu ul {
    display: flex;
    list-style: none;
}

.nav-menu ul li {
    margin-left: 30px;
}

.nav-menu ul li a {
    font-size: 16px;
    font-weight: 500;
    color: var(--heading-color);
    padding: 10px 0;
    position: relative;
}

.nav-menu ul li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ef 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.feature-box {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 25px;
}

.feature-icon-wrap {
    margin-bottom: 25px;
    display: inline-flex;
    padding: 15px;
    background: #fdebe7;
    max-width: fit-content;
    border-radius: 10px;
}

.feature-icon i {
    font-size: 50px;
    color: var(--primary-color);
}

.feature-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-box p {
    margin-bottom: 0;
    color: var(--body-color);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.footer-widget h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-widget p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}



.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 280px;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        padding: 40px 20px;
        transition: all 0.4s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
    }

    .nav-menu ul li {
        margin-left: 0;
        margin-bottom: 20px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 40px;
    }
}

@media screen and (max-width: 767px) {
    .section-title h2 {
        font-size: 30px;
    }

    .hero-section {
        padding: 150px 0 80px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .feature-box {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 575px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/*Home page css end*/

/*HEADER AND FOOTER START*/
/* Header Styles */
header.top {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999999;
    background-color: #fdf5f3;
    border-bottom: 1px solid #eaeaea;
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

header .main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

header .main-header a:lang(es),
.footer-logo a:lang(es),
header .main-header a:lang(it),
.footer-logo a:lang(it),
header .main-header a:lang(nl),
.footer-logo a:lang(nl),
header .main-header a:lang(fr),
.footer-logo a:lang(fr),
header .main-header a:lang(ru),
.footer-logo a:lang(ru),
header .main-header a:lang(pt),
.footer-logo a:lang(pt),
header .main-header a:lang(sv),
.footer-logo a:lang(sv),
header .main-header a:lang(ca),
.footer-logo a:lang(ca),
header .main-header a:lang(id),
.footer-logo a:lang(id),
header .main-header a:lang(ms),
.footer-logo a:lang(ms),
header .main-header a:lang(pl),
.footer-logo a:lang(pl),
header .main-header a:lang(ro),
.footer-logo a:lang(ro),
header .main-header a:lang(sw),
.footer-logo a:lang(sw),
header .main-header a:lang(uk),
.footer-logo a:lang(uk),
header .main-header a:lang(cs),
.footer-logo a:lang(cs),
header .main-header a:lang(el),
.footer-logo a:lang(el),
header .main-header a:lang(et),
.footer-logo a:lang(et),
header .main-header a:lang(hr),
.footer-logo a:lang(hr),
header .main-header a:lang(lt),
.footer-logo a:lang(lt),
header .main-header a:lang(sr),
.footer-logo a:lang(sr),
header .main-header a:lang(bg),
.footer-logo a:lang(bg),
header .main-header a:lang(da),
.footer-logo a:lang(da),
header .main-header a:lang(lv),
.footer-logo a:lang(lv),
header .main-header a:lang(no),
.footer-logo a:lang(no),
header .main-header a:lang(sk),
.footer-logo a:lang(sk) {
    gap: 5px;
}

header .main-header a img:lang(es),
.footer-logo a img:lang(es),
header .main-header a img:lang(de),
.footer-logo a img:lang(de),
header .main-header a img:lang(it),
.footer-logo a img:lang(it),
header .main-header a img:lang(nl),
.footer-logo a img:lang(nl),
header .main-header a img:lang(fr),
.footer-logo a img:lang(fr),
header .main-header a img:lang(ru),
.footer-logo a img:lang(ru),
header .main-header a img:lang(pt),
.footer-logo a img:lang(pt),
header .main-header a img:lang(sv),
.footer-logo a img:lang(sv),
header .main-header a img:lang(ca),
.footer-logo a img:lang(ca),
header .main-header a img:lang(id),
.footer-logo a img:lang(id),
header .main-header a img:lang(ms),
.footer-logo a img:lang(ms),
header .main-header a img:lang(pl),
.footer-logo a img:lang(pl),
header .main-header a img:lang(ro),
.footer-logo a img:lang(ro),
header .main-header a img:lang(sw),
.footer-logo a img:lang(sw),
header .main-header a img:lang(uk),
.footer-logo a img:lang(uk),
header .main-header a img:lang(cs),
.footer-logo a img:lang(cs),
header .main-header a img:lang(el),
.footer-logo a img:lang(el),
header .main-header a img:lang(et),
.footer-logo a img:lang(et),
header .main-header a img:lang(hr),
.footer-logo a img:lang(hr),
header .main-header a img:lang(lt),
.footer-logo a img:lang(lt),
header .main-header a img:lang(sr),
.footer-logo a img:lang(sr),
header .main-header a img:lang(bg),
.footer-logo a img:lang(bg),
header .main-header a img:lang(da),
.footer-logo a img:lang(da),
header .main-header a img:lang(lv),
.footer-logo a img:lang(lv),
header .main-header a img:lang(no),
.footer-logo a img:lang(no),
header .main-header a img:lang(sk),
.footer-logo a img:lang(sk) {
    max-width: 28px;
}

header .main-header a h2:lang(es),
.footer-logo a h2:lang(es),
header .main-header a h2:lang(de),
.footer-logo a h2:lang(de),
header .main-header a h2:lang(it),
.footer-logo a h2:lang(it),
header .main-header a h2:lang(nl),
.footer-logo a h2:lang(nl),
header .main-header a h2:lang(fr),
.footer-logo a h2:lang(fr),
header .main-header a h2:lang(pt),
.footer-logo a h2:lang(pt),
header .main-header a h2:lang(sv),
.footer-logo a h2:lang(sv),
header .main-header a h2:lang(ca),
.footer-logo a h2:lang(ca),
header .main-header a h2:lang(id),
.footer-logo a h2:lang(id),
header .main-header a h2:lang(ms),
.footer-logo a h2:lang(ms),
header .main-header a h2:lang(pl),
.footer-logo a h2:lang(pl),
header .main-header a h2:lang(ro),
.footer-logo a h2:lang(ro),
header .main-header a h2:lang(sw),
.footer-logo a h2:lang(sw),
header .main-header a h2:lang(uk),
.footer-logo a h2:lang(uk),
header .main-header a h2:lang(cs),
.footer-logo a h2:lang(cs),
header .main-header a h2:lang(el),
.footer-logo a h2:lang(el),
header .main-header a h2:lang(et),
.footer-logo a h2:lang(et),
header .main-header a h2:lang(hr),
.footer-logo a h2:lang(hr),
header .main-header a h2:lang(lt),
.footer-logo a h2:lang(lt),
header .main-header a h2:lang(sr),
.footer-logo a h2:lang(sr),
header .main-header a h2:lang(da),
.footer-logo a h2:lang(da),
header .main-header a h2:lang(lv),
.footer-logo a h2:lang(lv),
header .main-header a h2:lang(no),
.footer-logo a h2:lang(no),
header .main-header a h2:lang(sk),
.footer-logo a h2:lang(sk) {
    font-size: 16px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

header .main-header a img,
.footer-logo a img {
    max-width: 36px;
}


header .main-header a h2,
.footer-logo a h2 {
    color: #000000;
    font-size: 22px;
    font-weight: 600;
}

.main-header .menu-wrapper {
    display: flex;
}

header .main-header ul {
    display: flex;
    gap: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: max-content;
    width: 100%;
}

header .main-header ul:lang(es),
header .main-header ul:lang(it),
header .main-header ul:lang(nl),
header .main-header ul:lang(fr),
header .main-header ul:lang(ru),
header .main-header ul:lang(pt),
header .main-header ul:lang(sv),
header .main-header ul:lang(ca),
header .main-header ul:lang(id),
header .main-header ul:lang(ms),
header .main-header ul:lang(pl),
header .main-header ul:lang(ro),
header .main-header ul:lang(sw),
header .main-header ul:lang(uk),
header .main-header ul:lang(cs),
header .main-header ul:lang(el),
header .main-header ul:lang(et),
header .main-header ul:lang(hr),
header .main-header ul:lang(lt),
header .main-header ul:lang(sr),
header .main-header ul:lang(bg),
header .main-header ul:lang(da),
header .main-header ul:lang(lv),
header .main-header ul:lang(no),
header .main-header ul:lang(sk) {
    gap: 10px;
}

header .main-header ul li {
    list-style-type: none;
}

header .main-header ul li a:lang(es),
header .main-header ul li a:lang(it),
header .main-header ul li a:lang(nl),
header .main-header ul li a:lang(fr),
header .main-header ul li a:lang(ru),
header .main-header ul li a:lang(pt),
header .main-header ul li a:lang(sv),
header .main-header ul li a:lang(ca),
header .main-header ul li a:lang(id),
header .main-header ul li a:lang(ms),
header .main-header ul li a:lang(pl),
header .main-header ul li a:lang(ro),
header .main-header ul li a:lang(sw),
header .main-header ul li a:lang(uk),
header .main-header ul li a:lang(cs),
header .main-header ul li a:lang(el),
header .main-header ul li a:lang(et),
header .main-header ul li a:lang(hr),
header .main-header ul li a:lang(lt),
header .main-header ul li a:lang(sr),
header .main-header ul li a:lang(da),
header .main-header ul li a:lang(lv),
header .main-header ul li a:lang(no),
header .main-header ul li a:lang(sk) {
    font-size: 14px;
    word-wrap: break-word;
}

header .main-header a:lang(es),
.footer-logo a:lang(es),
header .main-header a:lang(it),
.footer-logo a:lang(it),
header .main-header a:lang(nl),
.footer-logo a:lang(nl),
header .main-header a:lang(fr),
.footer-logo a:lang(fr),
header .main-header a:lang(ru),
.footer-logo a:lang(ru),
header .main-header a:lang(pt),
.footer-logo a:lang(pt),
header .main-header a:lang(sv),
.footer-logo a:lang(sv),
header .main-header a:lang(ca),
.footer-logo a:lang(ca),
header .main-header a:lang(id),
.footer-logo a:lang(id),
header .main-header a:lang(ms),
.footer-logo a:lang(ms),
header .main-header a:lang(pl),
.footer-logo a:lang(pl),
header .main-header a:lang(ro),
.footer-logo a:lang(ro),
header .main-header a:lang(sw),
.footer-logo a:lang(sw),
header .main-header a:lang(uk),
.footer-logo a:lang(uk),
header .main-header a:lang(cs),
.footer-logo a:lang(cs),
header .main-header a:lang(el),
.footer-logo a:lang(el),
header .main-header a:lang(et),
.footer-logo a:lang(et),
header .main-header a:lang(hr),
.footer-logo a:lang(hr),
header .main-header a:lang(lt),
.footer-logo a:lang(lt),
header .main-header a:lang(sr),
.footer-logo a:lang(sr),
header .main-header a:lang(bg),
.footer-logo a:lang(bg),
header .main-header a:lang(da),
.footer-logo a:lang(da),
header .main-header a:lang(lv),
.footer-logo a:lang(lv),
header .main-header a:lang(no),
.footer-logo a:lang(no),
header .main-header a:lang(sk),
.footer-logo a:lang(sk) {
    gap: 5px;
}

header .main-header ul li a {
    text-decoration: none;
    font-weight: 400;
    color: rgb(0, 0, 0);
}

header .main-header a,
.footer-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
}



.menu-wrapper .header-button {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    align-items: center;
}

header .main-header a:lang(es),
.footer-logo a:lang(es),
header .main-header a:lang(it),
.footer-logo a:lang(it),
header .main-header a:lang(nl),
.footer-logo a:lang(nl),
header .main-header a:lang(fr),
.footer-logo a:lang(fr),
header .main-header a:lang(ru),
.footer-logo a:lang(ru),
header .main-header a:lang(pt),
.footer-logo a:lang(pt),
header .main-header a:lang(sv),
.footer-logo a:lang(sv),
header .main-header a:lang(ca),
.footer-logo a:lang(ca),
header .main-header a:lang(id),
.footer-logo a:lang(id),
header .main-header a:lang(ms),
.footer-logo a:lang(ms),
header .main-header a:lang(pl),
.footer-logo a:lang(pl),
header .main-header a:lang(ro),
.footer-logo a:lang(ro),
header .main-header a:lang(sw),
.footer-logo a:lang(sw),
header .main-header a:lang(uk),
.footer-logo a:lang(uk),
header .main-header a:lang(cs),
.footer-logo a:lang(cs),
header .main-header a:lang(el),
.footer-logo a:lang(el),
header .main-header a:lang(et),
.footer-logo a:lang(et),
header .main-header a:lang(hr),
.footer-logo a:lang(hr),
header .main-header a:lang(lt),
.footer-logo a:lang(lt),
header .main-header a:lang(sr),
.footer-logo a:lang(sr),
header .main-header a:lang(bg),
.footer-logo a:lang(bg),
header .main-header a:lang(da),
.footer-logo a:lang(da),
header .main-header a:lang(lv),
.footer-logo a:lang(lv),
header .main-header a:lang(no),
.footer-logo a:lang(no),
header .main-header a:lang(sk),
.footer-logo a:lang(sk) {
    gap: 5px;
}

.main-header .button {
    color: rgba(103, 103, 103, 1);
    gap: 9px;
    padding: 9px 15px 9px 10px;
    border-radius: 50px;
    border: 1px solid rgba(103, 103, 103, 1);
    align-items: center;
    text-decoration: none;
    font-weight: 500;
    background-color: #fff;
}

.main-header .button {
    padding: 10px !important;
    transition: .3s;
}

.main-header .button span {
    display: flex;
}

.menu-wrapper .header-button span.btn-text {
    display: none;
    transition: .3s;
    background-color: #fff;
}

.menu-wrapper .header-button span svg {
    max-width: 26px;
    height: auto;
}

.mobile-menu {
    display: none;
}

.main-header .mobile-menu {
    display: none;
}

.main-header .mobile-menu span {
    display: flex;
    cursor: pointer;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000075;
    z-index: 99;
    opacity: 0;
    cursor: pointer;
    visibility: hidden;
    transition: all .3s ease-in-out;
    display: block;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-wrapper .close {
    display: none;
}


/* Mobile Responsive */
@media (max-width: 768px) {

    .menu-wrapper .close,
    .main-header .mobile-menu {
        display: block;
    }

    .menu-wrapper {
        position: fixed;
        top: 0;
        right: 0;
        flex-direction: column;
        gap: 18px;
        height: 100%;
        max-width: 300px;
        width: 100%;
        z-index: 9999;
        padding: 25px;
        padding-top: 40px;
        background-color: #fff;
        transform: translateX(100%);
        transition: all .3s ease-in-out;
    }

    .main-header .menu-wrapper.active {
        transform: translateX(0);
    }

    .menu-wrapper ul {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-top: 20px;
    }

    .header-button {
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
    }

    .button {
        justify-content: center;
        width: 100%;
    }

    .close {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .mobile-menu {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }

}

/* Footer Styles */
footer {
    margin-top: auto;
    background: #fdf5f3;
    padding: 40px 0;
    border-top: 1px solid #eaeaea;
}

footer::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    /*  background-image: url("undefined");*/
    width: 37.5%;
    height: 600px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

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

.main-footer .footer-logo a {
    padding-bottom: 15px;
    align-items: center;
}

header .main-header a:lang(es),
.footer-logo a:lang(es),
header .main-header a:lang(it),
.footer-logo a:lang(it),
header .main-header a:lang(nl),
.footer-logo a:lang(nl),
header .main-header a:lang(fr),
.footer-logo a:lang(fr),
header .main-header a:lang(ru),
.footer-logo a:lang(ru),
header .main-header a:lang(pt),
.footer-logo a:lang(pt),
header .main-header a:lang(sv),
.footer-logo a:lang(sv),
header .main-header a:lang(ca),
.footer-logo a:lang(ca),
header .main-header a:lang(id),
.footer-logo a:lang(id),
header .main-header a:lang(ms),
.footer-logo a:lang(ms),
header .main-header a:lang(pl),
.footer-logo a:lang(pl),
header .main-header a:lang(ro),
.footer-logo a:lang(ro),
header .main-header a:lang(sw),
.footer-logo a:lang(sw),
header .main-header a:lang(uk),
.footer-logo a:lang(uk),
header .main-header a:lang(cs),
.footer-logo a:lang(cs),
header .main-header a:lang(el),
.footer-logo a:lang(el),
header .main-header a:lang(et),
.footer-logo a:lang(et),
header .main-header a:lang(hr),
.footer-logo a:lang(hr),
header .main-header a:lang(lt),
.footer-logo a:lang(lt),
header .main-header a:lang(sr),
.footer-logo a:lang(sr),
header .main-header a:lang(bg),
.footer-logo a:lang(bg),
header .main-header a:lang(da),
.footer-logo a:lang(da),
header .main-header a:lang(lv),
.footer-logo a:lang(lv),
header .main-header a:lang(no),
.footer-logo a:lang(no),
header .main-header a:lang(sk),
.footer-logo a:lang(sk) {
    gap: 5px;
    font-size: 14px;
}

footer .main-footer a {
    display: flex;
}

.footer-logo h2 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

footer .main-footer p {
    color: #676767;
    font-size: 14px;
}

.main-footer .footer-menu {
    text-align: center;
}

.main-footer .footer-menu ul {
    display: flex;
    gap: 40px;
    padding-bottom: 20px;
}

.main-footer .footer-menu ul li {
    list-style-type: none;
}

.main-footer .footer-menu ul li a {
    color: #000;
    text-decoration: unset;
    font-size: 14px;
}

footer .main-footer a {
    display: flex;
}

footer .main-footer p {
    color: #676767;
    font-size: 14px;
}

.main-footer .social-icon {
    /*display: flex;*/
    display: none;
    align-items: center;
    gap: 15px;
}

.social-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    transition: all 0.3s ease;
}

.noting-to-show {
    text-align: center;
    font-size: 18px;
    color: #151515;
}

/* .social-icon svg {
      width: 20px;
      height: 20px;
    } */

/* Mobile Footer */
@media (max-width: 768px) {
    footer .main-footer {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .main-footer .footer-logo a {
        padding-bottom: 15px;
    }

    footer .footer-menu ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    footer .social-icon {
        justify-content: center;
    }

    .main-footer .footer-menu ul {
        gap: 10px;
        padding-bottom: 10px;
        flex-direction: column;
        align-items: center;
    }
}

/* Top Arrow Button */
body .top_arrow_button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

body .top_arrow_button.show {
    opacity: 1;
    visibility: visible;
}

body .top_arrow_button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #007bff;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

body .top_arrow_button svg path {
    fill: #fff;
}

/* Utility Classes */
.flex {
    display: flex;
}

.align_center {
    align-items: center;
}

.justify_between {
    justify-content: space-between;
}

.d-none {
    display: none;
}

/*HEADER AND FOOTER END*/



/*RIGHT SIDEBAR START*/
.right-sidebar {
    max-width: 300px;
    width: 100%;
    background: #fdf5f3;
    padding: 20px;
    color: #000;
    border-right: 1px solid #eaeaea;
    flex-shrink: 0;
    height: 100%;
}

.blog-detail-sec.spacer>.container {
    padding-top: 30px;
    max-width: calc(1280px - 320px);
}

.right-sidebar h2 {
    color: #000;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: left;
    font-weight: 600;
}

.sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-list li {
    margin-bottom: 5px
}

.sidebar-list a {
    display: block;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    color: #000;
    transition: all 0.2s ease;
}

.sidebar-list a:hover {
    background-color: #ffece5;
}

.sidebar-list a.active {
    background: #e64a19;
    /* blue highlight */
    color: #fff;
}

.sidebar-list a.feature-link{
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.sidebar-list .sidebar-feature-icon-wrap {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.sidebar-list .sidebar-feature-icon-wrap .image-preview {
    width: 24px;
    height: 24px;
    display: block;
}

.sidebar-list .feature-text {
    line-height: 1;
}

/*RIGHT SIDEBAR END*/


.grid-container {
    padding-bottom: 40px;
}

.grid-container h2 {
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.features-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-item {
    flex: 0 0 calc(33.33% - 13.333px);
    display: flex;
    justify-content: center;
}

.card {
    width: 100%;
    height: 100%;
    padding: 30px;
    border-radius: 30px;
    /* border: 1px solid #00026; */
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.card-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card img.image-preview {
    max-width: 30px;
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.card-title {
    font-size: 22px;
    line-height: 1.3;
    color: #000;
    font-weight: 600;
    font-weight: 500;
    padding-bottom: 10px;
    align-items: center;
    display: flex;
    gap: 13px;
    font-family: var(--headFont);
}


.card-body .btn {
    margin-top: auto;
    display: inline-block;
    padding: 11px 16px;
    font-size: 18px;
    color: #fff;
    background: #e64a19;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s;
    align-self: center;
    width: 100%;
    text-align: center;
    font-weight: 400;
}

.card-body .btn:hover {
    background: #d14215;
}

span.sec-sub-title {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 2px 15px;
    background-color: #000;
    border-radius: 50px;
}

.main-header .button:hover span.btn-text {
    display: block;
    transition: .3s;
}

/* sidebar */
section.blog-detail-sec.spacer {
    display: flex;
    gap: 20px;
}

span.close-icon {
    max-width: fit-content;
    margin-left: auto;
    display: none;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.sidebar-wrapper {
    flex-shrink: 0;
    order: 1;
}

.features-drawer {
    display: none;
}

.main-header .button:lang(ca),
.main-header .button:lang(bg) {
    padding: 7px !important;
}

.main-header .button:lang(bg) {
    font-size: 12px;
    font-weight: 400;
}

.menu-wrapper .header-button span svg:lang(ca),
.menu-wrapper .header-button span svg:lang(bg),
.menu-wrapper .header-button span svg:lang(nl) {
    max-width: 24px;
}

header .main-header a h2:lang(bg),
.footer-logo a h2:lang(bg),
header .main-header a h2:lang(ru),
.footer-logo a h2:lang(ru) {
    font-size: 13px;
}

.main-header .button:lang(ru),
.main-header .button:lang(ca),
.main-header .button:lang(nl) {
    padding: 8px !important;
    font-weight: 400;
    font-size: 14px;
}

.menu-wrapper .header-button:lang(ru) {
    gap: 8px;
}

header .main-header ul li a:lang(bg) {
    font-size: 12.5px;
}

body.empty-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.ra-header-title img {
    margin: 0;
}

.main-not-found#main {
    margin: auto;
}

#main #not_found_section>span {
    font-size: 20px;
    display: block;
    margin-bottom: 25px;
    color: #000;
}

#main #not_found_section h1 {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
    color: #000;
}

@media (max-width: 1199px) {

    header .main-header ul:lang(ca),
    header .main-header ul:lang(bg),
    header .main-header ul:lang(nl),
    header .main-header ul:lang(hu) {
        left: 55%;
    }

    header .main-header a h2:lang(nl),
    .footer-logo a h2:lang(nl) {
        font-size: 13px;
        font-weight: 500;
    }

    header .main-header ul li a:lang(nl) {
        font-size: 13px;
    }

    .menu-wrapper .header-button span svg:lang(ca),
    .menu-wrapper .header-button span svg:lang(ru),
    .menu-wrapper .header-button span svg:lang(bg),
    .menu-wrapper .header-button span svg:lang(nl) {
        max-width: 18px;
    }

    .main-header .button:lang(ca),
    .main-header .button:lang(ru),
    .main-header .button:lang(bg),
    .main-header .button:lang(nl) {
        padding: 5px !important;
        font-size: 12px;
    }

    header .main-header .logo:lang(ca),
    header .main-header .logo:lang(ru),
    header .main-header .logo:lang(bg) {
        max-width: 25%;
    }

    .menu-wrapper .header-button:lang(nl) {
        gap: 5px;
    }

    header .main-header a h2:lang(es),
    .footer-logo a h2:lang(es),
    header .main-header a h2:lang(de),
    .footer-logo a h2:lang(de),
    header .main-header a h2:lang(it),
    .footer-logo a h2:lang(it),
    header .main-header a h2:lang(nl),
    .footer-logo a h2:lang(nl),
    header .main-header a h2:lang(fr),
    .footer-logo a h2:lang(fr),
    header .main-header a h2:lang(ru),
    .footer-logo a h2:lang(ru),
    header .main-header a h2:lang(pt),
    .footer-logo a h2:lang(pt),
    header .main-header a h2:lang(sv),
    .footer-logo a h2:lang(sv),
    header .main-header a h2:lang(hu),
    .footer-logo a h2:lang(hu),
    header .main-header a h2:lang(pl),
    .footer-logo a h2:lang(pl),
    header .main-header a h2:lang(no),
    .footer-logo a h2:lang(no) {
        font-size: 14px;
        word-wrap: break-word;
        white-space: wrap;
        width: clamp(60%, 50%, 100%);
    }

    header .main-header ul {
        gap: 20px;
    }



    header .main-header a:lang(es),
    .footer-logo a:lang(es),
    header .main-header a:lang(it),
    .footer-logo a:lang(it),
    header .main-header a:lang(nl),
    .footer-logo a:lang(nl),
    header .main-header a:lang(fr),
    .footer-logo a:lang(fr),
    header .main-header a:lang(ru),
    .footer-logo a:lang(ru),
    header .main-header a:lang(pt),
    .footer-logo a:lang(pt),
    header .main-header a:lang(sv),
    .footer-logo a:lang(sv),
    header .main-header a:lang(ca),
    .footer-logo a:lang(ca),
    header .main-header a:lang(id),
    .footer-logo a:lang(id),
    header .main-header a:lang(ms),
    .footer-logo a:lang(ms),
    header .main-header a:lang(pl),
    .footer-logo a:lang(pl),
    header .main-header a:lang(ro),
    .footer-logo a:lang(ro),
    header .main-header a:lang(sw),
    .footer-logo a:lang(sw),
    header .main-header a:lang(uk),
    .footer-logo a:lang(uk),
    header .main-header a:lang(cs),
    .footer-logo a:lang(cs),
    header .main-header a:lang(el),
    .footer-logo a:lang(el),
    header .main-header a:lang(et),
    .footer-logo a:lang(et),
    header .main-header a:lang(hr),
    .footer-logo a:lang(hr),
    header .main-header a:lang(lt),
    .footer-logo a:lang(lt),
    header .main-header a:lang(sr),
    .footer-logo a:lang(sr),
    header .main-header a:lang(bg),
    .footer-logo a:lang(bg),
    header .main-header a:lang(da),
    .footer-logo a:lang(da),
    header .main-header a:lang(lv),
    .footer-logo a:lang(lv),
    header .main-header a:lang(no),
    .footer-logo a:lang(no),
    header .main-header a:lang(sk),
    .footer-logo a:lang(sk),
    header .main-header ul li a:lang(es),
    header .main-header ul li a:lang(it),
    header .main-header ul li a:lang(nl),
    header .main-header ul li a:lang(fr),
    header .main-header ul li a:lang(ru),
    header .main-header ul li a:lang(pt),
    header .main-header ul li a:lang(sv),
    header .main-header ul li a:lang(ca),
    header .main-header ul li a:lang(id),
    header .main-header ul li a:lang(ms),
    header .main-header ul li a:lang(pl),
    header .main-header ul li a:lang(ro),
    header .main-header ul li a:lang(sw),
    header .main-header ul li a:lang(uk),
    header .main-header ul li a:lang(cs),
    header .main-header ul li a:lang(el),
    header .main-header ul li a:lang(et),
    header .main-header ul li a:lang(hr),
    header .main-header ul li a:lang(lt),
    header .main-header ul li a:lang(sr),
    header .main-header ul li a:lang(da),
    header .main-header ul li a:lang(lv),
    header .main-header ul li a:lang(no),
    header .main-header ul li a:lang(sk) {
        font-size: 12px;
    }

    .main-header .button {
        padding: 6px !important;
    }

    .menu-wrapper .header-button span svg {
        max-width: 22px;
    }

    .menu-wrapper .header-button {
        gap: 6px;
    }
}

@media (max-width: 992px) {
    header .main-header a h2:lang(ca) {
        font-size: 14px;
        line-height: 1.3;
    }

    header .main-header ul:lang(ca),
    header .main-header ul:lang(ru),
    header .main-header ul:lang(bg),
    header .main-header ul:lang(nl) {
        gap: 8px;
    }

    header .main-header ul li a:lang(ca),
    header .main-header ul li a:lang(ru) {
        font-size: 13px;
    }

    header .main-header a h2:lang(ru),
    header .main-header a h2:lang(bg) {
        line-height: 1.3;
        font-weight: 400;
    }

    .feature-item {
        flex: 0 0 calc(50% - 10px);
    }

    span.sec-sub-title {
        font-size: 14px;
    }

    header .main-header a h2,
    .footer-logo a h2 {
        font-size: 17px;
    }

    /* header .main-header {
        padding: 15px;
    } */

    header .main-header a img,
    .footer-logo a img {
        max-width: 28px;
    }

    header .main-header ul {
        gap: 15px;
    }

    header .main-header ul li a {
        font-size: 15px;
    }

    .menu-wrapper .header-button span svg {
        max-width: 22px;
    }

    .main-header .button {
        /*padding: 8px !important;*/
        font-size: 13px;
    }

    .sidebar-wrapper {
        position: fixed;
        transition: all .3s ease-in-out;
        z-index: 999999;
        top: 0;
        left: 0;
        background: #00000075;
        opacity: 0;
        visibility: hidden;
        width: 100%;
        height: 100%;
    }

    .sidebar-wrapper.open {
        opacity: 1;
        visibility: visible;
    }

    .right-sidebar {
        overflow-y: auto;
        max-height: 100%;
        position: absolute;
        top: 0;
        z-index: 99;
        border-radius: 0;
        left: -100%;
        transition: all .3s ease;
    }

    .sidebar-wrapper.open .right-sidebar {
        left: 0;
        /*transition: all .3s ease;*/
    }

    span.close-icon {
        display: flex;
    }

    span.close-icon svg {
        width: 20px;
        height: 20px;
    }

    /* section.blog-detail-sec.spacer {
        padding: 0 20px;
    } */

    .features-drawer {
        display: flex;
        gap: 5px;
        padding: 8px 15px;
        background: #e64a19;
        border-radius: 5px;
        max-width: fit-content;
        color: #fff;
        margin-bottom: 10px;
        cursor: pointer;
    }

    header .main-header a h2:lang(es),
    .footer-logo a h2:lang(es),
    header .main-header a h2:lang(de),
    .footer-logo a h2:lang(de),
    header .main-header a h2:lang(it),
    .footer-logo a h2:lang(it),
    header .main-header a h2:lang(nl),
    .footer-logo a h2:lang(nl),
    header .main-header a h2:lang(fr),
    .footer-logo a h2:lang(fr),
    header .main-header a h2:lang(pt),
    .footer-logo a h2:lang(pt),
    header .main-header a h2:lang(sv),
    .footer-logo a h2:lang(sv),
    header .main-header a h2:lang(ca),
    .footer-logo a h2:lang(ca),
    header .main-header a h2:lang(id),
    .footer-logo a h2:lang(id),
    header .main-header a h2:lang(ms),
    .footer-logo a h2:lang(ms),
    header .main-header a h2:lang(pl),
    .footer-logo a h2:lang(pl),
    header .main-header a h2:lang(ro),
    .footer-logo a h2:lang(ro),
    header .main-header a h2:lang(sw),
    .footer-logo a h2:lang(sw),
    header .main-header a h2:lang(uk),
    .footer-logo a h2:lang(uk),
    header .main-header a h2:lang(cs),
    .footer-logo a h2:lang(cs),
    header .main-header a h2:lang(el),
    .footer-logo a h2:lang(el),
    header .main-header a h2:lang(et),
    .footer-logo a h2:lang(et),
    header .main-header a h2:lang(hr),
    .footer-logo a h2:lang(hr),
    header .main-header a h2:lang(lt),
    .footer-logo a h2:lang(lt),
    header .main-header a h2:lang(sr),
    .footer-logo a h2:lang(sr),
    header .main-header a h2:lang(da),
    .footer-logo a h2:lang(da),
    header .main-header a h2:lang(lv),
    .footer-logo a h2:lang(lv),
    header .main-header a h2:lang(no),
    .footer-logo a h2:lang(no),
    header .main-header a h2:lang(sk),
    .footer-logo a h2:lang(sk) {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .main-header .mobile-menu {
        display: block;
    }

    /* 
    header .main-header {
        padding: 15px 20px;
        border-radius: 10px;
    } */

    /*.menu-wrapper .close {
        display: block;
    }*/

    header .main-header ul {
        position: unset;
        transform: unset;
        gap: unset;
        max-width: unset;
        margin: 0;
    }

    header .main-header ul li {
        padding: 5px 0;
        border-bottom: 1px solid #c3c3c3;
    }

    header .main-header ul li a {
        font-size: 15px;
    }

    .menu-wrapper .header-button span.btn-text {
        display: none;
    }

    .menu-wrapper .header-button {
        flex-direction: row;
        max-width: max-content;
        width: max-content;
        margin-top: 0;
    }

    .main-header .button {
        max-width: fit-content;
    }

    .feature-icon-wrap {
        margin-bottom: 20px;
        padding: 10px;
    }

    .container {
        padding: 0 15px;
    }

    header .main-header .logo:lang(ca),
    header .main-header .logo:lang(ru),
    header .main-header .logo:lang(bg) {
        max-width: 100%;
    }

    header .main-header a img:lang(ca),
    header .main-header a img:lang(ru),
    header .main-header a img:lang(bg) {
        max-width: 24px;
    }

    header .main-header:lang(ca),
    header .main-header:lang(bg) {
        padding: 10px;
    }

    .main-header .mobile-menu svg:lang(ca),
    .main-header .mobile-menu svg:lang(bg) {
        max-height: 20px;
        width: auto;
    }

    header .main-header a h2:lang(es),
    .footer-logo a h2:lang(es),
    header .main-header a h2:lang(de),
    .footer-logo a h2:lang(de),
    header .main-header a h2:lang(it),
    .footer-logo a h2:lang(it),
    header .main-header a h2:lang(nl),
    .footer-logo a h2:lang(nl),
    header .main-header a h2:lang(fr),
    .footer-logo a h2:lang(fr),
    header .main-header a h2:lang(ru),
    .footer-logo a h2:lang(ru),
    header .main-header a h2:lang(pt),
    .footer-logo a h2:lang(pt),
    header .main-header a h2:lang(sv),
    .footer-logo a h2:lang(sv),
    header .main-header a h2:lang(hu),
    .footer-logo a h2:lang(hu),
    header .main-header a h2:lang(pl),
    .footer-logo a h2:lang(pl),
    header .main-header a h2:lang(no),
    .footer-logo a h2:lang(no) {
        font-size: 13px;
        word-wrap: break-word;
        white-space: wrap;
        width: unset;
    }

    .readonly-autorefresh-container {
        overflow-x: auto;
        overflow-y: hidden;
        max-width: 100% !important;
    }

    .ra-h1,
    .ra-language-selector,
    .ra-status,
    .ra-tab-item,
    .ra-label,
    .advance_setting_option.highlighted {
        font-size: 12px !important;
        line-height: 1.4;
    }

    .ra-slider {
        width: 12px !important;
        height: 12px !important;
        left: -2px !important;
    }

    .ra-switch.ra-switch-on {
        width: 30px !important;
        height: 16px !important;
    }
}

@media (max-width: 575px) {
    .feature-item {
        flex: 0 0 100%;
    }

    footer .main-footer {
        flex-direction: column;
        padding: 20px;
    }

    .card-title {
        font-size: 18px;
    }

    .card {
        padding: 20px;
        border-radius: 20px;
    }

    .card-body .btn {
        padding: 8px 16px;
        font-size: 16px;
    }



    /* header .main-header {
        padding: 10px 15px;
    } */

    header .main-header:lang(ru) {
        padding: 10px;
    }

    .main-header .mobile-menu span svg:lang(ru) {
        width: 20px;
        height: 20px;
    }
}


/* screenshot css */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

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

}

body {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0.25px;
    color: #121212;
    background-image: url(../images/ss-wb-bg.jpg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

/* .container {
    padding: 50px 10px;
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
} */

.feature-card {
    /* padding: 40px; */
    /* background: #fff; */
    /* border-radius: 8px; */
    margin-bottom: 40px;
}

.breadcrumb {
    color: #7e7e7e;
    padding-bottom: 15px;
}

.feature-card header,
.feature-card .placeholder,
.feature-card section {
    padding-bottom: clamp(8px, 2vw, 25px);
}

.feature-card header h2 {
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 10px;
}

.feature-card section>h3 {
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 10px;
    color: #000;
}

.feature-card section p {
    padding-bottom: 10px;
}

.feature-card section p:last-child {
    padding-bottom: 0;
}

.feature-card section ul,
.feature-card section ol {
    padding-left: 20px;
}

.feature-card section ul li:not(:last-child),
.feature-card section ol li:not(:last-child) {
    padding-bottom: 10px;
}

.feature-card section strong.sub-heading {
    padding-bottom: 10px;
    display: block;
    font-size: 18px;
    font-weight: 600;
    padding-top: 15px;
}

.feature-card .placeholder {
    background: #f1f1f1;
    border-radius: 4px;
    padding: 40px;
    font-style: italic;
    margin-bottom: 20px;
    border: 1px dashed #b5b5b5;
}

.feature-card section ul ul,
.feature-card section ol ul {
    padding-top: 10px;
}

.feature-card section ul+p,
.feature-card section ol+p {
    padding-top: 10px;
}

/* screenshot */
.main-webblocker-ss {
    border: 1px solid #ddd;
    /* border-radius: 10px; */
    /* max-width: 650px; */
    margin-bottom: 20px;
    background-image: url(../images/ss-wb-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* width: 100%; */
    width: clamp(315px, 75%, 650px);
    font-size: clamp(6px, 1.2vw, 16px);
    border-radius: clamp(8px, 2vw, 20px);
    border-radius: clamp(8px, 2vw, 10px);
    white-space: nowrap;
}

.ss-main-heading {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    justify-content: space-between;
    gap: clamp(4px, 1.2vw, 20px);
    padding: clamp(4px, 1.2vw, 15px);
}

.ss-wb-logo {
    display: flex;
    align-items: center;
    gap: clamp(3px, 1.2vw, 10px);
}

.ss-header-features {
    display: flex;
    align-items: center;
    gap: clamp(4px, 1.2vw, 10px);
}

.ss-language-selector {
    border: 1px solid #ddd;
    padding: clamp(1px, 1vw, 2px) clamp(3px, 1vw, 6px);
    display: flex;
    align-items: center;
    gap: clamp(2px, 1.2vw, 5px);
    border-radius: clamp(3px, 1.2vw, 5px);
    background: #fff;
}

.ss-language-selector svg {
    max-width: clamp(9px, 1.4vw, 14px);
    max-height: clamp(9px, 1.4vw, 14px);
}

.ss-wb-status img {
    width: clamp(10px, 2.5vw, 34px);
    margin: 0;
}

.ss-header-features>img {
    width: clamp(12px, 1.8vw, 24px);
    margin: 0;
}

.ss-wb-status {
    display: flex;
    align-items: center;
    gap: clamp(2px, 1vw, 4px);
}

.ss-wb-logo img {
    max-width: clamp(16px, 2vw, 36px);
    height: auto;
    margin: 0;
}

.ss-wb-logo h2 {
    font-size: clamp(10px, 1.6vw, 22px);
    padding: 0;
}

.ss-language-selector span,
.ss-wb-status label {
    font-size: clamp(6px, 1.2vw, 14px);
}

.ss-main-tabs {
    padding: clamp(4px, 1.2vw, 15px);
}

.ss-wb-heading h3 {
    font-size: clamp(8px, 1.6vw, 16px);
    font-weight: 600;
    padding: 0;
}

.ss-wb-heading {
    display: flex;
    padding-bottom: clamp(2px, 1.2vw, 5px);
}

.ss-wb-heading svg,
.ss-block-input label svg {
    width: clamp(8px, 1.8vw, 15px);
    height: clamp(8px, 1.8vw, 15px);
}

.ss-blocked-sites-url {
    display: flex;
    gap: clamp(4px, 1.2vw, 20px);
    justify-content: space-between;
}

.ss-url-label {
    padding: clamp(2px, 1.2vw, 7px) clamp(5px, 1.2vw, 10px);
    border: 1px solid #ddd;
    border-radius: clamp(2px, 1.2vw, 5px);
    flex: 1;
    color: #888;
    font-size: clamp(6px, 1.2vw, 14px);
    background: #fff;
    line-height: 1.4;
}

.ss-blocked-sites-url.highlighted span.ss-url-label {
    font-size: clamp(9px, 1.5vw, 16px);
    color: #333;
}

.ss-wb-btn {
    background: #e64a19;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: clamp(2px, 1.2vw, 5px);
    padding: clamp(4px, 1vw, 8px) clamp(6px, 1.2vw, 15px);
    font-size: clamp(6px, 1.2vw, 14px);
    text-align: center;
}

.ss-block-sites,
.ss-block-types,
.ss-blocked-sites-list {
    padding-bottom: clamp(10px, 2vw, 15px);
}

.ss-block-types-tab {
    display: flex;
    justify-content: space-between;
}

.ss-block-input input[type="radio"] {
    accent-color: #e64a19;
    width: clamp(8px, 1.8vw, 14px);
    height: clamp(8px, 1.8vw, 14px);
    display: inline-block;
    vertical-align: baseline;
}

.ss-block-input label {
    font-size: clamp(8px, 1.6vw, 14px);
    display: inline-block;
    vertical-align: text-top;
}

.ss-block-input {
    pointer-events: none;
}

.ss-block-input label span {
    border: 1px solid #ddd;
    padding: clamp(1px, 1px, 1px) clamp(5px, 1.2vw, 8px);
    font-size: clamp(6px, 1.2vw, 14px);
    border-radius: 3px;
    margin-left: 2px;
    background: #fff;
}

.ss-attempt-block {
    display: flex;
    gap: 4px;
    align-items: center;
    padding-left: clamp(8px, 1.2vw, 20px);
}

.ss-attempt-block input[type="checkbox"] {
    accent-color: #e64a19;
    width: clamp(8px, 1.8vw, 13px);
}

.ss-attempt-block label {
    font-size: clamp(8px, 1.6vw, 13px);
}

.blocked-sites-list-wrapper {
    border: 1px solid #ddd;
    border-radius: clamp(3px, 1.2vw, 5px);
    overflow: hidden;
    background: #fff;
}

.ss-blocked-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(4px, 1.2vw, 10px) clamp(8px, 1.2vw, 15px);
    font-size: clamp(8px, 1.6vw, 14px);
    border-bottom: 1px solid #ddd;
}

.ss-blocked-list-item:last-child {
    border-bottom: none;
}

.ss-action-btn {
    display: flex;
    gap: clamp(8px, 1.2vw, 15px);
}

.ss-action-btn svg {
    width: clamp(8px, 1.8vw, 14px);
    height: clamp(8px, 1.8vw, 14px);
}

.ss-block-password-section {
    display: flex;
    justify-content: center;
    gap: clamp(8px, 1.2vw, 20px);
}

.ss-block-password-section .ss-wb-btn {
    flex: 1;
}

.ss-wb-btn.disabled {
    opacity: 0.7;
}

.highlighted {
    border: 2px solid #ef7700;
    background: #fffaf0;
    border-radius: 5px;
    padding: clamp(5px, 1.2vw, 10px);
    transform: scale(1.1);
}

/* Web Blocker Screenshot - History Page */
.wb-container {
    max-width: 100%;
    margin: 20px auto;
    background: #fff;
    border-radius: clamp(6px, 2vw, 10px);
    padding: clamp(8px, 2vw, 20px) clamp(10px, 2vw, 30px);
    border: 1px solid #ddd;
    font-size: clamp(8px, 1.8vw, 16px);
}

/* Header */
.wb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: clamp(6px, 1.5vw, 10px);
    flex-wrap: wrap;
    gap: 3px;
}

.wb-logo {
    display: flex;
    align-items: center;
    gap: clamp(4px, 1.5vw, 10px);
}

.wb-title h1 {
    margin: 0;
    font-weight: 600;
    font-size: clamp(12px, 2.5vw, 30px);
    color: #000;
}

.wb-logo img {
    width: clamp(20px, 2.5vw, 44px);
    margin: 0;
}

.wb-version {
    font-size: clamp(6px, 1.2vw, 12px);
    color: #888;
}

.wb-controls {
    display: flex;
    align-items: center;
    gap: clamp(4px, 1.2vw, 10px);
}

.wb-controls select,
.wb-controls input {
    border: 1px solid #ddd;
    border-radius: clamp(2px, 1vw, 5px);
    padding: clamp(1px, 1vw, 3px) clamp(3px, 1vw, 5px);
    background: #f8f8f8;
    pointer-events: none;
    width: clamp(14px, 3vw, 40px);
    text-align: center;
    font-weight: 500;
    font-family: inherit;
    font-size: clamp(8px, 1.2vw, 14px);
}

/* Nav */
.wb-nav {
    display: flex;
    justify-content: center;
    gap: clamp(5px, 1vw, 25px);
    padding: clamp(5px, 1vw, 15px) 0;
    border-bottom: 1px solid #eee;
    margin-bottom: clamp(5px, 2vw, 15px);
}

.nav-item {
    display: flex;
    align-items: center;
    gap: clamp(3px, 1vw, 5px);
}

.nav-item svg {
    width: clamp(8px, 1.5vw, 18px);
    height: clamp(8px, 1.5vw, 18px);
}

.nav-item.active {
    color: #e64a19;
    font-weight: 600;
}

/* History Section */
.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-clear {
    background-color: #ff5722;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 6px 14px;
    font-weight: 500;
    opacity: 0.6;
}

.wb-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: clamp(5px, 2vw, 10px);
    font-size: clamp(8px, 1.5vw, 15px);
}

.wb-table th,
.wb-table td {
    border: 1px solid #eee;
    padding: clamp(5px, 1.4vw, 10px);
    text-align: left;
}

.wb-table th {
    background: #fff3ef;
    font-weight: 600;
}

.wb-table input {
    pointer-events: none;
    accent-color: #e64a19;
    width: clamp(6px, 1.5vw, 13px);
    height: clamp(6px, 1.5vw, 13px);
}

.wb-timer {
    display: flex;
    align-items: center;
    gap: clamp(2px, 0.8vw, 4px);
}

.wb-timer img {
    width: clamp(10px, 2.5vw, 34px);
    height: auto;
    margin: 0;
}

.wb-controls label,
.wb-history-right label,
.wb-history-right span.ss-wb-btn {
    font-size: clamp(8px, 1.2vw, 16px);
}

.wb-mode-toggle {
    width: clamp(15px, 4vw, 38px);
    height: clamp(8px, 2.5vw, 20px);
    border-radius: 50px;
    position: relative;
    padding: clamp(2px, 0.8vw, 4px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #525252;
}

.wb-mode-toggle svg {
    width: clamp(6px, 1.5vw, 12px);
    height: clamp(6px, 1.5vw, 12px);
}

.wb-mode-toggle .ball {
    background-color: #525252;
    width: clamp(6px, 1vw, 12px);
    height: clamp(6px, 1vw, 12px);
    position: absolute;
    left: clamp(1px, 0.6vw, 4px);
    top: clamp(1px, 0.2vw, 3px);
    border-radius: 50%;
}

.history-header h2 {
    font-weight: 500;
    font-size: clamp(9px, 2.5vw, 24px);
    color: #000;
    padding: 0;
}

.wb-history-right {
    display: flex;
    align-items: center;
    gap: clamp(8px, 2vw, 20px);
}

.wb-table-wrap {
    overflow-x: auto;
    max-width: 100%;
    width: 100%;
    white-space: nowrap;
}

/* Custom Block Page & Redirection */
.wb-container.wb-blocked-settings {
    position: relative;
    overflow: hidden;
}

.wb-container.wb-blocked-settings::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 60%);
}

.wb-blocked-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    z-index: 1;
    padding: clamp(10px, 2vw, 20px);
    border-radius: clamp(6px, 2vw, 10px);
    width: clamp(280px, 80%, 400px);
}

.wb-block-options label svg {
    width: clamp(8px, 1.5vw, 15px);
    height: clamp(8px, 1.5vw, 15px);
}

span.wb-closebtn {
    font-size: clamp(12px, 2.5vw, 20px);
    text-align: right;
    display: block;
    line-height: 1;
    margin-top: -5px;
}

.wb-block-options {
    padding-bottom: clamp(10px, 2vw, 20px);
}

.wb-block-options>span {
    display: block;
    border: 1px solid #bdbdbd;
    padding: clamp(2px, 1.5vw, 5px) clamp(6px, 1.5vw, 10px);
    border-radius: 5px;
    color: #919191;
    font-size: clamp(8px, 1.5vw, 14px);
    margin-top: 5px;
}

.wb-blocked-modal span.ss-wb-btn {
    display: inline-block;
    min-width: clamp(40px, 20%, 80px);
}

.wb-block-options input[type="radio"] {
    accent-color: #e64a19;
    pointer-events: none;
    width: clamp(8px, 1.8vw, 13px);
    height: clamp(8px, 1.8vw, 13px);
}

/* Custom URL Redirection */
.wb-block-options.highlighted {
    margin-bottom: clamp(10px, 2vw, 20px);
    margin-left: clamp(5px, 2vw, 10px);
    margin-right: clamp(5px, 2vw, 10px);
}

/* Incognito Mode Blocking */
.ss-wb-mokup-container {
    position: relative;
    max-width: fit-content;
    margin: 20px 0;
}

.ss-wb-r8-click {
    position: absolute;
    top: 12%;
    right: 15px;
    width: clamp(120px, 25%, 250px);
    background: #fff;
    padding-top: clamp(6px, 2vw, 10px);
    padding-bottom: clamp(6px, 2vw, 10px);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: clamp(6px, 2vw, 10px);
}

.ss-wb-r8-click span {
    display: block;
    padding: clamp(4px, 1.2vw, 10px) clamp(10px, 2vw, 20px);
    font-size: clamp(8px, 1.5vw, 14px);
}

.ss-wb-r8-click>span.highlighted {
    font-size: clamp(9px, 1.5vw, 16px);
}

.ss-incognito-mode {
    position: absolute;
    bottom: 14%;
    left: 50px;
    max-width: 90%;
    display: flex;
    align-items: center;
    gap: clamp(6px, 2vw, 20px);
    justify-content: space-between;
    padding: clamp(8px, 2vw, 20px);
    border-radius: clamp(6px, 2vw, 10px);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    font-size: clamp(10px, 1.5vw, 16px);
}

.ss-incognito-mode img {
    width: clamp(30px, 5vw, 55px);
    height: auto;
}

.ss-right-click {
    position: absolute;
    right: 11%;
    top: -10px;
    font-size: clamp(10px, 1.5vw, 16px);
}

/* One-Click Blocking */
.ss-wb-mokup-container .main-webblocker-ss {
    position: absolute;
    top: 12%;
    right: 20px;
    z-index: 1;
    width: clamp(285px, 75%, 650px);
}

/* Password Protection */
.ss-wb-setting-home .ss-main-tabs {
    border: 1px solid #ddd;
    border-radius: clamp(6px, 1vw, 10px);
    margin-top: clamp(10px, 2vw, 20px);
}

.ss-wb-setting-home .wb-history-right {
    gap: clamp(6px, 1.2vw, 15px);
}

.wb-blocked-modal .ss-modal-title {
    text-align: center;
    font-weight: 600;
    margin-bottom: clamp(8px, 2vw, 15px);
    font-size: clamp(10px, 2.5vw, 18px);
    padding: 0;
}

span.ss-wb-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: clamp(2px, 1.5vw, 5px) clamp(6px, 2vw, 12px);
    margin-bottom: clamp(8px, 2vw, 15px);
    background: #ededed;
    color: gray;
    font-size: clamp(8px, 1.5vw, 14px);
    gap: clamp(8px, 1.2vw, 20px);
}

span.ss-wb-field svg {
    fill: gray;
    width: clamp(8px, 1.8vw, 15px);
    height: auto;
}

/* Precise URL Blocking Rules */
.ss-wb-setting-home .ss-block-input {
    width: 33.33%;
}

.ss-wb-setting-home .ss-block-input .ss-wb-heading+div>img {
    max-height: clamp(16px, 4vw, 26px);
    margin: 0;
}

/* Time-Based Blocking */
.ss-set-time-wrap {
    display: flex;
    gap: clamp(6px, 2vw, 12px);
    align-items: center;
}

.ss-days-wrap {
    display: flex;
    gap: 5px;
    padding-bottom: 4px;
}

.ss-days-wrap+p {
    font-size: clamp(8px, 2vw, 14px);
    color: gray;
}

.ss-days-wrap span {
    border: 1px solid #ddd;
    padding: clamp(2px, 1.2vw, 5px) clamp(6px, 1.2vw, 10px);
    border-radius: 5px;
}

.ss-timeshow {
    display: flex;
    gap: clamp(6px, 1.2vw, 10px);
    align-items: center;
    flex: 1;
}

span.ss-plus-icon {
    display: inline-block;
    width: clamp(12px, 4vw, 22px);
    height: clamp(12px, 4vw, 22px);
    background: #e64a19;
    color: #fff;
    border-radius: 50%;
    line-height: 1;
    font-size: clamp(10px, 2.5vw, 20px);
    padding: 0 5px;
}

.ss-timeshow input[type="time"] {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: clamp(2px, 1vw, 5px) clamp(5px, 1.2vw, 10px);
    text-align: center;
    font-family: inherit;
    flex: 1;
    pointer-events: none;
    font-size: clamp(8px, 1.5vw, 14px);
}
.bolg-detail-content .container {
    padding: 0;
}

a.feature-link.active img.image-preview {
    filter: brightness(8);
}
@media only screen and (max-width: 1023px) {}

@media only screen and (max-width: 767px) {
    body {
        font-size: 14px;
    }

    .feature-card header h2 {
        font-size: 22px;
        line-height: 1.2;
    }

    .feature-card section>h3 {
        font-size: 20px;
        line-height: 1.2;
    }

    .feature-card section strong.sub-heading {
        font-size: 16px;
    }

    /* 
    .feature-card {
        padding: 20px;
    } */

    /* .container {
        padding: 20px 10px;
    } */

    .ss-block-input label {
        vertical-align: bottom;
    }

    .wb-controls {
        margin-left: auto;
    }

    .ss-incognito-mode {
        bottom: 0;
        left: 5px;
        max-width: 52%;
    }

    .ss-wb-r8-click,
    .ss-wb-mokup-container .main-webblocker-ss {
        right: 0;
    }

    .ss-wb-mokup-container {
        margin-bottom: 70px;
    }

    span.ss-plus-icon {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    footer {
        padding: 10px 0;
    }
}