/*font-family: "Outfit", sans-serif;*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* font-family: 'Rubik', sans-serif; */
/*@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap");*/

/* font-family: 'DM Sans', sans-serif; */
/*@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap");*/

/* font-family: 'Nothing You Could Do', cursive; */
/*@import url("https://fonts.googleapis.com/css2?family=Nothing+You+Could+Do&display=swap");*/

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');


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

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

body {
    /*font-family: "Rubik", sans-serif;*/
    font-family: "Outfit", sans-serif;
    line-height: 22px;
}

html {
    scroll-behavior: smooth;
}

:root {
    --headFont: "Outfit", sans-serif;
    --bodyFont: "Outfit", sans-serif;
    --styleFont: "Outfit", 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: 70px;
}

.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: #1e2c43;
    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: #1e2c43;
    font-family: var(--headFont);
    font-size: 36px;
    font-weight: 700;
    line-height: 42px;
    margin-bottom: 10px;
}

.blog-detail .paragraph {
    padding-bottom: 20px;
}


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

.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: 25px 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 .paragraph 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: 30px !important;
}

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

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

.bolg-detail-content table {
    table-layout: fixed;
    border-collapse: collapse;
    margin: 15px 0;
}

.bolg-detail-content table p {
    padding: 0;
}

.bolg-detail-content table th,
.bolg-detail-content table td {
    border: solid 1px #747474;
    padding: 10px;
    width: 50%;
}

.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%;
}

/* ******************* start recommended apps ************************* */
#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;
}

/* ******************* end recommended apps ************************* */


.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;
}

#main.feature-main-cont {
    padding-top: 40px;
}

.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 {
    padding-left: 70px;
}*/

.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;
}

p.action_container_atr {
    padding: 10px;
    display: flex;
    gap: 8px;
}


.bolg-detail-content ul ul, .bolg-detail-content ol ol {
    padding-left: 20px !important;
}


/*  start responsive */

@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;
    }

    /* number link */
    .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;
    }

    /* start generator link */
    .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;
    }

    /* step */
    .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;
    }

    /* number */
    .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%;
    }

    /* end generator link */
}

@media only screen and (max-width: 1024px) {
    /* main {
        padding-top: 50px;
      } */


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

    nav {
        margin-left: 0px;
    }

    .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;
    }

    /* start link generator */
    .left_link_generator span {
        font-size: 15px;
    }

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

    /* step */

    .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;
    }

    /* number link */
    .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%;
    }

    /* end link generator */

    .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;
    }

    /* start apps */

    .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;
    }

    /* start link generator */
    .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;
    }

    /* step */
    .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;
    }

    /* number */
    .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%;
    }

    /* end link generator */

    .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;
    }

    nav.active {
        left: 0px;
    }

    .cross.active {
        display: block;
    }

    .bars.active {
        display: none;
    }

    nav {
        position: fixed;
        left: -350px;
        top: 0px;
        max-width: 350px;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transition: all ease-in-out 0.3s;
        justify-content: left;
        background: #fff;
        height: 100vh;
        box-shadow: 0px 4px 14px 0px rgba(96, 96, 96, 0.25);
    }

    .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_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: 12px;
    }

    .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 .paragraph {
        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;
    }

    nav.active {
        left: 0px;
    }

    .cross.active {
        display: block;
    }

    .bars.active {
        display: none;
    }

    nav {
        position: fixed;
        left: -350px;
        top: 0px;
        max-width: 350px;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transition: all ease-in-out 0.3s;
        justify-content: left;
        background: #fff;
        height: 100vh;
        box-shadow: 0px 4px 14px 0px rgba(96, 96, 96, 0.25);
    }

    .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: #fff;
    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: #fcfdff;
    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: #2B2B2B;
    font-size: 20.4px;
    font-weight: 500;
}

.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: rgba(30, 44, 67, 1);
}

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 0;
        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: #fcfdff;
    padding: 40px 0;
    border-top: 1px solid #eaeaea;
}

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: #1E2C43;
    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: #fcfdff;
    padding: 2rem;
    color: #1e2c43;
    border-right: 1px solid #eaeaea;
    flex-shrink: 0;
    height: 100%;
}

.blog-detail-sec.spacer>.container {
    padding-top: 40px;
}

.right-sidebar h2 {
    color: #1e2c43;
    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: #1e2c43;
    transition: all 0.2s ease;
}

.sidebar-list a:hover {
    background-color: #e3efff;
}

.sidebar-list a.active {
    background: #1a73e8;
    /* blue highlight */
    color: #fff;
}

/*RIGHT SIDEBAR END*/



.grid-container {
    /* padding: 40px 20px;
      background: #f9f9f9; */
    /* text-align: center; /* This centers the H2, not the grid items themselves */
}

/* Ensure the main heading is centered if you want it */
.grid-container h2 {
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    /* Make sure this is applied to the H2 */
}

.features-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

.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 #1E2C4326;
    background-color: #f3f4f5;
    display: flex;
    flex-direction: column;
}

.card-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 30px;

    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* number of lines before truncating */
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* hides the extra text */
}

.card img.image-preview {
    max-width: 80px;
    /* Smaller icon-like image */
    height: auto;
    border-radius: 0;
    /* Assuming icons don't need rounded corners */
    /*margin-bottom: 25px;*/
    /* Center image and add space below */
    display: block;
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    /* Resetting padding here if you want it handled by the .card */
}

.card-title {
    font-size: 22px;
    line-height: 1.3;
    color: #1E2C43;
    font-weight: 600;
    font-weight: 500;
    padding-bottom: 10px;
    align-items: center;
    display: flex;
    gap: 13px;
    font-family: var(--headFont);
    word-break: break-word;
}


.card-body .btn {
    margin-top: auto;
    display: inline-block;
    padding: 11px 16px;
    font-size: 18px;
    color: #fff;
    background: #0b57d0;
    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: #0056b3;
}

span.sec-sub-title {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 2px 15px;
    background-color: #1e2c43;
    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;
}

.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: #1e2c43;
}

#main #not_found_section h1 {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
    color: #1e2c43;
}

@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 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;
        padding: 25px;
    }

    .sidebar-wrapper.open .right-sidebar {
        left: 0;
        /*transition: all .3s ease;*/
    }

    span.close-icon {
        display: flex;
    }

    span.close-icon svg {
        width: 20px;
        height: 20px;
    }

    .blog-detail-sec.spacer>.container {
        padding-top: 30px;
    }

    .features-drawer {
        display: flex;
        gap: 5px;
        padding: 8px 15px;
        background: #1a73e7;
        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;
    }

    footer {
        padding: 30px 0;
    }
}

@media (max-width: 767px) {
    .main-header .mobile-menu {
        display: block;
    }

    /*.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: 8px 25px;
        border-bottom: 1px solid #dadada;
    }

    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;
        padding: 0 25px;
    }

    .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;
    }

    .card-title {
        font-size: 18px;
    }

    .card {
        padding: 20px;
        border-radius: 20px;
    }

    .card-body .btn {
        padding: 8px 16px;
        font-size: 16px;
    }

    .card img.image-preview {
        max-width: 60px;
    }

    header .main-header:lang(ru) {
        padding: 10px;
    }

    .main-header .mobile-menu span svg:lang(ru) {
        width: 20px;
        height: 20px;
    }
}




.hero-img img {
    width: 100%;
    display: block;
}

.hero-img {
    padding-top: 10px;
    position: relative;
    max-width: 990px;
    width: 100%;
    margin-right: auto;
}

.hero-img .hero-img-wrapper {
    position: relative;
}

.hero-img .hero-img-wrapper .hero-img-highlight {
    position: absolute;
    top: 3.3%;
    right: 3.2%;
    width: 50px;
    height: 50px;
    border: 2px solid #ed2e2e;
    border-radius: 12px;
    box-shadow: 5px 5px 15px rgb(0 0 0 / 30%);
}

.image-url-links {
    position: relative;
    outline: 2px solid #ed2e2e;
    ;
    padding: 10px !important;
    transform: scale(1.1) !important;
    background: rgb(255, 250, 240) !important;
    border-radius: 6px;
}

.image-tab-content .image-presets-input-time {
    outline: 2px solid #ed2e2e;
    border-radius: 6px;
    padding: 10px !important;
    transform: scale(1.1) !important;
    background: rgb(255, 250, 240) !important;
}

.image-tab-content-highlight {
    outline: 2px solid #ed2e2e;
    border-radius: 6px;
    padding: 10px !important;
    transform: scale(1.05) !important;
    background: rgb(255, 250, 240) !important;
}

.save-button-hightlight {
    outline: 2px solid #ed2e2e;
    outline-offset: 2px;
}

.mini-rating-card {
    height: auto;
    background-color: #eaf5ff;
    z-index: 11;
    display: flex;
    border-top: 1px solid #ddd;
    padding: clamp(8px, 1vw, 10px) clamp(10px, 1.5vw, 15px);
    align-items: center;
    gap: 16px;
    max-width: 100%;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.mini-rating-card .rating-body {
    text-align: center;
    /* width: 100%; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
    gap: 5px;
    cursor: pointer;
}

h3.feature-txt {
    font-size: 15px;
    font-size: 14px;
    font-weight: 500;
}

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

.rating-box svg,
.sugg-box svg,
.help-icon-wrp svg {
    max-width: 24px;
    max-height: 24px;
    display: block;
}

.sugg-icon,
.help-icon-wrp {
    display: flex;
    justify-content: center;
    padding-bottom: 5px;
}

.sugg-icon,
.help-icon-wrp {
    display: flex;
    justify-content: center;
    padding-bottom: 5px;
}

.saveBtnBox {
    text-align: left;
    padding-right: 0;
    display: flex;
    align-items: flex-start;
    margin-left: auto;
    gap: 8px;
}

.btn {
    background-color: #1a73e8;
    color: #fff;
    display: inline-block;
    padding: 10px 15px;
    border: none;
    font-family: "Quicksand", sans-serif;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
}

.saveBtnBox button {
    font-size: 14px;
    padding: 8px 12px;
}

.save-button {
    margin-left: auto;
    margin-right: 0;
}

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

    .hero-img .hero-img-wrapper .hero-img-highlight {
        width: 45px;
        height: 45px;
    }
}

@media only screen and (max-width:860px) {
    .hero-img .hero-img-wrapper .hero-img-highlight {
        width: 40px;
        height: 40px;
        top: 3.5%;
    }
}

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

    .hero-img .hero-img-wrapper .hero-img-highlight {
        position: absolute;
        top: 3.3%;
        right: 3.2%;
        width: 35px;
        height: 35px;
        border: 2px solid #ed2e2e;
        border-radius: 8px;
    }

    .save-button-hightlight {
        border-radius: 2px;
    }
}

@media only screen and (max-width:670px) {
    .hero-img .hero-img-wrapper .hero-img-highlight {
        top: 3%;
        right: 3%;
    }
}

@media only screen and (max-width:600px) {
    .hero-img .hero-img-wrapper .hero-img-highlight {
        width: 30px;
        height: 30px;
    }
}

@media only screen and (max-width:525px) {
    .hero-img .hero-img-wrapper .hero-img-highlight {
        width: 28px;
        height: 28px;
        border-radius: 6px;
    }

    .rating-box svg,
    .sugg-box svg,
    .help-icon-wrp svg {
        max-width: 20px;
        max-height: 20px;
    }
}

@media only screen and (max-width:480px) {
    .hero-img .hero-img-wrapper .hero-img-highlight {
        top: 2.2%;
        right: 2.5%;
    }
}

@media only screen and (max-width:425px) {
    .hero-img .hero-img-wrapper .hero-img-highlight {
        width: 25px;
        height: 25px;
        top: 2%;
        right: 2.5%;
    }
}

@media only screen and (max-width:360px) {
    .hero-img .hero-img-wrapper .hero-img-highlight {
        width: 20px;
        height: 20px;
        border-radius: 4px;
        top: 2%;
        right: 2.7%;
    }
}

.blog-detail .paragraph {
    margin: 0px 0px 15px;
    padding: 0px 0px 20px;
    box-sizing: border-box;
    font-size: medium;
    color: rgb(33, 37, 41);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.blog-detail h2 {
    color: rgb(33, 37, 41);
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgb(222, 226, 230);
    padding-bottom: 5px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.bolg-detail-content ul, .bolg-detail-content ol {
    margin: 0px 0px 15px;
    padding: 0px 0px 0px 20px;
    box-sizing: border-box;
    list-style: none;
    font-size: medium;
    color: rgb(33, 37, 41);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.bolg-detail-content ul li {
    margin: 0px 0px 8px;
    padding: 0px;
    box-sizing: border-box;
    list-style: disc;
}


/* font-family: "Quicksand", serif; */



.preview-section {
    font-family: "Quicksand", sans-serif !important;
    font-weight: 300;
}

.preview-section .best-ratings {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.preview-section .best-ratings span {
    display: flex;
}

.best-ratings .google-logo {
    position: relative;
}

.best-ratings .google-logo::after {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    right: -10px;
    width: 1px;
    height: 80%;
    background-color: #b5b5b5;
}

.best-ratings .star-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.best-ratings .Featured {
    gap: 2px;
}

.best-ratings .star-box,
.best-ratings .Featured {
    display: flex;
    align-items: center;
    font-weight: 400;
}

.preview-section h1 {
    color: rgba(30, 44, 67, 1);
    margin: 0 auto;
    font-size: 54px;
    font-weight: 700;
    padding-top: 20px;
    padding-bottom: 15px;
    text-align: center;
}

.preview-section p {
    color: rgba(88, 88, 88, 1);
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
    font-size: 18px;
    text-align: center;
}

.preview-section .hero-button {
    padding-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.preview-section .hero-button a span {
    display: flex;
}

.preview-section .hero-button a {
    display: flex;
    gap: 9px;
    padding: 9px 15px 9px 10px;
    background-color: rgba(11, 87, 208, 1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font-weight: 500;
    align-items: center;
}

.preview-section .hero-img img {
    width: 100%;
    display: block;
}

.preview-section .hero-img {
    position: relative;
    max-width: 990px;
    width: 100%;
    margin: auto;
}

/* .preview-section .hero-img::before {
    position: absolute;
    content: '';
    top: -105px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 844px;
    z-index: -1;
} */

.extension-name {
    font-size: 18px;
    font-weight: 700;
    color: #0b57d0;
    text-align: center;
    padding-bottom: 20px;
}

.main-auto-refresh-hero-img p {
    font-size: clamp(5px, 1.2vw, 13px) !important;
    text-align: unset !important;
    width: unset !important;
    max-width: unset !important;
    margin: unset !important;
}

.main-auto-refresh-hero-img::after,
.main-auto-refresh-hero-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0;
}

.main-auto-refresh-hero-img {
    /* max-width: 430px; */
    /* width: 100%; */
    width: clamp(220px, 50%, 430px);
    max-height: 492px;
    height: auto;
    border: 1px solid rgba(26, 115, 232, 0.5);
    box-shadow: 0 0 10px rgba(26, 115, 232, 0.4);
    border-radius: 20px;
    border-radius: clamp(8px, 2vw, 20px);
    font-family: "Quicksand", serif;
    font-weight: 500;
    font-size: clamp(5px, 1.2vw, 14px);
    line-height: normal;
    color: #2c2e35;
    /* overflow: hidden; */
    background-color: #fff;
    cursor: context-menu;
    white-space: nowrap;
}

.main-auto-refresh-img .image-header {
    padding: 12px 15px 15px;
    padding: clamp(4px, 1.2vw, 12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-auto-refresh-img .image-header .img-language-icon {
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(5px, 1vw, 15px);
}

.image-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
}

.image-logo a img {
    max-width: clamp(13px, 1.2vw, 25px);
    height: auto;
    margin-right: 5px;
}

.image-logo a h3 {
    font-size: clamp(8px, 1.6vw, 17px);
    line-height: normal;
    font-weight: 600;
    color: #2c2e35;
}

.image-logo a span {
    font-size: clamp(5px, 1.2vw, 8px);
    font-style: italic;
    color: gray;
    position: absolute;
    right: 0;
}

.image-user-language .user-language {
    border: 1px solid #d1d1d1;
    padding: clamp(1px, 1.2vw, 1.5px);
    border-radius: 4px;
    font-size: clamp(5px, 1vw, 12px);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.user-language svg {
    max-width: clamp(10px, 1.4vw, 16px);
    max-height: clamp(9px, 1.4vw, 16px);
}

.img-header-icon {
    display: flex;
    gap: 5px;
    align-items: center;
}

.img-header-icon svg {
    max-width: clamp(13px, 3vw, 25px);
    max-height: clamp(12px, 3vw, 15px);
}

.main-auto-refresh-hero-img .image-offer {
    padding: 10px;
    text-align: center;
    font-size: clamp(5px, 1.2vw, 13px);
    padding: clamp(4px, 1.1vw, 10px);
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    font-weight: 600;
    margin-bottom: 5px;
}

.main-auto-refresh-hero-img .image-offer s {
    color: #000;
}

.main-auto-refresh-hero-img .image-offer span {
    color: red;
}

.main-image-ext-content .tab-image-ul {
    display: flex;
    background: #b5dbff47;
    padding: 12px 0px;
    padding: clamp(2px, 1.5vw, 12px) clamp(0px, 1vw, 0px);
    align-items: center;
    justify-content: space-between;
}

.tab-image-ul .tab-image-li {
    padding: clamp(0px, 0.5vw, 2px) clamp(3px, 1vw, 10px);
    border-right: 1.5px solid #1a73e8;
    cursor: pointer;
    flex: 0 0 33%;
}

.tab-image-ul .tab-image-li:last-child {
    border-right: unset;
    position: relative;
}

.tab-image-ul .tab-image-li:last-child div {
    position: absolute;
    right: 20px;
    font-size: clamp(6px, 1.2vw, 10px);
    color: #fff;
    font-weight: 700;
    background: #FF5F00;
    padding: 1px 5px;
    border-radius: 15px;
    top: -4px;
    line-height: normal;
}

.tab-image-ul .tab-image-li span {
    padding: clamp(2px, 1vw, 6px) clamp(3px, 1vw, 12px);
    font-weight: 600;
    border-radius: 5px;
    background: #fff;
    color: #1a73e8;
    display: block;
    text-align: center;
    font-size: clamp(6px, 1.3vw, 12px);
    white-space: nowrap;
}

.tab-image-ul .tab-image-li:first-child span {
    background: #1a73e8;
    color: #fff;
}

.image-feature-control.tab-image-ul .tab-image-li:nth-child(2) span {
    background: #1a73e8;
    color: #fff;
}

.tab-detect-keyword.tab-image-ul .tab-image-li:nth-child(1) span,
.image-feature-control.tab-image-ul .tab-image-li:nth-child(1) span {
    background: #fff;
    color: #1a73e8;
}

.tab-image-ul .tab-image-li:last-child span {
    border: 1px solid #FF5F00;
    color: #FF5F00;
    background: #fff4ee;
}

.image-tab-content {
    padding: 0 15px;
    padding: clamp(0px, 0vw, 0px) clamp(5px, 1.5vw, 15px);
}

.image-refresh-time {
    display: flex;
    justify-content: space-between;
    margin-top: clamp(6px, 1.5vw, 15px);
    padding: 8px 12px;
    padding: clamp(4px, 1vw, 8px) clamp(6px, 1vw, 12px);
    background-color: #EAF5FF;
    border-radius: 5px;
}

.image-tab-content .image-url {
    padding: clamp(2px, 1vw, 16px) clamp(0px, 1vw, 0px);
    border-bottom: 1px solid #ddd;
}

.image-url-title {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: clamp(4px, 1.5vw, 10px);
    width: 55%;
}

.image-url-title svg {
    max-width: clamp(10px, 1.5vw, 18px);
}

.image-url-title svg path {
    fill: #1a73e8;
}

.image-url .image-input {
    width: 100%;
    border: 1px solid #d1d1d1;
    padding: clamp(2px, 1vw, 8px);
    border-radius: 4px;
    outline-color: #1a73e8;
}

.image-presets-input {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(3px, 1vw, 10px);
}

.image-presets-input .image-second-input {
    flex: 1 0 calc(33.33% - 6.66px);
    text-align: center;
    color: #2c2e35;
    border: #d1d1d1 solid 1px;
    border-radius: 4px;
    background-color: #b5dbff17;
    padding: clamp(3px, 1vw, 5px);
}

.image-presets-input .image-second-input:first-child {
    color: #1a73e8;
    border-color: #1a73e8;
}

.image-custom-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image-Interval-title .main-random-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff4ee;
    position: relative;
    border-radius: 5px;
    padding: 10px;
    padding: clamp(5px, 1.4vw, 10px);
}

.image-Interval-title .main-random-time span.premium {
    position: absolute;
    top: 0;
    left: 15px;
    font-size: clamp(4px, 1.2vw, 10px);
    color: #fff;
    font-weight: 700;
    background: #FF5F00;
    padding: clamp(1px, 1vw, 2px) clamp(6px, 1.4vw, 10px);
    border-radius: 15px;
    top: -7px;
    line-height: normal;
}

.image-Interval-title .main-random-time svg path {
    fill: #FF5F00;
}

.image-custom-title .image-url-title,
.image-Interval-title .image-url-title {
    margin-bottom: unset;
}

.image-custom-title .image-presets-input {
    padding: clamp(2px, 1vw, 4px) clamp(5px, 1.4vw, 7px);
    background: rgb(26, 115, 232);
    border-radius: 5px;
    color: #fff;
}

.image-Interval-title .image-presets-input {
    padding: clamp(2px, 0vw, 5px) clamp(4px, 1.4vw, 10px);
    border: 1px solid #FF5F00;
    border-radius: 5px;
    color: #FF5F00;
    font-size: clamp(5px, 1.2vw, 13px);
}

p.credit-left {
    text-align: right;
    font-size: clamp(5px, 2vw, 13px);
    margin-top: 6px;
}

p.credit-left span {
    font-size: clamp(6px, 1.2vw, 14px);
    border: 1px solid #FF5F00;
    color: #FF5F00;
    border-radius: 50%;
    width: clamp(10px, 2vw, 20px);
    height: clamp(10px, 2vw, 20px);
    background-color: #fff4ee;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.active-tab-img .image-custom-title {
    border-bottom: unset;
}

.active-tab-content {
    padding: 10px 13px;
    padding: clamp(5px, 1vw, 10px) clamp(8px, 1vw, 13px);
    border-left: 3px solid #1a73e8;
    background: #b5dbff47;
    margin-bottom: 10px;
    border-radius: 4px;
}

.active-tab-content .img-url-action {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.active-tab-content .img-url-action p {
    font-size: 13px;
    font-weight: 500;
}

.img-url-action .img-url-action-icon {
    display: flex;
    gap: clamp(4px, 1vw, 10px);
    align-items: center;
}

.img-url-action .img-url-action-icon svg {
    max-width: clamp(9px, 1vw, 15px);
    max-height: clamp(9px, 1vw, 15px);
    display: block;
}

.active-tab-content .second-badge {
    background-color: #1a73e8;
    color: #fff;
    border-radius: clamp(2px, 1vw, 4px);
    padding: clamp(1px, 1vw, 2px) clamp(2px, 1vw, 3px);
    font-size: clamp(5px, 1.3vw, 10px);
    line-height: normal;
}

.active-tab-img .img-import-btn {
    display: flex;
    align-items: center;
    gap: 5px;
}

.image-current-key {
    display: flex;
    align-items: center;
    gap: clamp(6px, 1vw, 18px);
    margin-top: clamp(6px, 1vw, 15px);
}

.image-current-key .image-url-title {
    width: unset;
    margin-bottom: unset;
    font-weight: 600;
}

.image-current-key svg {
    max-width: clamp(10px, 1.5vw, 18px);
}

.image-current-key svg path {
    fill: #1a73e8;
}

.image-current-key h4 span {
    color: #1a73e8;
}

.image-current-key .img-short-key {
    border: 1px solid #d1d1d1;
    padding: 4px 10px;
    padding: clamp(1px, 1vw, 4px) clamp(3px, 1vw, 10px);
    border-radius: 4px;
    max-width: 23%;
    width: 100%;
}

.main-random-time .credit-left {
    margin-top: unset;
}

.img-detect-content .image-Interval-title .main-random-time span.premium {
    position: unset;
}

.img-detect-content .credit-left {
    font-size: clamp(5px, 1.2vw, 12px);
}

.img-detect-content .main-random-time {
    background-color: unset;
    padding: unset;
    margin-bottom: clamp(5px, 1.2vw, 10px);
}

.auto-detect-img-content h4 {
    font-size: clamp(5px, 1.2vw, 14px);
    margin-top: clamp(8px, 1.2vw, 20px);
    margin-bottom: clamp(5px, 1.2vw, 15px);
}

.auto-detect-img-content p {
    display: flex;
    align-items: center;
    gap: clamp(2px, 1vw, 6px);
    font-size: clamp(6px, 1.2vw, 13px);
    padding-bottom: clamp(4px, 1vw, 7px);
    white-space: normal;
}

.auto-detect-img-content p svg {
    max-width: clamp(8px, 1.2vw, 16px);
    max-height: clamp(8px, 1.2vw, 16px);
}

.auto-detect-img-content p svg:nth-child(2) {
    max-width: clamp(10px, 1.2vw, 17px) !important;
    max-height: clamp(10px, 1.2vw, 17px) !important;
}

.auto-detect-img-content p svg path {
    fill: #1a73e8;
}

.auto-detect-img-content p:last-child {
    padding-left: clamp(6px, 1.2vw, 15px);
}

.auto-detect-img-content p:nth-last-child(2) {
    padding-left: clamp(6px, 1.2vw, 15px);
}

.advance-option-img-content p {
    padding-left: unset !important;
}

.advance-option-img-content p span.number-input {
    padding: 0 15px;
    text-align: center;
    border-bottom: #1a73e8 solid 1px;
    white-space: normal;
}

.auto-refresh-hero-image {
    position: absolute;
    top: 17%;
    right: 15px;
}



.preview-section .hero-img .hero-img-wrapper {
    position: relative;
}

.preview-section .hero-img .hero-img-wrapper .hero-img-highlight {
    position: absolute;
    top: 3.3%;
    right: 3.2%;
    width: 50px;
    height: 50px;
    border: 2px solid #ed2e2e;
    border-radius: 12px;
    box-shadow: 5px 5px 15px rgb(0 0 0 / 30%);
}

.image-url-links {
    position: relative;
}

.mini-rating-card {
    height: auto;
    background-color: #eaf5ff;
    z-index: 11;
    display: flex;
    border-top: 1px solid #ddd;
    padding: clamp(3px, 1vw, 10px) clamp(5px, 1.5vw, 15px);
    align-items: center;
    gap: 16px;
    max-width: 100%;
    border-bottom-left-radius: clamp(8px, 2vw, 20px);
    border-bottom-right-radius: clamp(8px, 2vw, 20px);
}

.mini-rating-card .rating-body {
    text-align: center;
    /* width: 100%; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
    gap: 5px;
    cursor: pointer;
}

h3.feature-txt {
    font-size: 15px;
    font-size: clamp(6px, 1.2vw, 13px);
    font-weight: 700;
}

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

.rating-box svg,
.sugg-box svg,
.help-icon-wrp svg {
    max-width: clamp(10px, 1.4vw, 24px);
    max-height: clamp(10px, 1.4vw, 24px);
    display: block;
}

.sugg-icon,
.help-icon-wrp {
    display: flex;
    justify-content: center;
    padding-bottom: 5px;
}

.sugg-icon,
.help-icon-wrp {
    display: flex;
    justify-content: center;
    padding-bottom: 5px;
}

.saveBtnBox {
    text-align: left;
    padding-right: 0;
    display: flex;
    align-items: flex-start;
    margin-left: auto;
    gap: 8px;
}

.btn {
    background-color: #1a73e8;
    color: #fff;
    display: inline-block;
    padding: 10px 15px;
    border: none;
    font-family: "Quicksand", sans-serif;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
}

.saveBtnBox button {
    font-size: clamp(6px, 1.3vw, 14px);
    padding: clamp(2px, 0.5vw, 8px) clamp(3px, 1vw, 10px);
    outline: 2px solid #ed2e2e;
    outline-offset: 2px;
}

.save-button {
    margin-left: auto;
    margin-right: 0;
}

.preview-section.schedule-section,
.preview-section.advance-option-section {
    padding-bottom: 40px;
}

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

    .preview-section .hero-img .hero-img-wrapper .hero-img-highlight {
        width: 45px;
        height: 45px;
    }
}

@media only screen and (max-width:860px) {
    .preview-section .hero-img .hero-img-wrapper .hero-img-highlight {
        width: 40px;
        height: 40px;
        top: 3.5%;
    }
}

@media only screen and (max-width:767px) {
    .container {
        padding: 0 15px;
    }

    .preview-section .hero-img::before {
        content: unset;
    }

    .preview-section .hero-img .hero-img-wrapper .hero-img-highlight {
        position: absolute;
        top: 3.3%;
        right: 3.2%;
        width: 35px;
        height: 35px;
        border: 2px solid #ed2e2e;
        border-radius: 6px;
    }

    .saveBtnBox button {
        border-radius: 2px;
    }

    .image-tab-content-highlight {
        padding: 6px !important;
    }
}

@media only screen and (max-width:670px) {
    .preview-section .hero-img .hero-img-wrapper .hero-img-highlight {
        top: 3%;
        right: 3%;
    }
}

@media only screen and (max-width:600px) {
    .preview-section .hero-img .hero-img-wrapper .hero-img-highlight {
        width: 30px;
        height: 30px;
    }
}

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

    .image-url-links {
        border-radius: 4px;
    }

    .image-url-links,
    .image-tab-content .image-presets-input-time,
    .image-tab-content-highlight {
        outline: 1px solid #ed2e2e;
    }
}

@media only screen and (max-width:525px) {
    .preview-section .hero-img .hero-img-wrapper .hero-img-highlight {
        width: 28px;
        height: 28px;
    }

    .preview-section {
        margin-bottom: 50px;
    }

    .preview-section.schedule-section,
    .preview-section.advance-option-section {
        padding-bottom: 0px;
    }
}

@media only screen and (max-width:525px) {
    .preview-section .hero-img .hero-img-wrapper .hero-img-highlight {
        width: 26px;
        height: 26px;
    }
}

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

    .preview-section .hero-img .hero-img-wrapper .hero-img-highlight {
        width: 25px;
        height: 25px;
        top: 2%;
        right: 2.5%;
    }
    .preview-section.advance-option-section {
        margin-bottom: 70px;
    }
    .auto-refresh-hero-image {
        right: 10px;
    }
}

@media only screen and (max-width:360px) {
    .preview-section .hero-img .hero-img-wrapper .hero-img-highlight {
        width: 20px;
        height: 20px;
        border-radius: 2px;
        top: 2%;
        right: 2.5%;
    }
}