/****header css *********/
.pageflows-header {
    position: fixed; /* Keep the navbar fixed at the top */
    top: 0; /* Start at the top */
    left: 0;
    right: 0;
    background-color: #fff; /* Background color */
    color: white; /* Text color */
    padding: 10px 20px; /* Padding */
    transition: top 0.9s ease, opacity 0.9s ease; /* Smooth transition for top and opacity */
    opacity: 1; /* Start fully visible */
    z-index: 1000; /* Ensure it stays on top */

}

/* Keyframe animations for attractive effects */
@keyframes slideDown {
    0% {
        top: -60px; /* Start above the view */
        opacity: 0; /* Start invisible */
    }
    50% {
        opacity: 0.5; /* Midway opacity */
    }
    100% {
        top: 0; /* End at the top */
        opacity: 1; /* Fully visible */
    }
}

@keyframes slideUp {
    0% {
        top: 10px; /* Start at the top */
        opacity: 1; /* Start fully visible */
    }
    50% {
        opacity: 0.5; /* Midway opacity */
    }
    100% {
        top: -60px; /* Move the navbar up out of view */
        opacity: 0; /* Fade out */
    }
}

.pageflows-header.hidden {
    animation: slideUp 1.5s linear forwards; /* Faster hiding animation */
}

.pageflows-header.visible {
    animation: slideDown 0.3s ease forwards; /* Slide down animation */
}
.pageflows-header-main {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 30%;
}
.pageflows-header-nav {
    justify-content: center;
    display: flex;
    flex: 0 0 40%;
}
.pageflows-header-right-menu {
    flex: 0 0 30%;
    display: flex;
    justify-content: flex-end;
}
.pageflows-header-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 11%;
}
.pageflows-header-right-menu ul {
    display: flex;
    align-items: center;
    gap: 15px;
}
.pageflows-header-container {
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.pageflows-header-right-menu ul .user-dropdown {
    position: absolute;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 16px;
    background: #FFFFFF;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    top: 60px;
    width: max-content;
    overflow: hidden;
    transition: height 0.5s ease;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 2;
}
.pageflows-header-right-menu ul .user-dropdown.open {
    height: auto;
    transition: height 0.5s ease;
    opacity: 1;
    visibility: visible;
}
.pageflows-searchbar {
    display: flex;
    align-items: center;
    padding: 0px 16px;
    gap: 12px;
    height: 48px;
    background: #EDEDED;
    border-radius: 24px;
}

.pageflows-searchbar input {
    background: transparent;
    border: 0;
    padding: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: #000000;
    height: 100%;
    width: 300px;
}

.pageflows-searchbar input:focus {
    outline: none;
    box-shadow: none;
}

.pageflows-searchbar input::placeholder {
    color: #7B7979;
}

.pageflows-header-nav ul li a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    gap: 10px;
    height: 35px;
    background: #F1F1F1;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000000;
}

.pageflows-header-nav ul li a:hover, .pageflows-header-nav ul li.active a {
    background: #000;
    color: #fff;
}
.pageflows-header-nav ul li:first-child a {border-radius: 20px 0  0 20px;}
.pageflows-header-nav ul li:last-child a {
    border-radius: 0px 20px  20px 0px;
}
.pageflows-header-right-menu ul li.get-premium-menu a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  gap: 10px;
  height: 35px;
  background: #4DC2F4;
  border-radius: 20px;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FFFFFF;
}
.team-signup-page .pageflows-header-bottom-nav {
    display: none;
}
.highlight {
    color: #201f1f;
    fill: #201f1f !important;
}
.pageflows-logo {
    width: 30px;
}
.get-premium-menu{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  gap: 10px;
  height: 35px;
  background: #4DC2F4;
  border-radius: 20px;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FFFFFF;
}
.signin-button a {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #A389C3;
}

.signin-button a:hover {
    color: #4dc1f4;
}
.pageflows-header-right-menu ul li .get-blog-menu a,
.right-menus .get-blog-menu a {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000000;
    transition: .3s;
    position: relative;
}

.pageflows-header-right-menu ul li .get-blog-menu a:hover,
.right-menus .get-blog-menu a:hover {
    color: #4dc1f4;
}
.pageflows-header-right-menu ul li a {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #A389C3;
}
.pageflows-header-right-menu ul .user-dropdown li a {
  padding: 10px 16px;
  gap: 10px;
  background: #F1F1F1;
  border-radius: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000000;
}
.user-login-menu {
    cursor: pointer;
    position: relative;
    display: flex;
    gap: 15px;
}

.pageflows-header-right-menu ul .user-login-menu img {
    border-radius: 100px;
    height: 40px;
    width: 40px;
}

.pageflows-header-right-menu ul .user-dropdown li {
    width: 100%;
}
.userflow-menu ul li.userflow-menu-dropdown {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  gap: 10px;
  height: 35px;
  background: #A389C3;
  border-radius: 20px;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FFFFFF;
  position: relative;
  cursor: pointer;
}

.userflow-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.userflow-menu ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.userflow-menu ul ul, .userflow-right-menu .userflow-right-dropdown {
    position: absolute;
    left: 0;
    top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 24px;
    gap: 16px;
    background: #FFFFFF;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    width: max-content;
    overflow: hidden;
    transition: height 0.5s ease;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 1;
}
.userflow-menu ul ul.open, .userflow-right-menu .userflow-right-dropdown.open {
    height: auto;
    transition: height 0.5s ease;
    opacity: 1;
    visibility: visible;
}
.userflow-menu ul ul li a, .userflow-right-menu .userflow-right-dropdown li a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  gap: 10px;
  height: 31px;
  background: #F1F1F1;
  border-radius: 20px;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000000;
  width: 100%;
  transition: .3s;
}

.userflow-menu ul ul li, .userflow-right-menu .userflow-right-dropdown li {
    width: 100%;
    cursor: pointer;
}

.userflow-menu ul ul li a:hover, .userflow-menu ul ul li.active a,
.userflow-right-menu .userflow-right-dropdown li.active a,
.userflow-right-menu .userflow-right-dropdown li a:hover {
    background: #A389C3;
    color: #fff;
    transition: .3s;
}
.userflow-right-menu ul .userflow-right-dropdown-open {
    display: flex;
    align-items: center;
    gap: 5px;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000000;
    cursor: pointer;
    position: relative;
}
.userflow-right-menu .userflow-right-dropdown {
    top: 30px;
    left: auto;
    right: 0px;
}
.filter-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    padding: 8px 12px;
    height: 35px;
    background: #FFFFFF;
    border: 2px solid #4DC2F4;
    border-radius: 20px;
    justify-content: center;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #4DC2F4;
    cursor: pointer;
}
.userflow-menu ul.main-navbar li a {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000000;
    transition: .3s;
    position: relative;
}
.hide-filter-tag {
    cursor: pointer;
    display: none;
}
.main-navbar-menus ul.main-navbar .filter-active {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 7px 12px;
    gap: 10px;
    background: #FFFFFF;
    border: 2px solid #4DC2F4;
    border-radius: 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #4DC2F4;
}
.main-navbar-menus ul.main-navbar .filter-active a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4DC2F4;
}
.main-navbar-menus ul.main-navbar .filter-active .hide-filter-tag {
    display: block;
}
.main-navbar-menus ul.main-navbar .filter-active a:hover:after {
    display: none;
}
.pageflows-header-bottom-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0 0;
}
.userflow-menu ul.main-navbar li a:hover, .userflow-menu ul.main-navbar li.active a {
    color: #4DC2F4;
    transition: .3s;
}

.userflow-menu ul.main-navbar li a:after {
    content: "";
    width: 6px;
    height: 6px;
    background: #4DC2F4;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 100%;
    top: -10px;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}

.userflow-menu ul.main-navbar li a:hover:after, .userflow-menu ul.main-navbar li.active a:after {
    opacity: 1;
    visibility: visible;
    transition: .3s;
}
.userflow-right-menu ul .userflow-right-dropdown-open svg {
    fill : #000;
}
.userflow-right-menu ul .userflow-right-dropdown-open:hover {
    color: #a389c3;
}

.userflow-right-menu ul .userflow-right-dropdown-open:hover svg {
    fill: #a389c3 ;
}
li.back-btn a {
    display: flex;
    align-items: center;
    gap: 5px;
}
li.back-btn a svg {
  fill : #000;
}
li.back-btn a:hover svg {
  fill: #4DC2F4;
  transition: .3s;
}
.filter-main-search {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
    height: 48px;
    background: #F1F1F1;
    border-radius: 24px;
    width: 100%;
}

.filter-main-search input {
    border: 0;
    width: 100%;
    background: transparent;
    padding: 0;
    height: 100%;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: #000000;
}

.filter-main-search input:focus {
    outline: none;
    box-shadow: none;
}

.filter-userflow-search {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

svg.close-filter {
    cursor: pointer;
}

.filter-navbar-main {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 20px;
    background: #FFFFFF;
    border-top: 1px solid #DCDADA;
    border-bottom: 1px solid #DCDADA;
    justify-content: space-between;
}

.filter-navbar-main ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-navbar-main ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    gap: 10px;
    background: #F1F1F1;
    border-radius: 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000000;
    transition: .3s;
}

.filter-navbar-main ul li a:hover, .filter-navbar-main ul li.active a,
.pageflows-header-right-menu ul .user-dropdown li a:hover,
.pageflows-header-right-menu ul .user-dropdown li.active a {
    background: #A389C3;
    color: #fff;
    transition: .3s;
}

.see-all-userflow a {
    display: flex;
    align-items: center;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    letter-spacing: 0.2em;
    color: #A389C3;
}
.userflow-product-filter-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    height: 600px;
    overflow-y: scroll;
}
.userflow-product-filter-list.filters-list.usersFlow {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
.userflow-product-filter-column {
    border-right: 1px solid #DCDADA;
}

.searchbar-menulist {
    position: fixed;
    z-index: 99999;
    padding: 0px;
    border-top: 1px solid #DCDADA;
    left: 0;
    right: 0;
    top: 0;
    filter: drop-shadow(0px 4px 16px rgba(0, 0, 0, 0.08));
    background: #fff;
    display: none;
}

.userflow-product-filter-column ul li:first-child a {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #4DC2F4;
    display: block;
    padding: 30px 20px 20px;
}

.userflow-product-filter-column ul li a {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 20px;
    transition: .3s;
}
.userflow-product-filter-column ul li a:hover {
    color: #A389C3;
    transition: .3s;
    font-weight: 600;
}
.userflow-product-filter-column ul li:first-child a:hover {
    color: #4DC2F4;
    font-weight: 700;
}
.userflow-product-filter-list.products .userflow-product-filter-column ul li a,
.userflow-product-filter-list.screens .userflow-product-filter-column ul li a,
.userflow-product-filter-list.uiElements .userflow-product-filter-column ul li a {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 20px;
    transition: .3s;
    text-transform: capitalize;
    letter-spacing: normal;
}
.userflow-product-filter-column ul li a span {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #AAAAAA;
}
.userflow-product-filter-column ul li.clickable-category a {
    background: #F1F1F1;
    font-weight: 700;
    color: #000;
}
li.signin-menu, li.get-premium-menu {
    display: none;
}
.pageflows-header-right-menu ul li.blog-menu a {
  color: #000;
}

body.emails-page.header-fixed .searchbar-menulist,
body.ios-page.header-fixed .searchbar-menulist,
body.android-page.header-fixed .searchbar-menulist,
body.web-page.header-fixed .searchbar-menulist {
    left: -30px;
    right: -30px;
    top: -20px;
}
footer.pageflows-footer {
    background: #000;
    padding: 30px;
}

.footer-menu ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-menu ul li a {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    transition: .3s;
}

.pageflows-footer-menu {
    display: flex;
    justify-content: space-between;
}

.footer-logo {
    display: flex;
    justify-content: flex-end;
    margin: 0 0  15px;
}

.footer-logo-main p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: right;
    color: #fff;
}

.footer-logo-main ul {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
    margin: 20px 0 0;
}

.footer-logo-main ul li a svg {
    fill: #aaa;
    transition: .3s;
}

.footer-logo-main ul li a:hover svg {
    fill: #a389c3;
    transform: scale(1.1);
    transition: .3s;
}

.footer-logo-main ul li a {
    transition: .3s;
}

.footer-terms-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 60px 0 0;
}

.footer-terms-menu ul li a {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    transition: .3s;
}
ul.footer-social-menu {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-terms-menu p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: right;
    color: #000000;
}

.footer-terms-menu ul li a:hover, .footer-menu ul li a:hover, .footer-terms-menu ul li.active a, .footer-menu ul li.active a {
    color: #a389c3;
    transition: .3s;
}
.userflow-product-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0 0 25px;
}

.product-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.product-name-text {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.2em;
    color: #000000;
    text-transform: uppercase;
}

.products-tags span {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #000000;
    letter-spacing:normal;
    text-transform: initial;
}

.products-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin: 5px 0 0;
}

.product-view-like {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-view-like span {
    display: flex;
    align-items: center;
    gap: 7px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #AAAAAA;
}
.userflow-products {
    padding: 50px 0;
}
.pageflows-container {
    margin: 0 auto;
    max-width: 1420px;
    padding: 0 20px;
}
.userflow-products-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px 20px;
}
.userflow-products-main.desktop-web {
    grid-template-columns: 1fr 1fr;
}

.products-screenshot-item img {
    transition: .3s;
    cursor: pointer;
    border-radius: 10px;
    height: 100%;
    width: 100% !important;
    object-fit: cover;
}
.page-banner-text h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    text-align: center;
    color: #000000;
    margin: 0 0 10px;
}

.page-banner-text p {
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: #AAAAAA;
}
.page-banner-text {
    padding: 60px 0;
    margin-top: 150px;
}
main.flex-grow, body {
  background: #fff;
}
.userflow-products-item {
    position: relative;
}

.product-notpaid {
    display: flex;
    align-items: center;
    gap: 24px;
    position: absolute;
    left: 0px;
    top: 0;
    background: rgba(247, 247, 247, 0.9);
    border-radius: 12px;
    bottom: 0;
    right: 0;
    z-index: 2;
    justify-content: center;
    padding: 0 15px;
}

.product-notpaid-content p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    text-align: center;
}

.product-notpaid-content a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
    height: 44px;
    background: #4DC2F4;
    border-radius: 24px;
    width: fit-content;
    margin: 15px auto 0;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: .3s;
}

.product-notpaid-content a:hover {
    background: #000;
    transition: .3s;
}
.userflow-products-item:hover .products-screenshot-item img {
    transform: scale(0.93);
}
.products-screenshot-item {
    background: #f7f7f7;
    border-radius: 10px;
    overflow: hidden;
    padding: 0 15px;
    align-items: center;
    display: flex;
}
.userflow-products-item {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}
body.custom-class, body.login-page {
    margin: 0 !important;
}

body.custom-class header#header, body.login-page header#header {
    position: static;
    animation: none;
}
.userflow-products-main.desktop-web .userflow-products-item .products-screenshot-item {
    height: 370px;
    align-items: flex-start;
}
.products-screenshot-item-inner.slick-slide {
    min-height: 400px;
    display: flex !important;
    align-items: center;
}
.product-info img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    object-fit: cover;
}
.products-screenshot-item button.slick-prev.slick-arrow,
.products-screenshot-item button.slick-next.slick-arrow {
    z-index: 9;
    background-color: #4dc1f4;
    visibility: hidden;
    transition: .3s;
}

.products-screenshot-item:hover button.slick-prev.slick-arrow,
.products-screenshot-item:hover button.slick-next.slick-arrow {
    transition: .3s;
    visibility: visible;
}

.products-screenshot-item button.slick-arrow.slick-disabled {
    opacity: 0;
}
.products-screenshot-item.slick-slider {
    margin-bottom: 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}
.products-screenshot-item.slick-slider .slick-track {
    display: flex;
    gap: 10px;
}
.mobile-navbar, li.hide-desktop {
    display: none;
}
.main-navbar-menus {
    max-width: 1000px;
    overflow-x: auto;
    padding: 15px 0;
}

.main-navbar-menus ul.main-navbar {
    min-width: max-content;
}
.request-update-main h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 15px;
}

.request-update-main p {
    font-style: normal;
    font-size: 16px;
    margin: 0 0 30px;
    line-height: 27px;
}
.request-update-main .website-form-main {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 5px 0px 30px 5px #eee;
    padding: 30px;
    display: flex;
    flex-flow: column;
    gap: 20px;
}

.request-update-main .website-form-main label {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 15px;
}

.request-update-main .website-form-main .button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
    height: 50px;
    background: #4DC2F4;
    border-radius: 30px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: .3s;
}

.request-update-main .website-form-main .button:hover {
    background: #000;
}

.request-update-main .website-form-main textarea {
    border-radius: 5px;
    height: 110px;
}
.request-update-main {
    margin: 50px 0;
}
.request-update-main-parent {
    background: #F5EEFD;
}
.main-searchBar-div {
    position: absolute;
    top: 100px;
    background: #fff;
    z-index: 1;
    width: 100%;
    left: 0;
    border: 1px solid #ccc;
    max-height: 400px;
    overflow-y: scroll;
    display: none;
}
.search-result {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.search-result-item {
    box-sizing: border-box;
    padding: 32px 40px;
    background: #FFFFFF;
    border-right: 1px solid #DCDADA;
}
.search-result-item .search-heading-product {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #4DC2F4;
    margin: 0 0 20px;
}
.searchableList li {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    padding: 10px 0;
}
.searchBar-other {
    display: grid;
    grid-template-columns: 1fr;
}
.searchBar-other-item {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    gap: 20px;
    background: #FFFFFF;
    border-width: 1px 0px 1px 0px;
    border-style: solid;
    border-color: #DCDADA;
}
.searchBar-other-item .search-heading-product-find {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #4DC2F4;
}
.searchBar-other-item a {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #A389C3;
}
.searchBar-other-item p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    color: #000000;
}

.all-product-a-z {
    text-align: center;
    padding: 40px 0;
}
.all-product-a-z .userflow-menu {
    margin: 0 auto;
    display: table;
}
.heading-all-product {
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 48px;
    display: flex;
    align-items: center;
    color: #000;
    justify-content: center;
    margin: 30px 0 0;
}
.all-products-alphabets {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-width: 1px 0px;
    border-style: solid;
    border-color: #DCDADA;
    padding: 30px 30px;
    justify-content: center;
    position: sticky;
    top: 0px;
    background: #fff;
}
.all-products-alphabets-list ul {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}
.all-products-alphabets-list ul li a {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #000000;
    position: relative;
}
.all-products-alphabets-list ul li a:after {
    content: "";
    width: 6px;
    height: 6px;
    background: #4DC2F4;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 100%;
    top: -10px;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}
.all-products-alphabets-list ul li a:hover, .all-products-alphabets-list ul li.active a {
    color: #4DC2F4;
    transition: .3s;
}
.all-products-alphabets-list ul li a:hover:after, .all-products-alphabets-list ul li.active a:after {
    opacity: 1;
    visibility: visible;
    transition: .3s;
}
.all-products-block {
    padding: 70px 0;
}
.all-products-block-inner {
    margin: 0 auto;
    max-width: 35%;
}
.all-products-block-inner ul {
    display: flex;
    flex-flow: column;
    gap: 20px;
}
.all-products-block-inner ul li {
    display: flex;
    flex-flow: column;
    gap: 20px;
}
.product-title-header {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #A389C3;
}
.all-products-block-inner ul li a {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.all-products-block-inner ul li a span {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #AAAAAA;
}
.all-products-block-inner ul li a:hover {
    color: #4dc1f4;
}
.loaders {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 11;
    justify-content: center;
    bottom: 20rem;
    align-items: center;
}
.loader {
      box-sizing: border-box;
      display: flex;
      flex: 0 1 auto;
      flex-direction: column;
      flex-grow: 1;
      flex-shrink: 0;
      flex-basis: 25%;
      max-width: 25%;
      height: 200px;
      align-items: center;
      justify-content: center;
}
.blink {
    animation: blink-animation 3s steps(1, start) infinite;
}

@keyframes blink-animation {
    to {
        opacity: 0;
    }
}
@-webkit-keyframes ball-grid-pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0.7; }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; } }

@keyframes ball-grid-pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0.7; }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; } }

.ball-grid-pulse {
  width: 57px; }
  .ball-grid-pulse > div:nth-child(1) {
    -webkit-animation-delay: 0.22s;
            animation-delay: 0.22s;
    -webkit-animation-duration: 0.9s;
            animation-duration: 0.9s; }
  .ball-grid-pulse > div:nth-child(2) {
    -webkit-animation-delay: 0.64s;
            animation-delay: 0.64s;
    -webkit-animation-duration: 1s;
            animation-duration: 1s; }
  .ball-grid-pulse > div:nth-child(3) {
    -webkit-animation-delay: -0.15s;
            animation-delay: -0.15s;
    -webkit-animation-duration: 0.63s;
            animation-duration: 0.63s; }
  .ball-grid-pulse > div:nth-child(4) {
    -webkit-animation-delay: -0.03s;
            animation-delay: -0.03s;
    -webkit-animation-duration: 1.24s;
            animation-duration: 1.24s; }
  .ball-grid-pulse > div:nth-child(5) {
    -webkit-animation-delay: 0.08s;
            animation-delay: 0.08s;
    -webkit-animation-duration: 1.37s;
            animation-duration: 1.37s; }
  .ball-grid-pulse > div:nth-child(6) {
    -webkit-animation-delay: 0.43s;
            animation-delay: 0.43s;
    -webkit-animation-duration: 1.55s;
            animation-duration: 1.55s; }
  .ball-grid-pulse > div:nth-child(7) {
    -webkit-animation-delay: 0.05s;
            animation-delay: 0.05s;
    -webkit-animation-duration: 0.7s;
            animation-duration: 0.7s; }
  .ball-grid-pulse > div:nth-child(8) {
    -webkit-animation-delay: 0.05s;
            animation-delay: 0.05s;
    -webkit-animation-duration: 0.97s;
            animation-duration: 0.97s; }
  .ball-grid-pulse > div:nth-child(9) {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
    -webkit-animation-duration: 0.63s;
            animation-duration: 0.63s; }
  .ball-grid-pulse > div {
    background-color: #000;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    display: inline-block;
    float: left;
    -webkit-animation-name: ball-grid-pulse;
            animation-name: ball-grid-pulse;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-delay: 0;
            animation-delay: 0; }
.right-menus {
    display: flex;
    gap: 15px;
}
.openbtn {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: none;
}

.openbtn .openbtn-area {
  transition: all 0.4s;
}

.openbtn span {
    position: absolute;
    background: #000;
    display: inline-block;
    border-radius: 3px;
    left: 11px;
    height: 2px;
    transition: all 0.4s;
    width: 50%;
}
.openbtn span:nth-of-type(1) {
  top: 12px;
}
.openbtn span:nth-of-type(2) {
  top: 20px;
}
.openbtn span:nth-of-type(3) {
  top: 28px;
}

.openbtn.active .openbtn-area {
  transform: rotatex(360deg);
}

.openbtn.active span:nth-of-type(1) {
  width: 45%;
  top: 13px;
  left: 11px;
  transform: translateY(6px) rotate(-135deg);
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  width: 45%;
  top: 25px;
  left: 11px;
  transform: translateY(-6px) rotate(135deg);
}
.landing-page-header {
    text-align: center;
    padding: 30px 0;
}
.landing-page-header h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 60px;
    line-height: 72px;
    text-align: center;
    color: #1D1D1D;
    position: relative;
    border: 1px solid #4DC2F4;
    padding: 20px;
    max-width: 80%;
    margin: 0 auto;
}
.landing-page-header h1 span {
    background: #4DC2F4;
    width: 20px;
    height: 20px;
    display: flex;
    position: absolute;
    left: -10px;
    top: -10px;
}
.landing-page-header h1 span.header-square-two {
    left: auto;
    right: -10px;
}

.landing-page-header h1 span.header-square-three {
    top: auto;
    bottom: -10px;
}

.landing-page-header h1 span.header-square-four {
    top: auto;
    bottom: -10px;
    left: auto;
    right: -10px;
}
.header-icon {
    position: absolute;
    right: -40px;
    bottom: -40px;
}
.landing-page-header p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #747474;
    margin: 20px 0 20px;
}
.landing-page-header a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 20px;
    height: 52px;
    background: #4DC2F4;
    border-radius: 30px;
    width: fit-content;
    margin: 0 auto;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #FFFFFF;
}
.why-choose-pageflow h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    text-align: center;
    color: #1D1D1D;
}

.why-choose-list ul li h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: #3C3C3C;
}

.why-choose-list ul li p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #5C5C5C;
}

.why-choose-list ul li {
    display: flex;
    flex-flow: column;
    gap: 10px;
}

.why-choose-list ul {
    display: flex;
    flex-flow: column;
    gap: 20px;
}
.pageflows-website-image img {
    width: 100%;
}
.why-choose-pageflow {
    padding: 70px 0;
}
.landing-logos ul:last-child {
    padding-left: 190px;
}

.landing-logos ul {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.landing-logos ul li {
    width: 79.95px;
    height: 79.95px;
    background: #DBF4FF;
    border-radius: 6.22634px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-logos {
    display: flex;
    flex-flow: column;
    gap: 15px;
    padding: 40px 0 70px;
}
.trusted-logs ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.trusted-heading {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #000000;
    padding: 10px 0 20px;
}

.trusted-logs {
    margin: 40px 0 20px;
}

#logoMarqueeSection {
  margin: 0 auto;
}

.default-content-container {
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
}

div.marquee>a>img {
  height: 50px;
}

.logoMarqueeSection>div>div {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 0;
}

.marquee-wrapper {
  display:  inline-block;
  white-space: nowrap;
}

.marquee {
    display:  inline-block;
    white-space: nowrap;
    position: relative;
    transform: translate3d(0%, 0, 0);
    animation-name: marquee;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.marquee a {
    display:  inline-block;
    white-space: nowrap;
    padding-right: 5.4rem;
}

.marquee-wrapper:hover .marquee {
    animation-play-state: paused !important;
}

@keyframes marquee {
    0% {
        transform: translate3d(0%, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}
.logoMarqueeSection {
    background: #D9F4FF;
    padding: 20px 0 15px;
    margin: 70px 0 50px;
}
.ux-design-block {
    margin: 0 auto;
    text-align: center;
    max-width: 50%;
    display: flex;
    flex-flow: column;
    gap: 20px;
}

.ux-design-block h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    text-align: center;
    color: #1D1D1D;
}

.ux-design-block p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #5C5C5C;
}
.ux-design-block a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 20px;
    gap: 8px;
    height: 52px;
    background: #4DC2F4;
    border-radius: 30px;
    width: fit-content;
    margin: 0 auto;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #FFFFFF;
}
.choose-plan-fits-item-f h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    color: #1D1D1D;
}
.choose-plan-fits-item-f a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
    height: 48px;
    background: #4DC2F4;
    border-radius: 30px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: .3s;
    width: fit-content;
}
.choose-plan-fits-item-f {
    display: flex;
    flex-flow: column;
    gap: 20px;
}

.choose-plan-fits-item-f a:hover {
    background: #000;
}

.choose-plan-fits-item {
    display: flex;
    flex-flow: column;
    gap: 20px;
    position: relative;
    overflow: visible;
    right: 50px;
}

.choose-plan-fits-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 200px;
    align-items: center;
}
.choose-plan-fits-item:after {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;gap: 13.5px;
    position: absolute;
    background: #EAE8E8;
    border-radius: 6.75px;
    content: "";
    bottom: -40px;
    right: -40px;
    width: 100%;
    height: 100%;
}

.choose-plan-fits-item .choose-plan-box.pricing-plan-block {
    z-index: 2;
    box-sizing: border-box;
    padding: 60px 30px 30px 30px;
    background: #FFFFFF;
    border: 1.125px solid #32ACE0;
    border-radius: 6.75px;
}
.why-choose-main {
    position: relative;
}
.choose-plan-fits-item:before {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 13.5px;
    position: absolute;
    left: 20px;
    top: 20px;
    background: #F1F1F1;
    border-radius: 6.75px;
    content: "";
    width: 100%;
    height: 100%;
    z-index: 1;
}

.choose-plan-fits {
    padding: 100px 0;
    overflow: hidden;
    width: 100%;
}

.choose-plan-fits-item .plan-benifits-list ul li svg {
    height: 10px;
}
.why-choose-list {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}
.why-choose-head {
    margin: 0 0 40px;
}
.why-choose-head p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #5C5C5C;
    max-width: 50%;
    margin: 20px auto 100px;
}
.pageflow-eork-head h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    text-align: center;
    color: #1D1D1D;
}

.pageflow-work-items {
    max-width: 80%;
    margin: 0 auto;
}

.pageflow-work-items ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding: 60px 0 0;
}

.work-icon {
    height: 97px;
    width: 97px;
    background: #258AFF;
    box-shadow: 0px 32px 54px rgba(37, 138, 255, 0.224553);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 30px;
}

.work-item-heading {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: #1D1D1D;
    margin: 0 0 10px;
}
.pageflow-work-items ul li {
  position: relative;
}
.pageflow-work-items ul li p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #5C5C5C;
}

.pageflow-work-items ul li:nth-child(2) {
    padding-top: 60px;
}

.pageflow-work-items ul li:nth-child(3) {
    padding-top: 120px;
}

.pageflow-work-items ul li:after {
    content: "";
    background-image: url('../website/images/arrow.svg');
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    top: 40px;
    left: 125px;
}
.pageflow-work-items ul li:nth-child(2):after {
  background-image: url('../website/images/arrow2.svg');
  left: 110px;
}
.pageflow-work-items ul li:nth-child(3):after {
    display: none;
}
.pageFlows-work {
    padding: 70px 0 0;
    overflow: hidden;
}
.pageflow-testimonials {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 96px 0px;
    gap: 64px;
    background: #1199D4;
    margin: 70px 0 0;
}

.pageflow-testimonials-items .testi-heading {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 38px;
    text-align: center;
    color: #FFFFFF;
    border: 1px solid #fff;
    height: 140px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.pageflow-testimonials-slider-head {
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    text-align: center;
    color: #FFFFFF;
    margin: 0 0 30px;
}
.avatar-img {
    text-align: center;
    margin: 50px auto 0;
    width: 64px;
    height: 64px;
    border-radius: 100px;
    overflow: hidden;
}

.pageflow-testimonials-items {
    display: flex;
    flex-flow: column;
    padding: 10px;
}
.pageflow-testimonials-items .testi-heading span {
    background: #fff;
    width: 20px;
    height: 20px;
    position: absolute;
    left: -10px;
    top: -10px;
}

.pageflow-testimonials-items .testi-heading span.square-two {
    left: auto;
    right: -10px;
}

.pageflow-testimonials-items .testi-heading span.square-three {
    top: auto;
    bottom: -10px;
}

.pageflow-testimonials-items .testi-heading span.square-four {
    top: auto;
    left: auto;
    right: -10px;
    bottom: -10px;
}
.pageflow-testimonials-slider {
    margin: 0 auto;
    max-width: 80%;
}

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

.user-details {
    text-align: center;
    display: flex;
    flex-flow: column;
    gap: 10px;
    justify-content: center;
}
.user-name {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #FFFFFF;
    margin: 20px 0 0;
}
.user-description {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #E9D7FE;
}
.user-rateing {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0 0;
}
.pageflow-testimonials-slider .slick-dots li button:before {
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    text-align: center;
    opacity: 1;
    width: 10px;
    height: 10px;
    background: #4DC2F4;
    border-radius: 6px;
    flex: none;
    order: 1;
    flex-grow: 0;
}
.pageflow-testimonials-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    background: #fff;
}
.pagenotfound-block h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    text-align: center;
    color: #000000;
}
.pagenotfound-block p {
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: #5C5C5C;
}
.pagenotfound-description {
    padding: 20px 24px;
    background: #F5EEFD;
    border-radius: 16px;
    text-align: center;
    max-width: 60%;
    margin: 0 auto;
}
.pagenotfound-description p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #7950AE;
    flex: none;
}
.pagenotfound-description .goto-honepage {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #0585BC;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 15px auto 0;
    gap: 15px;
}
.pagenotfound-section {
    padding: 70px 0 100px;
    height: 100%;
    display: flex;
    align-items: center;
}
.pagenotfound-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    overflow: hidden;
}
.pagenotfound-image img {
    height: 200px;
}
.pagenotfound-description p a {
    color: #0285bc;
}
.pagenotfound-image-server {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    overflow: hidden;
}

.pagenotfound-image-server img {
    height: 300px;
    position: relative;
    top: 10px;
}
.why-choose-pageflow.why-choose-pageflow2 .why-choose-list {
    grid-template-columns: 1fr 1.2fr;
}
.why-choose-pageflow.why-choose-pageflow2 .why-choose-list ul {
    order: 2;
}
.search-page .search-results .products-screenshot-item {
    max-height: 600px !important;
    align-items: center;
    display: flex;
    justify-content: center;
}
.search-page .search-results .products-screenshot-item a {
    display: block;
    height: 100%;
}
.search-page .search-results .products-screenshot-item img {
    transition: .3s;
    cursor: pointer;
    border-radius: 10px;
    height: 100%;
    width: 100% !important;
    object-fit: contain;
}

h1, h2 {
  margin-bottom: 1rem;
  color: #000;
}


/* New UserFlow page style starts from here */
/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  padding: 6rem;
  justify-content: space-around;
}

.hero-content {
  max-width: 700px;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.hero-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #555;
  max-width: 32rem;
  margin-top: 1.5rem;
}

.cta-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    gap: 10px;
    height: 45px;
    background: #4DC2F4;
    border-radius: 25px;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-top: 3rem;
}


.hero-images {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.phone-image {
  width: 150px;
  border-radius: 10px;
}

/* Info Section */
.info-section {
    display: flex;
    align-items: center;
    padding: 6rem;
    justify-content: space-around;
}

.info-content {
    display: flex;
    padding: 6rem;
    justify-content: space-around;
    flex-direction: column;
}

.info-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1.5rem;
}

.info-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
}

.info-section a.link {
  color: #38a3eb;
  text-decoration: none;
  font-weight: bold;
}


.info-image {
  flex: 1;
}

.info-section .flowchart-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* General container */
.container-benefits{
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  display: flex;
   flex-direction: column;
}

/* Header styling */
.header-userflow {
  text-align: center;
  margin-bottom: 6rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header-userflow-para{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.header-userflow h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 0.5rem;
}

.header-userflow p {
  font-size: 1.2em;
  color: #666;
}

.header-userflow ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.header-userflow ul li {
  display: inline;
  margin: 0 10px;
}

.header-userflow ul li a {
  text-decoration: none;
  color: #007bff;
}


/* Section containing benefits */
.why-use {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.why-use h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 0.5rem;
}

.why-use p {
  font-size: 1.2em;
  color: #666;
}

.why-use a {
  text-decoration: none;
  color: #007bff;
}


/* Benefits section styling */
.benefits {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
  flex-direction: column;
  align-items: center;
  margin-bottom: 7rem;
}

.inner-benefits-div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.benefit {
  text-align: left;
  width: 62%;
  margin-bottom: 20px;
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.benefit img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.benefit h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  font-weight: 700;
}

.benefit p {
  font-size: 1em;
  color: #666;
}

/* Button styling */
.benefits-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    gap: 10px;
    height: 45px;
    background: #4DC2F4;
    border-radius: 25px;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.pageFlows-work a {
    text-decoration: none;
    color: #0285bc;
    font-weight: bold;
}


.pageFlows-work a:focus {
  outline: none; /* Remove focus outline for better UI */
  border-bottom: 2px solid #007bff; /* Add a bottom border for focused state */
}

.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.checklist li::before {
  content: "☐"; /* Checkboxes before each list item */
  position: absolute;
  left: 0;
  color: #00AEEF; /* Checkbox color */
}

.checklist-a {
  color: #00AEEF; /* Link color */
  text-decoration: none;
}



.container2 {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.header2 h2 {
     font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.header2 p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
}

.benefits2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.benefit2 {
    padding: 20px;
    text-align: left;
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.benefit2 img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.benefit2 h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.benefit2 p {
    font-size: 1em;
    color: #555;
    text-align: center;
    width: 24rem;
}

.benefit2 a {
    color: #007bff;
    text-decoration: none;
}


.trusted {
    background-color: #F5EEFD;
    padding: 2px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}


.users-feedback-slider {
  text-align: center;
  margin: 50px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.users-feedback-slider h2 {
   font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.users-feedback-slider p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
}

.slider-container {
  display: flex;
  align-items: center;
  position: relative;
  width: 90%;
  overflow: hidden;
  justify-content: center;
}

.cards {
  gap: 15px;
  transition: transform 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
}

.card {
  flex-shrink: 0;
  width: 120px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.5s, opacity 0.5s;
}

.card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.card.large {
  width: 200px;
  height: 300px;
  transform: scale(1.2);
  opacity: 1;
}

.card.small {
  opacity: 0.5;
}

.arrow {
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
  color: #333;
  padding: 0 10px;
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #4DC2F4;
}

#prev {
  left: 0;
}

#next {
  right: 0;
}

.arrow:hover {
  color: #000;
}

/* Dots container */
.dots-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #A389C3;
}


/* FAQ Section Styles */

.freq_ask {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
}

.faq-section {
    width: 800px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0rem;
    margin: 50px auto 0;
}
.faq-answer a {
    color: #0285bc;
}
.faq-title {
    font-size: 2.5rem;
    font-weight: bold;
}

.faq-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    font-size: 18px;
    margin-bottom: 10px;
    cursor: pointer;
}

.faq-answer {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.hero-container {
    background-color: #F5EEFD;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 95rem;
    width: 90%;
    min-height: 400px;
    height: 45vh;
    margin-top: 8rem;
    margin-bottom: 8rem;
}

.hero-text {
    max-width: 50%;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: 95px;
}

.hero-text h1 {
    display: flex;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: left;
    max-width: 60%;
}

.hero-text p {
    font-size: 1.2em;
    color: #666666;
}


.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.blog-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin-bottom: 4rem;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  width: 78%;
  margin-bottom: 50px;
}

.blog-header-left {
  flex: 1;
}

.blog-header-right {
  text-align: right;
}

.blog-header-left h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

.blog-header-left p {
  line-height: 1.5;
  margin-bottom: 10px;
}

.blog-article-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 5rem;
}

.blog-article-item {
  width: 300px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 15rem;
}

.blog-article-item img {
  width: 100%;
}

.blog-article-details {
  padding: 15px;
}

.blog-article-heading {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 5px;
}

.blog-article-summary {
  font-size: 0.9em;
  line-height: 1.4;
}

.blog-article-link {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px;
}

.blog-article-link:hover {
  opacity: 0.8;
}

.blog-view-more {
  background-color: #007bff;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px;
}

.blog-view-more:hover {
  opacity: 0.8;
}
/*********SEO PAGE CSS*********/
.pageflows-container-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.hero-content-seo h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 60px;
    line-height: 72px;
    display: flex;
    align-items: center;
    color: #1D1D1D;
}
.hero-content-seo p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #5C5C5C;
    margin: 0 0 20px;
}
.pageflow-graph-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.info-image-seo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content-seo h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    display: flex;
    align-items: center;
    color: #1D1D1D;
}

.info-content-seo p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #5C5C5C;
    margin: 0 0 20px;
}

.info-content-seo p a {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    align-items: center;
    color: #0585BC;
}
.info-section-seo {
    padding: 100px 0;
}
.header-userflow-para ul li a {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #0585BC;
    gap: 10px;
    justify-content: center;
}
.benefit-inner {
    display: flex;
    gap: 30px;
    text-align: left;
}

.benefit-img-h {
    flex: 0 0 65px;
}

.benefit-inner h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    display: flex;
    align-items: center;
    color: #1D1D1D;
}

.benefit-inner p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #5C5C5C;
}

.benefit-inner p a {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #0585BC;
}

.inner-benefits-div-inner {
    display: flex;
    flex-flow: column;
    gap: 40px;
    margin: 50px 0;
}
.benefits-btn-div {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pageflow-work-items.pageflow-work-items-seo {
    max-width: 100%;
}

.pageflow-work-items.pageflow-work-items-seo .work-icon {
    box-shadow: none;
    background: none;
    height: fit-content;
    margin: 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

.pageflow-work-items.pageflow-work-items-seo .pageflow-work-items-li {
    text-align: center;
}

.pageflow-work-items.pageflow-work-items-seo ul li:after {
    left: 270px;
    top: 60px;
    background: url('../website/images/grey-arrow2.svg');
    background-repeat: no-repeat;
    width: 300px;
    height: 200px;
    background-size: 300px;
}
.pageflow-work-items.pageflow-work-items-seo ul li:nth-child(2):after {
    left: 300px;
    top: 80px;
    background: url('../website/images/grey-arrow3.svg');
    background-repeat: no-repeat;
    width: 300px;
    height: 240px;
    background-size: 300px;
}
.pageflow-work-items.pageflow-work-items-seo  ul li:nth-child(2) {
    padding-top: 120px;
}
.pageflow-work-items.pageflow-work-items-seo  ul li:nth-child(3) {
    padding-top: 220px;
}
.pageflow-work-items.pageflow-work-items-seo p a {
    text-decoration: none;
    color: #0585BC;
    font-weight: bold;
}
.info-sec-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.benefit2 h3 {
    margin-bottom: 10px;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: #1D1D1D;
}
.benefit2 p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: #5C5C5C;
    width: 100%;
}
.benefit2 a {
    color: #0585BC;
}
.newtrusted-users {
    padding: 20px 24px;
    gap: 8px;
    background: #F5EEFD;
    border-radius: 16px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #7950AE;
    width: fit-content;
}
.pageflows-feedback-row {
    text-align: center;
}
.pageflows-feedback-row h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #1D1D1D;
    justify-content: center;
}
.pageflows-feedback-row p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #5C5C5C;
    justify-content: center;
}
.freq_ask .faq-title {
    text-align: center;
}
.hero-container-elevate {
    background-color: #F5EEFD;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 95rem;
    width: 90%;
    min-height: 400px;
    /* height: 45vh; */
    margin-top: 8rem;
    margin-bottom: 8rem;
}

.hero-text-elevate {
    max-width: 50%;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: 95px;
}

.hero-text-elevate h2 {
    display: flex;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: left;
}

.hero-text-elevate p {
    font-size: 1.2em;
    color: #666666;
}


.hero-image-elevate {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.hero-image-elevate img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}
.blog-row-head {
  display : flex;
  justify-content : space-between;
  align-items : center;
}
.blog-row-head h2 {
  font-style : normal;
  font-weight : 700;
  font-size : 48px;
  line-height : 60px;
  display : flex;
  align-items : center;
  color : #1D1D1D;
}
.blog-row-head p {
  font-style : normal;
  font-weight : 400;
  font-size : 18px;
  line-height : 24px;
  color : #5C5C5C;
}
.blog-row-head a {
  font-style : normal;
  font-weight : 700;
  font-size : 16px;
  line-height : 20px;
  letter-spacing : 0.16em;
  text-transform : uppercase;
  color : #4DC2F4;
  border : 1.5px solid #4DC2F4;
  padding : 15px 20px;
  border-radius : 100px;
  display : flex;
  align-items : center;
}
.blog-row-inner {
  display : grid;
  grid-template-columns : 1fr 1fr 1fr;
  gap : 30px;
  margin : 60px 0;
}
.blog-row-inner-items {
  border-radius : 16px;
  overflow : hidden;
  border : 1px solid #EAECF0;
}
.blogs-img img {
  width : 100%;
  height : 100%;
  object-fit : cover;
}
.blogs-img {
  height : 270px;
  overflow : hidden;
}
.blog-row-inner-items h3 {
  font-style : normal;
  font-weight : 700;
  font-size : 24px;
  line-height : 36px;
  color : #1D1D1D;
  margin : 0;
}
.blog-row-inner-items p {
  font-style : normal;
  font-weight : 400;
  font-size : 16px;
  line-height : 24px;
  color : #5C5C5C;
}
.blog-row-inner-items a {
  box-sizing : border-box;
  display : flex;
  justify-content : center;
  align-items : center;
  padding : 8px 20px;
  gap : 10px;
  height : 40px;
  background : #FFFFFF;
  border : 2px solid #4DC2F4;
  border-radius : 20px;
  width : fit-content;
  font-style : normal;
  font-weight : 700;
  font-size : 12px;
  line-height : 15px;
  letter-spacing : 0.12em;
  text-transform : uppercase;
  color : #4DC2F4;
}
.blog-content {
    padding: 20px;
    display: flex;
    flex-flow: column;
    gap: 20px;
}
section.hero-section-seo {
    padding: 40px 0 0;
}
.why-use a {
    color: #0285bc;
}
.shotout-reviews {
    padding: 40px 0 0;
}
/*******************************/


@media only screen and (max-width: 1300px) {
  .userflow-products-main {
      grid-template-columns: 1fr 1fr 1fr;
  }
  .mobile-navbar .pageflows-header-bottom-nav {
  display: block;
  padding-left: 20px;
}
.main-navbar-menus {
    display: none;
}
.userflow-right-menu {
    display: none;
}
.mobile-navbar .main-navbar-menus {
  display: block;
  overflow-x: scroll;
}
.mobile-navbar .main-navbar-menus ul.main-navbar {
      text-align: left;
      padding: 0 0px 20px 0px;
      width: 930px;
  }
  .pageflows-container {
      max-width: 100%;
      padding: 0 20px;
  }
  .userflow-menu ul.filter-userflow-nav {
    margin: 0 auto;
}
.userflow-menu {
    width: 100%;
}
.pageflows-searchbar input {
    width: 120px;
}

.mobile-navbar {
    display: block;
}
.userflow-products-main.desktop-web .userflow-products-item .products-screenshot-item {
    height: 370px;
    align-items: center;
}
}
@media only screen and (max-width: 992px) {
  ul.hide-mobile {
      display: none;
  }
  li.hide-desktop {
      display: block;
  }
  .loaders {
    bottom: 30rem;
  }
  .userflow-products-main {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .pageflows-header-container {
      flex-wrap: wrap;
      gap: 30px 10px;
      justify-content: space-between;
  }
  .get-premium-menu {
      height: 30px;
      font-size: 10px;
      line-height: 15px;
      letter-spacing: normal;
  }
  .pageflows-header-nav {
      padding-right: 0;
      flex: 0 0 100%;
      order: 3;
  }
/*.user-login-menu img {*/
/*    border-radius: 100px;*/
/*    height: 40px;*/
/*    width: 40px;*/
/*}*/
#id_image_group label {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000000;
}
#id_image_group input#id_image {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 9px 16px;
    gap: 12px;
    height: 50px;
    border-radius: 30px;
    border: 0px;
    width: 100%;
    background: #f1f1f1;
}
  .pageflows-header-right-menu {
      order: 2;
  }
  .pageflows-footer-menu {
      flex-flow: column;
  }
  .footer-menu {
      justify-content: center;
      display: flex;
      margin-bottom: 45px;
  }
  .footer-menu ul {
      flex-flow: column;
      justify-content: center;
  }
  .footer-logo, .footer-logo-main ul {
      justify-content: center;
  }
  .footer-logo-main p, .footer-terms-menu p {
      text-align: center;
  }
  .footer-terms-menu {
      flex-flow: column;
      gap: 20px;
      margin: 20px 0 0;
  }
  .userflow-menu {
      display: block;
  }
  .userflow-menu ul {
      justify-content: center;
      margin: 0 auto;
      width: 100%;
  }
  .pageflows-searchbar input {
      width: 110px;
  }
  .pageflows-header-bottom-nav {
      flex-flow: column;
  }


.page-banner-text {
    padding: 20px 0;
}
.userflow-product-filter-list, .userflow-product-filter-list.filters-list.usersFlow {
    grid-template-columns: 1fr;
    height: calc(100vh - 230px);
}
.userflow-product-filter-column {
    border-right: 0px;
}
.filter-navbar-main {
    overflow-x: scroll;
    width: 100%;
    display: block;
}

.filter-navbar-main ul {
    width: 560px;
}

.see-all-userflow {
    margin: 20px 0 0;
}
.product-info img {
    width: 50px;
    flex: 0 0 25px;
}
.product-name-text {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.1em;
}
.products-tags span {
    font-size: 10px;
}
.userflow-products-main {
    grid-template-columns: 1fr 1fr;
}
.search-result, .searchBar-other {
    grid-template-columns: 1fr;
}
.all-products-alphabets {
    display: none;
}
.all-products-block {
    padding: 20px 0 70px;
}
.all-products-block-inner {
    margin: 0 auto;
    max-width: 100%;
    padding: 0 30px;
}
.pageflows-header-nav ul {width: auto;}
.right-menus {
    display: none;
}
.right-menus-main.active .right-menus {
    display: flex;
    position: absolute;
    right: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 5px #ccc;
    padding: 20px;
    flex-flow: column;
    gap: 10px;
    top: 80px;
}
.right-menus-main.active .right-menus button a {
    padding: 8px 16px;
    background: #F1F1F1;
    border-radius: 20px;
    width: 100%;
    display: block;
}

.right-menus-main.active .right-menus .get-premium-menu {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    gap: 10px;
    height: 35px;
    background: #4DC2F4;
    border-radius: 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.right-menus-main.active .right-menus .get-premium-menu a {
    background: transparent;
    padding: 0;
}
.openbtn {
    display: block;
}
.landing-page-header h1 {
    font-size: 30px;
    line-height: 45px;
    margin-bottom: 40px;
}
.landing-logos ul:last-child {
    padding-left: 0;
}
.landing-page-header p {
    font-size: 16px;
}

.landing-page-header a {
    font-size: 14px;
}

.landing-logos ul li {
    width: 30px;
    height: 30px;
}

.landing-logos ul li img {
    max-width: 30px;
}

.landing-logos {
    padding: 40px 0 0;
}

.trusted-logs ul {
    flex-flow: column;
}

.trusted-logs ul img {
    max-width: 100px;
}

.why-choose-pageflow h2, .pageflow-eork-head h2 {
    font-size: 30px;
    padding: 0 10px;
    line-height: 40px;
}

.why-choose-list ul {
    max-width: 100%;
}

.why-choose-list ul li h3 {
    text-align: center;
}

.why-choose-list ul li p {
    text-align: center;
    font-size: 16px;
}

.why-choose-pageflow {
    padding-bottom: 0;
}

.why-choose-head p {
    max-width: 100%;
    margin: 15px 0 0;
    font-size: 16px;
}

.why-choose-head {
    padding: 0 15px;
}

.pageflow-work-items ul {
    grid-template-columns: 1fr;
    gap: 0;
}

.pageflow-work-items {
    max-width: 100%;
}

.work-icon {
    width: 70px;
    height: 70px;
}

.pageflow-work-items ul li:nth-child(2) {
    text-align: right;
    padding-top: 100px;
}

.work-item-heading {
    font-size: 18px;
    line-height: 30px;
}

.pageflow-work-items ul li p {
    font-size: 16px;
}

.pageflow-work-items ul li:nth-child(2) .work-icon {
    display: inline-flex;
}

.pageflow-work-items ul li:nth-child(3) {
    padding-top: 110px;
}

.pageflow-work-items ul li:after {
    left: 50px;
    bottom: -250px;
    top: auto;
    transform: rotate(15deg);
    background-size: 50%;
}

.pageflow-work-items ul li:nth-child(2):after {
    transform: rotate(125deg);
    right: 0px;
    left: -100px;
    background-size: 55%;
}

.choose-plan-fits-item-f h2, .ux-design-block h2 {
    font-size: 30px;
    line-height: 45px;
}

.choose-plan-fits-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
}

.choose-plan-fits-item-f a {
    margin: 0 auto;
}

.choose-plan-fits-item .choose-plan-box.pricing-plan-block {
    margin: 0 auto;
    max-width: 100%;
}

.choose-plan-fits-item {
    right: 20px;
    max-width: 85%;
    margin: 0 auto;
}

.ux-design-block p {
    font-size: 16px;
}

.ux-design-block {
    max-width: 100%;
}

.ux-design-block a {
    font-size: 14px;
}
.pageflow-testimonials-items .testi-heading {
    font-size: 18px;
    line-height: 27px;
    height: auto;
}
.pageflow-testimonials-slider-head {
    font-size: 30px;
    line-height: 40px;
}
.pageflow-testimonials-slider {
    max-width: 100%;
}
.pageflows-header-main {
    flex: 0 0 auto;
}
.why-choose-list {
    grid-template-columns: 1fr;
    gap: 30px;
}
.why-choose-pageflow.why-choose-pageflow2 .why-choose-list {
    grid-template-columns: 1fr;
}
.why-choose-pageflow.why-choose-pageflow2 .why-choose-list ul {
    order: 1;
}

.why-choose-pageflow.why-choose-pageflow2 .why-choose-list .pageflows-website-image {
    order: 2;
}
.pageflows-container-row, .info-sec-row {
  grid-template-columns: 1fr;
}
.hero-content-seo {
    text-align: center;
}
.hero-content-seo .cta-button {
    margin: 0 auto 30px;
}
.pageflow-graph-row {
    display: flex;
    flex-flow: column-reverse;
    text-align: center;
    gap: 30px;
}
.pageflow-work-items.pageflow-work-items-seo ul li:after{display: none !important ;}
.pageflow-work-items.pageflow-work-items-seo  ul li:nth-child(3) {
    padding-top: 40px;
}
.pageflow-work-items.pageflow-work-items-seo  ul li:nth-child(2) {
    padding-top: 40px;
}
header.header2, .info-content-seo {
    text-align: center;
}
ul.checklist {
    text-align: left;
}
.benefits2 {
    flex-flow: column;
}
.benefit2 {
    width: 100%;
}
.newtrusted-users {
    margin: 0 auto;
}
.faq-section {
    max-width: 100%;
    margin: 0;
    width: 100%;
}
.hero-container-elevate {
    flex-flow: column;
    gap: 30px;
}
.hero-text-elevate {
    margin: 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
}
.hero-text-elevate h2, .hero-text-elevate p {
    text-align: center;
}
.hero-text-elevate .cta-button {
    margin: 20px auto 0px;
}
.hero-text-elevate p {
    margin: 10px auto 0;
}
.blog-row-head {
    flex-wrap: wrap;
    gap: 30px;
}
.blog-row-inner {
    grid-template-columns: 1fr;
}
.blog-head-inner {
    text-align: center;
}
.blog-row-head h2 {
    font-size: 24px;
    text-align: center;
    width: 100%;
    justify-content: center;
    line-height: normal;
}
.blog-row-head a {
    margin: 0 auto;
}
.freq_ask h1.faq-title {
    font-size: 24px;
}
p.faq-description {
    font-size: 16px;
    text-align: center;
    padding: 0 20px;
}
h2 {
    font-size: 24px !important;
    line-height: normal;
}
p {
  font-size: 16px !important
}
h1 {
    font-size: 30px !important;
    line-height: normal !important;
}
section.freq_ask {
    margin-top: 50px;
}
.header-userflow h2 {
    font-size: 30px;
}
section.header-userflow {
    padding: 0 16px;
}
.flow-chart-diagram {
    min-width: fit-content !important;
}
}

.signup-page .pageflows-header-bottom-nav,
.pricing-page .pageflows-header-bottom-nav {
    display: none;
}

@media only screen and (max-width: 600px) {
.loaders {
    bottom: 30rem;
}
.pageflows-header {
    padding: 20px;
}
.pageflows-searchbar input {
    width: 110px;
    font-size: 12px;
}
.get-premium-menu {
    height: 30px;
    font-size: 8px;
    line-height: 15px;
    letter-spacing: normal;
    width: 78px;
    padding: 0;
}
.pageflows-header-right-menu ul, .pageflows-header-main  {
    gap: 5px;
}
.ios-page .pageflows-header.fixed,
.android-page .pageflows-header.fixed ,
.web-page .pageflows-header.fixed ,
.emails-page .pageflows-header.fixed  {
    left: 20px;
    right: 20px;
}
.pageflows-header-nav ul li a,
.userflow-menu ul li.userflow-menu-dropdown,
.filter-dropdown, .userflow-menu ul ul li a,
.userflow-right-menu .userflow-right-dropdown li a,
.pageflows-header-right-menu ul .user-dropdown li a {
    padding: 10px 10px;
    height: 30px;
    font-size: 10px;
    letter-spacing: 0.1em;
}
.pageflows-header-right-menu ul .user-dropdown.open {
    height: auto;
}
.pageflows-searchbar {
    padding: 0px 10px;
    gap: 9px;
    height: 38px;
}
.page-banner-text h1 {
    font-size: 28px;
    line-height: 40px;
}
.page-banner-text p {
    font-size: 16px;
    line-height: 22px;
}
.product-view-like {
  display: none;
}
.product-notpaid-content p {
    font-size: 13px;
    line-height: 18px;
}
.product-notpaid-content a {
    font-size: 12px;
    letter-spacing: 0em;
}
.mobile-navbar .main-navbar-menus ul.main-navbar {
    min-width: 780px;
    max-width: 100%;
}
.pagenotfound-description {
    max-width: 100%;
}

.pagenotfound-description p {
    font-size: 16px;
}

.pagenotfound-description .goto-honepage {
    font-size: 15px;
    gap: 5px;
}

.pagenotfound-description .goto-honepage svg {
    height: 8px;
}

.pagenotfound-block h1 {
    font-size: 30px;
    line-height: 40px;
}

.pagenotfound-block p {
    font-size: 16px;
    line-height: 24px;
}
.pagenotfound-block h1 br {
    display: none;
}
.userflow-products-main.desktop-web {
    grid-template-columns: 1fr;
}
.userflow-products-main.desktop-web .userflow-products-item .products-screenshot-item {
    height: 200px;
    align-items: center;
}
}
@media only screen and (max-width: 380px) {
.loaders {
    bottom: 30rem;
}
.pageflows-logo svg {
    width: 20px;
}

.pageflows-header-main {
    gap: 10px;
}

.pageflows-searchbar svg {
    width: 10px;
}

.pageflows-searchbar {
    height: 30px;
}

.pageflows-header-right-menu ul li a, .filter-navbar-main ul li a {
    font-size: 10px;
    letter-spacing: 0.01em;
}
.pageflows-searchbar input {
    width: 60px;
    font-size: 11px;
}
.pageflows-header-right-menu ul li .get-blog-menu a, .right-menus .get-blog-menu a {
    font-size: 10px;
}
.user-initials {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}
.user-login-menu img {
    width: 30px;
}
.filter-navbar-main ul {
    width: 430px;
}
.userflow-product-filter-column ul li a, .product-view-like span {
    font-size: 12px;
}
.userflow-product-filter-column ul li a span {
    font-size: 10px;
}
.filter-main-search input {
    font-size: 15px;
}
.filter-main-search {
    height: 38px;
}
.userflow-products-main {
    grid-template-columns: 1fr;
}
}