/*
Theme Name: GSheetConnector
Description:  GSheetConnector theme
Author: GSheetConnector
Author URI: https://gsheetconnector.com/
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');

html {
  scroll-behavior: smooth;    
}
html, body {
	  font-family: Inter, "Plus Jakarta Sans", sans-serif;
  color:vr(--body);	
}
p, ol li, ul li, span {
	color:vr(--body);	
}
h1, h2, h3, h4, h5, h6 {
	color:vr(--secondary);
}

.font-serif-i {
    font-family: "Instrument Serif", serif;
	  font-weight: 400;
	  font-style: italic;
    letter-spacing: -.01em;
}

::selection{
	background: #039436; /* Selection Background */
	color: #ffffff; /* Selected Text Color */
}

::-moz-selection{
	background: #039436;
	color: #ffffff;
}


:root {
  /* Brand */
  --primary: #0e8b32;  
  --secondary: #0f172a;
  --light-blue: #f1f5f9;
  --dark-green: #0b1a15;
  --white:#ffffff;
	

  /* Text */
  --body:#475569;
  --text-white: #fff;
  --text-dark: #0f172a;

  --btn-normal: #f5f5f5;
  --btn-normal-text :#1e293b;
  --btn-border-color:#cbd5e1;

  --text-light: #7d7d7d;
  --text-label: #1d2327;
  --text-gray: #475569;

  /* Background */
  --bg-light-yellow: #fdf2c5;
  --bg-deactivate: #ededed;
  --bg-success: #d0fae4;
  --bg-danger: #fad0d0;

  /* Border */
  --border-light: #e5e5e5;
  --border-green: #34d399;
  --border-normal: #e2e8f0;

}


/* Header Top Strip*/

#top-strip-offer {
	Color:var(--text-white); 
	margin:0; 
	padding:5px 0 0; 
	text-align:center;
	/*background: var(--dark-green);*/
	background: #833AB4;
background: linear-gradient(122deg,rgba(131, 58, 180, 1) 0%, rgba(244, 31, 40, 1) 0%, rgba(245, 158, 11, 1) 0%, rgba(249, 115, 22, 1) 100%);
}
#top-strip-offer a, #top-strip-offer a:hover {
	Color:var(--text-white); 
}
#top-strip-offer p {
	margin:0;
	padding:0;
	Color:var(--text-white); 
	font-size:14px;
	font-weight: 500;
}

.logged-in .fusion-sticky-container.fusion-sticky-transition {
	top:30px !important;
}


header .fusion-flex-content-wrap {
	margin:0 auto !important;
}
.fusion-sticky-container.fusion-sticky-transition {
	top:0px !important;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(16, 185, 129, 0.25);
}


/* Header CSS /////*/



.awb-menu {
	display: flex;
    justify-content: space-between;
	align-items: center;
}
.awb-menu__main-ul {
	justify-content: flex-start;
}
.awb-menu__main-li   {
    margin: 0 ;
}
.awb-menu_row .awb-menu__mega-wrap {
    top: 60px;
}

.awb-menu_row .menu-text {
    text-align: left;
}
.awb-menu__i_main img {
    width: 40px;
    max-height: inherit;
    margin-right: 0;
    margin-left: 0;
    margin-top: -7px;
}
.fusion-menu li.ninja-icon .awb-menu__i_main img {
	width:48px;
}

.awb-menu__mega-wrap .awb-menu__main-ul_row {
	width:100%;
}
.awb-menu_row .awb-menu__has-description .menu-text {
    line-height: 17px;
}
.awb-menu__main-background-active {
	border:none !important;
}
.awb-menu_icons-left .awb-menu__main-a {
     color: var(--secondary) !important;
	padding: 5px 20px !important;
    border-radius: 20px;
    font-weight: 500;
}
.awb-menu__main-li_regular:focus-within .awb-menu__main-a_regular,
.awb-menu__main-li_regular.current-menu-item .awb-menu__main-a_regular,
.awb-menu_icons-left .awb-menu__main-a:hover {
     color: var(--secondary) !important;
    /*padding: 5px 20px !important;*/
	background: none;
}

.awb-menu__mega-wrap .awb-menu__main-a {
	padding: 0 !important;
}

/* My Account New CSS */
.my-account {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0 44px 0 0;
    padding: 0;
}

.my-account li {
    position: relative;
}

.my-account-menu > a {
	display: flex;
	align-items: center;
	gap: 6px;
	background: #0E8B32;
	color: #FFFFFF;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.1px;
	border-style: solid;
	border-width: 1px 1px 1px 1px;
	border-radius: 50px 50px 50px 50px;
	padding: 12px 24px 12px 24px;
}

.my-account-menu > a:hover {
	background: #111827;
	color: #fff;
	border-color: #111827;
}

.my-account-menu .sub-menu {
	position: absolute;
	top: 120%;
	right: 0;
	left: 0;
	min-width: fit-content;
	background: #FFFFFF;
	border-radius: 14px;
	padding: 10px 5px;
	margin: 0;
	list-style: none;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 999;
	border: 1px solid #F1F1F1;
}

.my-account-menu:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.my-account-menu .sub-menu li a {
	display: block;
	padding: 7px 18px;
	color: #374151;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
}

.my-account-menu .sub-menu li a:hover {
    background: #f3f4f6;
    color: #374151;
    padding-left: 24px;
}

/* Cart Style */
.menu-cart a {
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2563eb;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}

/* Cart Count */
.menu-cart small {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #ef4444;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* My Account Cart */
.my-account li.menu-cart a {
	padding: 0;
    width: 28px;
    height: 28px;
	background:var(--primary) url(./images/menu-cart.svg) no-repeat center;
	background-size: 60%;
}
.my-account li.menu-cart a:hover {
	background:var(--primary) url(./images/menu-cart.svg) no-repeat center;
	background-size: 60%;
}

.menu-cart small {
	position: absolute;
    right: -16px;
    top: 6px;
    font-size: 11px;
	color:#333;
    font-weight: bold;
    background: var(--bg-light-yellow);
    padding: 0;
    width: 20px;
    height: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
}

/*.my-account li.my-account a {
	font-size:14px;
	font-weight: 500;
	color:var(--body);
	padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    background: var(--primary);
    border-radius: 50px;
    box-shadow: 0 3px 3px 1px rgba(5, 150, 105, 0.2);
}
.my-account li.my-account a:hover {
	color: var(--text-white);
    background: #047857;
}*/



/*////////////////////
///////////////// Mega Menu CSS ////////////////////*/
.menu-item-has-children.mega-menu-open > .awb-menu__mega-wrap {
	background:none !important;
}
.awb-menu__mega-wrap .fusion-flex-container .fusion-row.fusion-flex-content-wrap {
	background:#fff !important;
	box-shadow:0 30px 70px rgba(4,110,132,.15);
	max-width: 1430px !important;
}
.awb-menu__mega-wrap .fusion-flex-container .fusion-row .fusion-flex-column {
	margin-left: 0;
	margin-right: 0;
	background: #fff;
}


.fusion-footer .custom-menu-links, .wonderplugintabs-panel a div, .mega-menu-in .custom-menu-links  {
    display: none !important;
}

.fusion-megamenu-wrapper {
    width: 100vw !important;
    max-width: 100vw !important;
}
.fusion-megamenu {
    width: 100% !important;
}
.fusion-header .fusion-row {
    max-width: 100% !important;
    width: 100% !important;
}
.fusion-megamenu-wrapper {
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease;
}
.menu-item:hover .fusion-megamenu-wrapper {
    opacity: 1;
    visibility: visible;
}

/* Hide mega menu initially */
.fusion-megamenu-wrapper{
    transition: opacity .2s ease;
}

.awb-menu__mega-wrap{
    background:none !important;
    /*box-shadow:0 30px 70px rgba(4,110,132,.15);
    border-top:1px solid #e9e9e9;
    border-bottom:1px solid #e9e9e9;*/
}


.mega-menu-in ul {
	display:flex;
	gap:0px;
}
.mega-menu-in ul li {	
	width: 50%;
	margin: 0;
	padding:0;
	box-sizing: border-box;
}

.mega-menu-in.one-col ul li{
	width:100%;
}
.mega-menu-in.one-col ul li a {
	border-right:none;
}
.mega-menu-in.one-col ul li:last-child a {
	border-bottom: none;
}

.mega-menu-in ul li a {
    background: #f3f3f3;	
    border-right: 1px solid #dfdfdf;
	border-bottom: 1px solid #dfdfdf;
    border-radius: 0px !important;
}
/*
.mega-menu-in ul li a:hover {
	background: #eee !important;
}
*/
.mega-menu-in ul li:nth-child(2) a,
.mega-menu-in ul li:nth-child(4) a,
.mega-menu-in ul li:nth-child(6) a,
.mega-menu-in ul li:nth-child(8) a {
	border-right:none;
}
.mega-menu-in ul li:nth-child(7) a,
.mega-menu-in ul li:nth-child(8) a {
	border-bottom: none;
}

.mega-menu-in ul li.menu-badge a:after {
	position: absolute;
    top: -1px;
    right: 0;
    display: block;
    border-radius: 3px;
    font-size: 11px;
    color: #fff;
    background: #000;
    text-align: center;
    padding: 0px 5px;
    content: 'New';
    text-transform: uppercase;
    font-weight: bold;
    line-height: 19px;
}
.mega-menu-in ul li.menu-badge.new-b a:after { 
	background: #f73518;
}
/*
.mega-menu-in ul li.menu-badge.popular-b a:after { 
	background: #1e8b34;
	content:'popular';
}
*/



.mega-menu-in ul li .awb-menu__main-a:hover, 
.mega-menu-in .awb-menu__main-a {
/*    padding: 20px 20px 20px 0px !important;*/
    min-height: 90px;
    box-sizing: border-box;
	justify-content: flex-start !important;	
}

.awb-menu_icons-left .fusion-flex-link:hover {
	background: #ffffff;
	background: -webkit-linear-gradient(307deg, rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 100%);
	background: -o-linear-gradient(307deg, rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 100%);
	background: linear-gradient(37deg, rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 100%);
}


.mega-menu-in ul li a .menu-text_with-desc .awb-menu__description {
	color:var(--body) !important;
	font-weight: 400;
	padding-top: 5px;
	line-height: 17px;
}
.mega-menu-in ul li a .menu-text_with-desc {	
	color:var(--secondary) !important;
	font-weight: 600;
	font-size: 14px;
    line-height: 18px !important;
}
/*
.mega-menu-in ul li a:hover .menu-text_with-desc {
	color:var(--primary) !important;
}
*/

.menu-strip {
	position:absolute;
}

.mega-menu-in .awb-menu__i_main {
	left: 0;
}


.awb-menu_row .menu-text {
    display: flex;
	align-items: flex-start;
	font-size: 17px;
}
.awb-menu_row .awb-menu__has-description .menu-text {
	justify-content: flex-start;
}

.menu-title {
	border-bottom:1px solid #dfdfdf;
	padding-bottom: 12px; 
}

.menu-title h3 {
	margin:0;
	padding: 15px 0 0px;
	font-size: 14px;
	font-weight: 600;
	color:var(--primary);
	text-align: center;
}
.menu-title p {
	margin:0;
	padding: 0;
	font-size: 13px;
	text-align: center;
}


.contact-form-list::after {
	width:1px;
	height: 100%;
	background:#dfdfdf;
	content:'';
	position: absolute;
	right: 0;
	top:0;
	display: block;
}
.contact-form-list.none-sepretor::after {
	display: none;
}
.menu-item-has-children {
	position: relative;
}

.awb-menu__mega-wrap {
	display: none;
}


/* Hide mega menu before page fully loads */
.menu-item-has-children .awb-menu__mega-wrap{
	display: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	transition: opacity 0.35s ease,
				transform 0.35s ease,
				visibility 0.35s ease;
}

/* Show mega menu */
.menu-item-has-children.mega-menu-open > .awb-menu__mega-wrap{
	display: block;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.menu-bottom {
	text-align: center;
	font-size:11px;
}
.menu-bottom strong {
	color:var(--secondary);
	font-size: 14px;
}

.menu-bottom a.menu-btn {
	padding:8px 20px;
	background: var(--primary);
	color:#fff;
	font-size:14px;
	text-align: center;
	border-radius: 40px;
	display: inline-block;
}
.menu-bottom a:hover.menu-btn {
	background:var(--secondary);
}
.menu-bottom img {
	max-width:40%;
	margin-bottom: 5px;
}
.menu-bottom p {
	margin: 0;
    padding: 0;
    line-height: 18px;
    font-size: 14px;
}

.menu-bottom .trustpilot-detail {
	padding-top:15px;
	padding-bottom: 15px;
	font-size:14px;
}
.menu-bottom .trustpilot-detail strong {
	font-size:14px;
}


/* New Home Banner ///////////////////*/
.home-banner {
	text-align: center;
	position: relative;
	padding-top: 45px;
	padding-bottom: 30px;
}

.home-banner .fusion-builder-row {
	position: inherit;
}

.home-banner h1 {
	margin:10px 0 30px !important;
	padding:0;
	line-height: 75px !important;
	font-size:60px;
	font-weight: 800;
	text-align: center;
	color:var(--secondary);
}
.home-banner p.sub-line {
	font-size: 12px;
    text-align: center;
    background: #EFF6FF;
    color: #2563EB;
    display: inline-block;
    padding: 1px 20px 1px 12px;
    border-radius: 50px;
    font-weight: 600;
    margin: 0;
}

.home-banner h1 strong {
	color: var(--primary);
}

.home-banner h1 strong.hr-line {
	background: url(./images/hr-line-curve.png) no-repeat center bottom;
    background-size: 100% auto;
}

.home-banner p.desc {
	margin: 0 auto;
    padding: 0;
    color: #443e3e;
    font-size: 15px;
    line-height: 30px;
    font-weight: 500;
	max-width: 745px;
	margin-bottom: 37px;
}

.button-bar {
	display:flex;
	align-items: center;
	justify-content: center;
	gap:20px;
	padding: 30px 0;
	margin-bottom: 5px;
}
.button-bar.align-left {
	justify-content:flex-start;
}

.gsc-primary-btn {
	padding:10px 20px 10px 30px;
	font-size: 16px;
	font-weight: 600;
	color:var(--text-white);
	background: var(--primary);
	border-radius: 50px;
	box-shadow: 0 3px 3px 1px rgba(5,150,105,0.2);
}
.gsc-primary-btn:hover {
	color:var(--text-white);
	background: #047857;
}

.gsc-primary-btn svg {
	width: 15px;
    height: 15px;
    margin-left: 10px;
    position: relative;
    top: 2px;
}

.gsc-secondary-btn {
	padding:10px 30px 10px 30px;
	font-size: 16px;
	font-weight: 600;
	color:var(--btn-normal-text);
	background: var(--text-white);
	border-radius: 50px;
	border:1px solid var(--border-normal);
	box-shadow: 0 1px 2px 0 rgb(0,0,0,0.05);
}
.gsc-secondary-btn:hover {
	background: #f8fafc;
	color:var(--btn-normal-text);
	box-shadow: 0 1px 2px 0 rgb(0,0,0,0.05);
}

.rating-review-home-banner {
    border: 1px solid var(--border-normal);
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    padding: 3px 20px;
    font-size: 14px;
    gap: 8px;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}
.star-list {
	position:relative;
	top:2px;
}
.rating-review-home-banner svg {
	width:15px;
	height: 15px;
	fill:#fbbf24;
	stroke:#fbbf24;
}
.rating-info, .review-total {
	color:var(--btn-normal-text);
	font-weight: 600;
	padding: 0 5px;
}

.icon {
    width: 100%;
    height: 100%;
}

/* Home Banner icons */
.home-icon {
	box-shadow: 0 1px 2px 0 rgb(0,0,0,0.05);
	border:1px solid #e2e8f0;
	width: 40px;
	height: 40px;
	position: absolute;
    border-radius: 15px;
	box-sizing: border-box;
	z-index: 10;
}
.home-icon svg {
	width: 30px;
	height: auto;
}

.home-icon::before {
	width: 25px;
    height: 25px;
    content: '';
    display: block;
    left: 6px;
    top: 7px;
    position: absolute;
}

.i-cf7-home {
	left: 8%;
    top: 7px;
	background: #eff5ff;
}
.i-cf7-home::before {
	background: url(./images/plugin-logo/cf7.svg) no-repeat center;
	background-size: 100% auto;
}

.i-wpforms-home {
	left: -29px;
    top: 19%;
	background: #fff1dc;
}
.i-wpforms-home::before {
	background: url(./images/plugin-logo/wpforms.svg) no-repeat center;
	background-size: 100% auto;
}


.i-gravity-home {
	left: 7%;
    top: 35%;
	background: #fff1ed;
}
.i-gravity-home::before {
	background: url(./images/plugin-logo/gravityforms.svg) no-repeat center;
	background-size: 100% auto;
}


.i-formidable-home {
	left: -5%;
    top: 60%;
	background: #f7f7f7;
}
.i-formidable-home::before {
	background: url(./images/plugin-logo/formidableforms.svg) no-repeat center;
	background-size: 100% auto;
}

.i-ninja-home {
	left: 214px;
    top: 73%;
	background: #ffebeb;
}
.i-ninja-home::before {
	background: url(./images/plugin-logo/ninjaforms.svg) no-repeat center;
	background-size: 100% auto;
}

.i-forminator-home {
	left: 27px;
    top: 84%;
	background: #ebf1ff;
}
.i-forminator-home::before {
	background: url(./images/plugin-logo/forminator.svg) no-repeat center;
	background-size: 100% auto;
}

.i-fluentform-home {
	left: 8%;
    top: 53%;
	background: #eafdff;
}
.i-fluentform-home::before {
	background: url(./images/plugin-logo/fluentform.svg) no-repeat center;
	background-size: 100% auto;
}


.i-avada-home {
	right: 0;
    top: 5%;
	background: #eaffed;
}
.i-avada-home::before {
	background: url(./images/plugin-logo/avada.svg) no-repeat center;
	background-size: 100% auto;
}

.i-divi-home {
	right: -82px;
    top: 21%;
	background: #f5eaff;
}
.i-divi-home::before {
	background: url(./images/plugin-logo/divi.svg) no-repeat center;
	background-size: 100% auto;
}

.i-elementor-home {
	right: 13%;
    top: 34%;
	background: #fbeaff;
}
.i-elementor-home::before {
	background: url(./images/plugin-logo/elementor.svg) no-repeat center;
	background-size: 100% auto;
}


.i-woo-home {
	right: 13%;
    top: 59%;
	background: #fbeaff;
}
.i-woo-home::before {
	background: url(./images/plugin-logo/woo.svg) no-repeat center;
	background-size: 100% auto;
}

.i-edd-home {
	right: 1%;
    top: 50%;
	background: #d0e3fe;
}
.i-edd-home::before {
	background: url(./images/plugin-logo/edd.svg) no-repeat center;
	background-size: 100% auto;
}


.i-cart {
	left: 19px;
    top: 10%;
	background: #ecfdf5;
}
.i-doc {
	right: 1%;
	top:5%;
	background: #f0f9ff;
}
.i-drive {
	left: 10%;
    bottom: 15%;
	background: #fff6ed;
}
.i-enrgy {
	right: 15%;
	bottom:2%;
	background: #fff1f1;
}
.i-layout {
	left: 38px;
	top:40%;
	background: #fdf2f8;
}
.i-send {
	right: 38px;
	top:40%;
	background: #f5f3ff;
}
.i-email {
	left: 30%;
    top: -34px;
	background: #ecfeff;
}
.i-category {
	left: 29%;
    bottom: -76px;
	background: #f6fee7;
}

/* Statics Box /////*/
.statics-box {
	color:var(--body);
	text-align: center;
	font-size:14px;
}

.statics-box strong {
	color:var(--secondary);
	text-align: center;
	font-size:28px;
}

.excellent-review{
	background:#ecfdf5;
	border:1px solid #d1fae5;
	padding: 10px;
	font-size:12px;
	text-align: center;
	border-radius: 15px;
}
.excellent-review svg {
	width:15px;
	height: 15px;
	fill:var(--primary);
	stroke:var(--primary);
}
.review-title {
	font-size:18px;
	font-weight: 600;
	color:var(--primary);
}


/* Hero Image HTML CSS */
/* MAIN WRAPPER */
.sync-wrapper{
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 20px 0px 0;
}

/* BACKGROUND GLOW */
.sync-wrapper::before{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    background:radial-gradient(circle, rgb(0 184 121 / 0%) 0%, rgba(0, 184, 121, 0) 70%);
    left:-120px;
    bottom:-150px;
    z-index:0;
}

.sync-wrapper::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle, rgb(0 184 121 / 0%) 0%, rgba(0, 184, 121, 0) 70%);
    right:-120px;
    top:-150px;
    z-index:0;
}

/* TABLE CARD */

.sheet-card{
    position:relative;
    z-index:2;
    width: 60%;
	margin:0 auto;
    background:#fff;
    border-radius:34px;
    overflow:hidden;
    border:1px solid #dfe8e4;
    box-shadow:
        0 10px 40px rgba(0,0,0,.05),
        0 3px 10px rgba(0,0,0,.03);
}

/* TOP BAR */
.sheet-top{
    padding:0px 26px 5px;
    border-bottom:1px solid #edf1ef;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.menu{
    display:flex;
    gap:26px;
    color:#687076;
    font-size:14px;
    font-weight:500;
}
.live-sync{
    display:flex;
    align-items:center;
    gap:3px;
    font-size:14px;
    color:#16a36a;
    font-weight:600;
}
.live-sync span{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#1fd184;
    display:block;
}

/* TABLE */
.sheet-card table{
    width:100%;
    border-collapse:collapse;
}

.sheet-card thead{
    background:#039436;
}

.sheet-card thead th{
    padding:5px 20px;
    color:#fff;
    font-size:12px;
    text-align:center;
    font-weight:700;
    border-right:1px solid rgba(255,255,255,.18);
}

.sheet-card thead th:last-child{
    border-right:none;
}

.sheet-card tbody td{
    padding: 5px 20px;
    font-size: 11px;
    color:#111827;
    border-right:1px solid #edf1ef;
    border-bottom:1px solid #edf1ef;
}

.sheet-card tbody tr:last-child td{
    background:#eef9f4;
}

.sheet-card tbody td:last-child{
    border-right:none;
}

.sheet-card .number{
    width:70px;
    color:#7b8794;
}

.sheet-card .amount{
    font-weight:700;
}

.sheet-card .green-text{
    color:#0d8f5b;
    font-weight:600;
}

/* REAL TIME CARD */

.realtime-box{
    position:absolute;
        top: -5px;
    left: 19%;
    transform:translate(-20%,-55%);
    background:#fff;
    border-radius: 20px;
    padding: 8px 22px 12px 12px;
    display:flex;
    align-items:center;
    gap:18px;
    box-shadow:
        0 10px 35px rgba(0,0,0,.08),
        0 2px 10px rgba(0,0,0,.04);
    z-index:5;
	rotate: -5deg;
}

.realtime-icon{
    width: 35px;
    height: 35px;
    background:#e7f8ef;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.realtime-icon svg{
    width:24px;
    height:24px;
    stroke:#00a86b;
}

.realtime-content small{
    display:block;
    color:#3e4a46;
    font-size: 13px;
    font-weight:800;
    letter-spacing:1px;
    margin-bottom:0px;
}

.realtime-content h3{
    font-size:14px;
    color:#111827;
    font-weight:500;
	text-align: left;
	margin: 0 !important;
    padding: 0 !important;
    line-height: 14px !important;
}

/* CONNECTED BOX */

.connected-box{
    position:absolute;
        right: 13%;
    bottom: -57px;
    background:#fff;
    border-radius: 16px;
    padding: 10px 18px;
    display:flex;
    align-items:center;
    gap:18px;
    box-shadow:
        0 10px 35px rgba(0,0,0,.08),
        0 2px 10px rgba(0,0,0,.04);
        z-index: 5;
    rotate: 3deg;
	border:1px solid #fef3c7;
}

.connected-icon{
    width: 35px;
    height: 35px;
    background:#ffd83d;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.connected-icon svg{
    width:24px;
    height:24px;
    stroke:#925500;
}

.connected-content small{
    display:block;
    color:#c56a00;
   font-size: 12px;
   font-weight: 500;
    letter-spacing: 0;
    margin-bottom: 0;
    text-align: left;
}

.connected-content h4{
    font-size: 13px;
    color: #111827;
    font-weight: 700;
    margin: 0 !important;
    padding: 0;
	text-align: left;
}

/* About Time line /////*/
.timeline-card {
	background: #fff;
	border:1px solid #a7f3d0;
	box-shadow: 0 10px 35px rgba(0,0,0,.08),
       0 2px 10px rgba(0,0,0,.04);
        z-index: 5;
	padding: 25px;
	border-radius: 16px;
}
.timeline-header{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:42px;	
}

.logo-box{
    width:64px;
    height:64px;
    border-radius:18px;
    background:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.logo-box svg{
    width:30px;
    height:30px;
    stroke:#fff;
}

.brand-title{
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    color: #08142d;
    margin-bottom: 0;
}

.brand-subtitle{
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--primary);
}

/* TIMELINE */

.timeline-list{
    display:flex;
    flex-direction:column;
    gap:25px;
	padding-bottom: 30px;
}

.timeline-item{
    display:grid;
    grid-template-columns:50px 1fr auto;
    align-items:center;
    column-gap:22px;
}

.timeline-year{
    font-size:18px;
    font-weight:700;
    color:var(--primary);
}

.timeline-line{
    height:1px;
    background:#d9dde3;
    width:100%;
}

.timeline-content{
    font-size:15px;
    font-weight:500;
    color:#0b1730;
    text-align:right;
    max-width:430px;
}

/* BADGE */
.timeline-badge{
    position:absolute;
    right:18px;
    bottom:-20px;
    background:#ffc21c;
    color:#2d1c00;
    font-size: 14px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(255,193,7,0.35);
	rotate: 5deg;
}
.stats-wrapper{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

/* CARD */

.stat-card{
    min-width:160px;
    background:#fff;
    border:1.5px solid #c8f1dd;
    border-radius:18px;
    padding:18px 18px 14px;
    transition:.3s ease;
}

.stat-card:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 24px rgba(0,0,0,0.05);
}

/* NUMBER */

.stat-number{
    font-size:24px;
    line-height:1;
    font-weight:800;
    color:#07162f;
    margin-bottom:8px;
}

/* TEXT */

.stat-text{
    font-size:16px;
    font-weight:500;
    color:#5b6472;
}

@media(max-width:768px){

    .stats-wrapper{
        flex-direction:column;
    }

    .stat-card{
        width:100%;
    }

}



/* RESPONSIVE */

@media(max-width:768px){

.timeline-card{
	padding:28px 22px 45px;
}

.brand-title{
	font-size:28px;
}

.brand-subtitle{
	font-size:16px;
}

.timeline-item{
	grid-template-columns:50px 1fr;
	row-gap:14px;
}

.timeline-line{
	display:none;
}

.timeline-content{
	grid-column:1 / -1;
	text-align:left;
	max-width:100%;
	font-size:20px;
}

.timeline-year{
	font-size:24px;
}

.timeline-badge{
	font-size:18px;
	padding:12px 18px;
}

}


/* Featured Brands //////////////////*/
.featured-brands {
	background:#f8fafc;
	padding: 40px 0;
	border-bottom:1px solid #e5e7eb;
}
.featured-brands h3 {
	margin:0 0 30px;
	color:var(--secondary);
}
.featured-well-list {
	margin:0;
	padding: 0;
	list-style: none;
	display: flex;
	overflow: hidden;
	gap:15px;
}
.featured-well-list li {
	padding:10px 50px;
	font-size: 0px;
	font-weight: 600;
	color:var(--secondary);
	border:1px solid #e5e5e5;
	border-radius: 15px;
	background: #fff;
	height: 58px;
}
.featured-well-list li:nth-child(1)::before {
	background:url(./images/featured-on/wp-mayour.svg) no-repeat center top;
	background-size: 100% auto; 
}
.featured-well-list li:nth-child(2)::before {
	background:url(./images/featured-on/wplift.svg) no-repeat center top;
	background-size: 100% auto; 
}
.featured-well-list li:nth-child(3)::before {
	background:url(./images/featured-on/instawp.svg) no-repeat center top;
	background-size: 100% auto; 
}
.featured-well-list li:nth-child(4)::before {
	background:url(./images/featured-on/wp-hive.svg) no-repeat center top;
	background-size: 100% auto; 
}
.featured-well-list li:nth-child(5)::before {
	background:url(./images/featured-on/common-ninja.svg) no-repeat center top;
	background-size: 100% auto; 
}
.featured-well-list li:nth-child(6)::before {
	background:url(./images/featured-on/wpfounders.svg) no-repeat center top;
	background-size: 100% auto; 
}
.featured-well-list li:nth-child(7)::before {
	background:url(./images/featured-on/the-wp-weekly.svg) no-repeat center top;
	background-size: 100% auto; 
}

.featured-well-list li:nth-child(8)::before {
	background:url(./images/featured-on/website-planet.svg) no-repeat center top;
	background-size: 100% auto; 
}
.featured-well-list li:nth-child(9)::before {
	background:url(./images/featured-on/wp-glob.svg) no-repeat center top;
	background-size: 100% auto; 
}
.featured-well-list li:nth-child(10)::before {
	background:url(./images/featured-on/formidable-forms-logo.svg) no-repeat center top;
	background-size: 100% auto; 
}
.featured-well-list li:nth-child(11)::before {
	background:url(./images/featured-on/producthunt.svg) no-repeat center top;
	background-size: 100% auto; 
}
.featured-well-list li:nth-child(12)::before {
	background:url(./images/featured-on/ranking.svg) no-repeat center top;
	background-size: 100% auto; 
}

.featured-well-list li::before {	
	content:'';
	width: 100px;
	height: 45px;
	display: block;
}


/* heading Style 01 */

.heading-style-one.align-left,
.heading-style-two.align-left {
	text-align: left;
}
.heading-style-one.align-center,
.heading-style-two.align-center {
	text-align: center;
}

.heading-style-one p.sub-line {
	font-size:14px;
	font-weight: 600;
	color:var(--primary);
}
.heading-style-one h3 {
	margin: 0 0 10px !important;
	padding: 0;
	font-size:48px;
	line-height: 52px;
	font-weight: 800;
	color:var(--secondary);
}
.heading-style-one h3 strong {
	color:var(--primary);
}

.heading-style-one ul {
	margin:0;
	padding:0;
	list-style: none;
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap:10px;
}
.heading-style-one ul li {
	margin:0;
	padding:0 0 0 10px;
	list-style: none;
	position: relative;
	font-size: 13px;
}

.heading-style-one ul li::before {
	width:5px;
	height: 5px;
	background: var(--primary);
	border-radius: 40px;
	content:'';
	display: block;
	position: absolute;
	left: 0;
	top:10px;
}


/* heading Style 02 */
.heading-style-two {
	text-align:center;
}

.heading-style-two p.sub-line  {
/*    background: #e6eef9;
    color: #2563EB;*/
	color:#000;
    border-radius: 999px;
    font-size: 12px;
    gap: 8px;
	font-weight: 500;
    letter-spacing: .08em;
    padding: 6px 14px 15px 14px;
    text-transform: uppercase;
	display: inline-block;
	background: url(./images/subline-hr.png) no-repeat center bottom;
	
}

/*
.heading-style-two p.sub-line {
	font-size:14px;
	font-weight: 600;
	color:var(--primary);
}
*/
.heading-style-two h3 {
	margin: 0 0 10px !important;
	padding: 0;
	font-size: 36px;
    line-height: 47px !important;
	font-weight: 800;
	color:var(--secondary);
}
.heading-style-two h3 em {
	color:var(--primary);
	font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: italic;
}
.heading-style-two h3 strong {
	color:var(--primary);
	font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: italic;
}



/* Product List ///////////*/

.plugin-filter {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.plugin-filter button {
  padding: 8px 16px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
	display: flex;
    align-items: center;
    gap: 10px;
	border-radius: 50px;
	position: relative;
}
.plugin-filter button span {
	background:var(--primary);
	border-radius: 50px;
	font-size: 11px;
	color:#fff;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;	
}
.plugin-filter button.active  span {
	background:#fff;
	color:var(--secondary);
}
.plugin-filter button svg {
	stroke:var(--primary);
}
.plugin-filter button.active svg {
	stroke:#fff;
}


.plugin-filter button.active {
  background:var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* IMPORTANT: hide logic */
.plugin-box-outer {
  transition: all 0.3s ease;
}

.plugin-box-outer.hide {
  display: none !important;
}


.plugin-box {
	border:1px solid var(--border-light);
	background: #fff;
	border-radius: 16px;
	animation-duration: .3s;
	transition-duration: .15s;
    transition-property: all;
	margin: 0 10px 0px;
	
}
.plugin-box:hover {
	border-color:var(--border-green);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05),
     0 0 0 1px rgba(16, 185, 129, 0.15);
}

span.free, span.top, span.hot, span.best {
    padding: 2px 4px;
    color: #fff;
    margin-left: 5px;
    margin-top: 2px;
    border-radius: 2px;
    height: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block ! IMPORTANT;
    vertical-align: middle;
    line-height: 17px;
    transform: rotate(3deg);
	position: absolute;
    right: -7px;
    border-radius: 3px;
    top: -10px;
}
span.top {
    background-color: #0b1a15;
    color: #fff;
}
span.top:before {
    border-right-color: #0b1a15;
}
span.hot {
    background-color:#c93232;
}
span.hot:before {
    border-right-color: #c93232;
}
span.best {
    background-color: #059669;
}
span.best:before {
    border-right-color: #059669;
}

.strip {
    color: #333;
    border: 1px solid #ccc;
    background: none;
    border-radius: 0;
    font-size: 11px;
    font-weight: 600;
    position: absolute;
    right: -17px;
    top: 5px;
    rotate: 31deg;
    text-align: center;
    width: 124px;
    padding-left: 15px;
}

.strip-popular {
    color: #c2410c;
    border: 1px solid #fed7aa;
    background: #ffedd5;
}
.strip-new {
    color: #16782d;
    border: 1px solid #8abe96;
    background: #e1f5ea;
}
.strip-offer {
    color: #ee0504;
    border: 1px solid #d69090;
    background: #ffecec;
}

.most-popular {
	color: #c2410c;
    border: 1px solid #fed7aa;
    background: #ffedd5;
    border-radius: 25px;
    font-size: 11px;
    padding: 0px 15px;
    font-weight: 600;
    position: absolute;
    right: 15px;
    top: 15px;
}
.new-tag {
	color: #047857;
    border: 1px solid #a7f3d0;
    background: #d1fae5;
    border-radius: 25px;
    font-size: 11px;
    padding: 0px 15px;
    font-weight: 600;
    position: absolute;
    right: 15px;
    top: 15px;
}

.plugin-box .pro-img {
	background:var(--light-blue);
	padding:0;
	position: relative;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
	max-height: 210px;
	overflow: hidden;
}
.plugin-box .pro-img p {
	margin: 0;
	padding: 0;
}

.plugin-box .pro-img img {
	object-fit: contain;
	max-width: 100%;
	max-height: 100%;
	transform: scale(0.8);
	transition: transform 0.4s ease;
}
.plugin-box:hover .pro-img img {
	 transform: scale(0.85);
}
.plugin-box h3 {
	margin:20px 25px 15px !important;
	padding:0;
	font-size:18px;
	color:var(--secondary);
	min-height: 45px;
}
.plugin-box p.plugin-desc {
	margin:0 25px 15px;
	padding:0;
	font-size:14px;
	color:var(--body);
	min-height: 80px;
}

.action-btn {
	border-top: 1px solid #e5e5e5;
    margin: 15px 25px 15px;
    padding: 10px 0 0;
	display: flex;
	align-items: center;
    justify-content: space-between;
}
.action-btn-spacer .btn-bar {
	padding: 5px 0;
	display: flex;
	align-items: center;
    justify-content: space-between;
	width: 100%;
}
.action-btn-spacer .btn-bar a {
	padding:3px 34px 3px 14px;
}

.action-btn2 {
	position:relative;
}
.action-btn2 p {
	margin:0;
	padding: 0;
	line-height: inherit;
}
.action-btn2 .buy-btn {
	position: absolute;
	right: 0;
	bottom:0;
	opacity: 0;
	transition: 0.5s;
    height: 31px;
    line-height: 5px;
    display: flex;
    align-items: center;
}
.plugin-box:hover .action-btn2 .buy-btn {
	opacity: 1;
	min-height: 20px;
}
.plugin-box:hover .rating {
	opacity: 0;
}

.action-btn2 .rating {
	font-weight:600;
	opacity: 1;
	transition: 0.5s;
}
.action-btn2 .rating strong {
	color:#ffb608;
}

.total-install {
	font-size: 11px;
	line-height: 16px;
	text-transform: uppercase;
}
.total-install strong {
	font-size: 14px;
	color:var(--secondary);
}
 

.action-btn-new .buy-btn {
    height: 32px;
    padding: 2px 34px 4px 20px;
}
.rating-new {
	position:relative;
}
 
.rating-new .star-rating {
	font-size: 12px;
    background: url(./images/gsc-star-rating.svg) no-repeat right top;
    background-size: 80%;
    width: 87px;
    height: 0;
    text-align: right;
    padding-top: 11px;
    margin: -17px 0 0 0;
}
.action-btn-new  p,
.action-btn-new .total-install {
	display: none;
}
.action-btn-new:hover .total-install {
	position: absolute;
    right: 0;
    top: -18px;
    background: #fff;
    display: block;
    width: 111px;
	text-align: right;
}


.plugin-box .price {
	font-size:12px;
	color:var(--body);
}
.plugin-box .price strong{
	font-size:20px;
	color:#000;
}
.plugin-box .price strong s {
	font-weight:100;
	font-size: 15px;
	color:#888;
}

.demo-btn {
	font-size:12px;
	font-weight: 600;
	color:var(--secondary);
	border:1px solid var(--btn-border-color);
	border-radius: 80px;
	padding:7px 34px 7px 14px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.1);
	position: relative;
}
.demo-btn:hover {
	color:var(--secondary);
	background: var(--btn-normal);
}
.demo-btn::after {
	content: '';
    background: url(./images/demo-icon.svg) no-repeat right top;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 11px;
    top: 7px;
    display: inline-block;
    background-size: 100%;
}

.buy-btn {
	font-size:12px;
	font-weight: 600;
	color:var(--text-white);
	border:1px solid var(--secondary);
	border-radius: 80px;
	padding:7px 34px 7px 14px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.1);
	background: var(--secondary);
	position: relative;
}
.buy-btn:hover {
	color:var(--text-white);
	background: #1e293b;
}
.buy-btn::after {
	content: '';
    background: url(./images/buy-icon.svg) no-repeat right top;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 11px;
    top: 7px;
    display: inline-block;
    background-size: 100%;
}


/* Feature List Block */
.common-feature {}
.common-feature .feature-col:nth-child(18) .feature-list-box .feature-icon, 
.common-feature .feature-col:nth-child(15) .feature-list-box .feature-icon, 
.common-feature .feature-col:nth-child(12) .feature-list-box .feature-icon, 
.common-feature .feature-col:nth-child(10) .feature-list-box .feature-icon, 
.common-feature .feature-col:nth-child(7) .feature-list-box .feature-icon, 
.common-feature .feature-col:nth-child(4) .feature-list-box .feature-icon, 
.common-feature .feature-col:nth-child(1) .feature-list-box .feature-icon    {
	color: rgb(209, 250, 229);
    background: linear-gradient(135deg, rgb(11, 26, 21), rgb(37, 59, 51));
}
.common-feature .feature-col:nth-child(19) .feature-list-box .feature-icon, 
.common-feature .feature-col:nth-child(16) .feature-list-box .feature-icon, 
.common-feature .feature-col:nth-child(13) .feature-list-box .feature-icon, 
.common-feature .feature-col:nth-child(11) .feature-list-box .feature-icon, 
.common-feature .feature-col:nth-child(8) .feature-list-box .feature-icon, 
.common-feature .feature-col:nth-child(5) .feature-list-box .feature-icon, 
.common-feature .feature-col:nth-child(2) .feature-list-box .feature-icon    {
	color: rgb(124, 45, 18);
    background: linear-gradient(135deg, rgb(253, 230, 138), rgb(251, 191, 36));
}
.common-feature .feature-col:nth-child(20) .feature-list-box .feature-icon, 
.common-feature .feature-col:nth-child(17) .feature-list-box .feature-icon, 
.common-feature .feature-col:nth-child(14) .feature-list-box .feature-icon, 
.common-feature .feature-col:nth-child(11) .feature-list-box .feature-icon, 
.common-feature .feature-col:nth-child(9) .feature-list-box .feature-icon, 
.common-feature .feature-col:nth-child(6) .feature-list-box .feature-icon, 
.common-feature .feature-col:nth-child(3) .feature-list-box .feature-icon    {
	color: rgb(6, 95, 70);
    background: linear-gradient(135deg, rgb(209, 250, 229), rgb(167, 243, 208));
}

.feature-list-box {
	border:1px solid var(--border-light);
	background: var(--text-white);
	border-radius: 16px;
	animation-duration: .3s;
	transition-duration: .15s;
    transition-property: all;
	margin: 0 10px 0px;
	padding: 25px;
    height: 100%;
    min-height: 200px;
	
}
.feature-list-box:hover {
	border-color:var(border-green);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05),
     0 0 0 1px rgba(16, 185, 129, 0.15);
}
.feature-list-box h3 {
	margin:20px 0 10px !important;
	padding:0;
	font-size:15px;
	color:var(--secondary);
}
.feature-list-box p {
	margin:0;
	padding:0;
	font-size:13px;
	line-height: 18px;
}
.feature-list-box .feature-icon svg {
	width:20px;
	height: 20px;
}
.feature-list-box .feature-icon {
	background:#dcfce7;
	color: #059669;
	border-radius: 8px;
	width: 44px;
	height: 44px;
	display:flex;
	justify-content: center;
	align-items: center;
	transform: scale(1);
	transition: transform 0.4s ease;
}
.feature-list-box:hover .feature-icon {
	transform: scale(1.1);
}

/* FAQ CSS */
#accordian-1 .fusion-panel {
    border-color: #e2e8f0;
    border-width: 1px;
    background-color: #ffffff;
    border-radius: 12px;
   color: var(--secondary);
}
#wrapper .fusion-faqs-wrapper .fusion-accordian .panel-title a.active {
	 color: var(--secondary) !important;
}

.fusion-accordian #accordian-1 .panel-title a:hover .awb-icon-plus:before,
.fusion-accordian #accordian-1 .panel-title a:hover .fa-fusion-box:before,
.fusion-accordian #accordian-1 .panel-title a .fa-fusion-box:before {
	color:#737373 !important;
	content:'\f107';
	font-family: awb-icons !important;
}
.fusion-accordian #accordian-1 .panel-title .active .fa-fusion-box:before {
	color:#737373;
	content:"\f106";
}
#accordian-1 .fusion-panel:hover, #accordian-1 .fusion-panel.hover {
	background:#f8fafc !important;
}


.fusion-accordian #accordian-1 .toggle-content,
.fusion-accordian #accordian-1 .toggle-content li {
    font-size: 13px;
	font-weight: normal;
	background: #fff;
	color:#475569;
}

#wrapper .fusion-faqs-wrapper .fusion-accordian .panel-title a {
	color: var(--secondary);
	font-weight: 600;
	font-size: 14px;
}

.fusion-accordian #accordian-1 .panel-title a:hover, .fusion-accordian #accordian-1 .panel-title a.hover {
	font-weight: 600;
	background: #fff;
	color:#475569 !important;
	border-radius: 12px;
}

.fusion-accordian #accordian-1 .toggle-content h3,
.fusion-accordian #accordian-1 .toggle-content h4 {
	font-size:13px;
}

.fusion-accordian #accordian-1 .toggle-content {
	padding: 20px 35px 0;
	background: #fff;
}
.fusion-accordian #accordian-1 .panel-title a .fa-fusion-box:before {
    font-size: 18px;
}

/* Support Box */
.support-box {
	border:1px solid #e2e8f0;
	background: var(--white);
	padding: 25px;
	border-radius: 15px;
}
.support-box .support-member {
	margin:0 0 10px;
	padding:0;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.support-box strong {
	color:var(--secondary);
}

.support-box .support-member li {
	margin:0 0 0 -8px;
	padding:0;
	font-size:14px;
	font-weight: 600;
	color:#fff;
	list-style: none;
	border-radius:50px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background:#16a34a;
	border:2px solid #fff;
}
.support-box .support-member li:nth-child(2) {
	background:#0284c7;
}
.support-box .support-member li:nth-child(3) {
	background:#ea580c;
}
.button-chat {
	display:flex;
	justify-content: flex-start;
	gap:8px;
}
.button-chat a {
	padding: 5px 25px 5px 45px;
	font-size:13px;
	font-weight: 600;
	border-radius: 40px;
	position: relative;
}
.button-chat a.btn-support {
	background: var(--primary);
	border:none;
	color:var(--text-white);
}
.button-chat a:hover.btn-support {
	background: #0c762a;
}
.button-chat a.btn-chat {
	background: var(--white);
	border:1px solid var(--border-light);
	color:#171717;
}
.button-chat a:hover.btn-chat {
	background: var(--btn-normal);
	border:1px solid var(--border-light);
}
.button-chat a.btn-support::before {
	content:'';
	background: url(./images/chat-icon-1.svg) no-repeat left top;
	background-size: 100%;
	width: 20px;
	height: 20px;
	position: absolute;
	left: 13px;
    top: 8px;
	display: block;
}
.button-chat a.btn-chat::before {
	content:'';
	background: url(./images/chat-icon-3.svg) no-repeat left top;
	background-size: 100%;
	width: 20px;
	height: 20px;
	position: absolute;
	left: 16px;
    top: 6px;
	display: block;
}

/* Action Banner /////////////*/
.action-banner {
	color:#fff;
	padding: 50px 45px;
	border-radius: 15px;
	background: #833AB4;
	text-align: center;
	background: linear-gradient(122deg, rgba(131, 58, 180, 1) 0%, rgba(244, 31, 40, 1) 0%, rgba(7, 145, 96, 1) 0%, rgba(20, 129, 62, 1) 100%, rgba(252, 176, 69, 1) 100%);
}

.action-banner h2 {
	margin: 10px 0 15px;
	font-size:48px;
	color:var(--text-white);
}
.action-banner p.desc {
	margin: 10px 0;
	font-size:18px;
	color:var(--text-white);
	opacity: 0.85;
}
.action-bar {
	display:flex;
	align-items: center;
	justify-content: center;
	gap:8px;
}
.action-bar a {
	padding: 8px 25px 8px 25px;
	font-size:15px;
	font-weight: 600;
	border-radius: 40px;
	position: relative;
}
.action-bar a.btn-buynow {
	padding: 9px 45px 9px 25px;
	background: var(--white);
	border:none;
	color:#047857;
}
.action-bar a:hover.btn-buynow {
	color:#047857;
	background: rgba(255,255,255,0.85);
}
.action-bar a.btn-pricing {
	background: none;
	border:1px solid var(--white);
	color:var(--text-white);
}
.action-bar a:hover.btn-pricing {
	background: rgba(255,255,255,0.15);
	border:1px solid var(--white);
}
.action-bar a.btn-buynow::after {
	content:'';
	background: url(./images/arrow-right-green.svg) no-repeat left top;
	background-size: 100%;
	width: 20px;
	height: 20px;
	position: absolute;
	right: 15px;
    top: 12px;
	display: block;
}


/* Review Home ///////////////////*/
.reviews-list-home {
	margin:0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.reviews-list-home li {
	margin:0 10px;
	padding: 25px;
	font-size: 13px;
	line-height: 22px;
	list-style: none;
	max-width: 350px;
	height: 350px;
	background: var(--white);
	border-radius: 15px;
	border:1px solid #e2e8f0;
}
p.review-desc {
	font-size: 14px;
	min-height: 150px;
}

.review-header {
	display:flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 20px;
}
.review-header .i-quote {
	width: 24px;
	height: 24px;
	background: url(./images/review-quote.svg) no-repeat left top;
	background-size: 100%;
	display: block;
}
.review-header .i-star {
	width: 71px;
    height: 24px;
    background: url(./images/review-star.svg) repeat-x left top;
    display: block;
    background-size: 14px;
}

.review-footer {
	border-top:1px solid var(--light-blue);
	padding-top: 20px;
	display: flex;
    align-items: start;
    justify-content: space-between;
}
.review-name {
	display: flex;
    align-items: start;
    justify-content: flex-start;
    width: 185px;
    text-align: left;
}
.review-name p {
	line-height:16px;
	text-overflow: ellipsis;
	overflow: hidden;
	font-size: 14px;
	color:#0f172a;
	font-weight: 600;
}
.review-name span {
	width:40px;
	height: 40px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 60px;	
	margin-right: 10px;
	background: #833AB4;
	background: linear-gradient(122deg, rgba(131, 58, 180, 1) 0%, rgba(244, 31, 40, 1) 0%, rgba(47, 200, 137, 1) 0%, rgba(20, 129, 62, 1) 100%, rgba(29, 175, 93, 1) 100%);
}
.review-list-home li .review-name p {
	font-size: 14px;
	font-weight: 600;
	text-align:left;
	width: 120px;
	min-height: inherit;
	color:var(--secondary);
	
}
.review-name p span {
	width: inherit;
	height: inherit;
	background: none;
	font-size: 11px;
	color:#64748b;
	text-align: left;
    display: block;
    font-weight: 300;
	padding-top: 5px;
}

.web-link {
	color:#047857;
	background: #ecfdf5;
	border-radius: 30px;
	font-size: 11px;
	font-weight: 600;
	padding: 3px 10px;
	text-transform: uppercase;
}

/* Home Blog Section //////////////////*/

.gsc-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gsc-blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.3s;
	border:1px solid #e2e8f0;
}

.gsc-blog-card:hover {
    transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15),
     0 0 0 1px rgba(16, 185, 129, 0.15);
}
.gsc-blog-image {
	overflow: hidden;
}
.gsc-blog-image img {
    width: 100%;
	transform: scale(1);
	transition: transform 0.4s ease;
    display: block;
}
.gsc-blog-card:hover img {
	transform: scale(1.05);
}

.gsc-blog-content {
    padding: 20px;
}

.gsc-blog-date {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 10px;
	display: flex;
	align-items: center;
}
.gsc-blog-date svg {
	width:14px;
	height: 14px;
	margin-right: 5px;
}

.gsc-blog-title {
    font-size: 18px;
    margin-bottom: 12px;
}

.gsc-blog-title a {
    text-decoration: none;
    color: #0f172a;
	height: 49px;
	font-size: 18px;
	margin: 0 0 20px;
	display: -webkit-box;
    -webkit-line-clamp: 2;   
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gsc-blog-title a:hover {
    color: #047857;
}

.gsc-read-more {
    font-size: 14px;
    color: #047857;
    text-decoration: none;
    font-weight: 600;
	text-align: right;
	display: flex;
	justify-content: flex-start;
    align-items: center;
}
.gsc-read-more-right {
	justify-content: flex-end;
}

.gsc-read-more:hover {
    color:#047857;
}
.gsc-read-more svg {
	width:15px;
	height: 15px;
	margin-left: 5px;
}


/*///////////////////////////////////////
Product Landing Page ///////////////////*/

/* Hero Banner ///////////////////*/
.hero-banner {
	position: relative;
	background:#fff;
}

.hero-banner .fusion-builder-row {
	position: inherit;
}

.hero-banner h1 {
	margin:20px 0 40px !important;
	padding:0;
	line-height: 60px;
	font-size:60px;
	font-weight: 800;
	color:var(--secondary);
}

.hero-banner p.sub-line {
	font-size: 12px;
    color: var(--primary);
    background: var(--bg-success);
    display: inline-block;
    padding: 1px 20px 1px 12px;
    border-radius: 50px;
    font-weight: 600;
    margin: 0;
}

.hero-banner h1 strong {
	color: var(--primary);
}
.hero-banner p.sub-line strong {
	width:14px;
	height: 14px;
	display: inline-block;
	background: url(./images/star.svg) no-repeat left top;
	background-size: cover;
    position: relative;
    top: 3px;
    margin-right: 7px;
}

.spacer-remove {
	margin:0 !important;
	padding:0 !important;
}

.short-feature {
	margin: 0;
	padding: 50px 0 0;
	list-style: none;
	display: flex;
	flex-wrap:wrap;
}
.short-feature li {
	margin: 0;
	padding: 0 0 5px 22px;
	list-style: none;
	width: 33.33%;
	font-size: 14px;
	position: relative;
}
.short-feature li::before {
	width:18px;
	height: 18px;
	display:block;
	background: url(./images/checkmark.svg) no-repeat left top;
	background-size: cover;
	position: absolute;
	left: 0;
	top:2px;
	content:'';
}

.product-landing-section {
	max-width: 750px;
	min-height: 785px;
	/*background: url(./images/landing-circle-img.svg) no-repeat left top;
	background-size:100%;*/
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.product-landing-section::before {
	background:#e9f1fb;
	border-radius: 100px;
	width: 40px;
	height: 40px;
	content:'';
	display: block;
	position: absolute;
	left: 34px;
    top: 18px;
	background: #F7F8FD;
	background: -webkit-linear-gradient(314deg, rgba(247, 248, 253, 1) 0%, rgba(230, 239, 250, 1) 100%);
	background: -moz-linear-gradient(314deg, rgba(247, 248, 253, 1) 0%, rgba(230, 239, 250, 1) 100%);
	background: linear-gradient(314deg, rgba(247, 248, 253, 1) 0%, rgba(230, 239, 250, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F7F8FD", endColorstr="#E6EFFA", GradientType=0);
}

.product-landing-section::after {
	background:#e9f1fb;
	border-radius: 100px;
	width: 40px;
	height: 40px;
	content:'';
	display: block;
	position: absolute;
	right: 34px;
    bottom: 18px;
	background: #F7F8FD;
	background: -webkit-linear-gradient(314deg, rgba(247, 248, 253, 1) 0%, rgba(230, 239, 250, 1) 100%);
	background: -moz-linear-gradient(314deg, rgba(247, 248, 253, 1) 0%, rgba(230, 239, 250, 1) 100%);
	background: linear-gradient(314deg, rgba(247, 248, 253, 1) 0%, rgba(230, 239, 250, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F7F8FD", endColorstr="#E6EFFA", GradientType=0);
}

.send-mail {
	background:url(./images/send-mail.svg) no-repeat right top;
	background-size: 100% auto;
	width: 122px;
	height: 77px;
	position: absolute;
	right: 8px;
    top: 87px;
}

.p-arrow {
	position:absolute;
	color:#2a9949;
	font-size:22px;
}
.n-arrow1 {	
	left: 118px;
    top: 26px;
    rotate: -37deg;
}
.n-arrow2 {	
	right: 118px;
    top: 26px;
    rotate: 35deg;
}
.n-arrow3 {	
	right: -11px;
    top: 236px;
    rotate: 81deg;
}
.n-arrow4 {	
	right: 91px;
    bottom: 47px;
    rotate: 144deg;
}
.n-arrow5 {	
	left: 91px;
    bottom: 45px;
    rotate: 221deg;
}
.n-arrow6 {	
	left: -11px;
    bottom: 289px;
    rotate: 280deg;
}
.pro-outer-cirlce {
	width:550px;
	min-height: 550px;
	border:2px solid var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 400px;
	position: relative;
}
.pro-innner {
	width:400px;
	min-height: 400px;
	border-radius: 400px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 0px 30px 1px rgba(161, 174, 191, 0.1);
}
.pro-innner img {
	width: 100%;
}

.pro-icon {
	width: 145px;
	min-height: 60px;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0px 0px 30px 1px rgba(161, 174, 191, 0.1);
	position: absolute;
	padding: 5px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size:13px;
	font-weight: 600;
	color:#0f172a;
}
.i-auto-sync {
	top: -28px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.i-auto-sync::before {
	width: 25px;
    height: 25px;
    background: url(./images/i-auto-sync.svg) no-repeat left top;
    background-size: 25px auto;
    content: '';
    margin-right: 5px;
}

.i-connect {
	top: 83px;
    left: -26px;
}
.i-connect::before {
	width: 25px;
    height: 25px;
    background: url(./images/i-connect.svg) no-repeat left top;
    background-size: 25px auto;
    content: '';
    margin-right: 5px;
}

.i-automate {
	top: 83px;
    right: -26px;
}
.i-automate::before {
	width: 25px;
    height: 25px;
    background: url(./images/i-automate.svg) no-repeat left top;
    background-size: 25px auto;
    content: '';
    margin-right: 5px;
}

.i-manage {
	bottom: 130px;
    left: -58px;	
}
.i-manage::before {
	width: 25px;
    height: 25px;
    background: url(./images/i-manage.svg) no-repeat left top;
    background-size: 25px auto;
    content: '';
    margin-right: 5px;
}
.i-export {
	bottom: 130px;
    right: -58px;
}
.i-export::before {
	width: 25px;
    height: 25px;
    background: url(./images/i-export.svg) no-repeat left top;
    background-size: 25px auto;
    content: '';
    margin-right: 5px;
}

.i-grow {
	bottom: -28px;
	margin:0 auto;
	left:0;
    right: 0px;
}
.i-grow::before {
	width: 25px;
    height: 25px;
    background: url(./images/i-grow.svg) no-repeat left top;
    background-size: 25px auto;
    content: '';
    margin-right: 5px;
}

.edd-preview-price {
	display:none;
}

/* Video Section CSS ///*/
.video-frame{
	border-radius: 40px;
	box-shadow: 0 0 8px rgba(0,0,0,0.1);
	background: #fff;
	overflow: hidden;
}
.video-features {
	margin:30px 0 10px;
	paddig:0;
	list-style: none;
	display:flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	box-shadow: 0 0 8px rgba(0,0,0,0.1);
	border-radius: 40px;
	padding: 5px 10px;
}
.video-features li {
	margin:0;
	paddig:0;
	font-size:14px;
	list-style: none;
	width: 50%;
	color:var(--secondary);
	text-align: center;
	display: flex;
    align-items: center;
    justify-content: center;
}

.video-features li svg {
	width:18px;
	height: 18px;
	margin-right: 5px;
}

/* Review Section CSS //////*/
#sb-reviews-container-3 .sb-item-text {
    margin: 0px 0px 0px 0px;
    font-size: 13px;
}
.sbr-owl-stage {
	padding-bottom:20px;
}
#sb-reviews-container-3 .sb-post-item-wrap {
    min-height: 240px;
    margin: 30px 0 0 0;
    font-size: 12px;
}

.reviews-total{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
    font-size:16px;
    line-height:1;
	padding-bottom: 40px;
}

.reviews-stars{
    display:flex;
    align-items:center;
    gap:3px;
    color:#fbbf24;
    font-size:14px;
}

.reviews-rating{
    font-size:14px;
    font-weight:700;
    color:#111827;
}

.reviews-text{
    color:#6b7280;
    font-size:13px;
    font-weight:500;
}

/* Plugin Price Section CSS */
.edd_price_options {
    position: relative;
    margin: 0;
    padding: 0;
    top: 20px;
    width: 100%;
}
.edd_price_options ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
	gap:10px;
}
.eddr-notice.variable-prices {
    text-align: left;
    position: absolute;
    font-size: 11px;
    padding-left: 38px;
    top: 28px;
}

.edd_download_purchase_form .edd_price_options li {
    margin: 0 0 10px;
    position: relative;
}
.edd_price_options li {
    width: 48% !important;
}
.edd_price_options li:last-child {
	width: 100% !important;
}
.edd_price_options li:last-child label {
	padding-bottom: 10px !important;
	width: 97.5% !important;
}

.edd_price_options ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}
.edd_price_options li label {
	display:flex;
    margin: 0 10px 9px 0;
    padding: 5px 10px 25px 10px !important;
	font-weight: 700;
    font-size: 14px;
    position: relative;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #eee;
    box-sizing: border-box;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, .1);
    cursor: pointer;
	width: 100% !important;
}
.edd_download_purchase_form .edd_price_options span.old-priced-container {
    font-size: 14px;
    position: absolute;
    top: 36px;
    left: 83px;
    display: none;
}
.plugin-section .edd_price_options li .eddr-notice {
    position: absolute;
    top: 23px;
    padding: 0 0 0 12px;
}

.eddr-notice.variable-prices {
    text-align: left;
}
.old-price {
    margin-left: 8px !important;
    color: #ff0000;
    text-decoration: line-through;
    font-weight: 400;
}
.edd_download_purchase_form .edd_price_options s.old-price {
    color: red !important;
    position: relative;
    left: -48px;
    top: 5px;
    background: #fff;
    padding: 6px 10px;
    border-radius: 5px;
}
.edd_download_purchase_form .edd_price_options span.old-priced-container {
    font-size: 14px;
    position: absolute;
    top: 36px;
    left: 83px;
    display: none;
}
.edd_download_purchase_form .edd_price_options span.old-price-title {
    display: none;
}

.edd_download_full_content {
	padding: 0 0 30px;
}

.edd-add-to-cart, .edd_go_to_checkout {
	cursor: pointer;
	background: var(--primary) url(./images/i-cart.svg) no-repeat 20px 12px;
	background-size:25px 22px;
	border:none;
	padding: 15px 40px 15px 55px !important;
	font-size:15px;
	font-weight: 600;
	color:#fff;
	margin:30px 10px 0 10px;
	border-radius: 5px;
	transition: background 1s;
}
.edd-add-to-cart:hover, .edd_go_to_checkout:hover {
	background: #095920 url(./images/i-cart.svg) no-repeat 20px 12px;
	background-size:25px 22px;
}

.pricing-card .edd-add-to-cart,
.pricing-card .edd_go_to_checkout,
.pricing-card.popular .edd-add-to-cart,
.pricing-card.popular .edd_go_to_checkout {
	background: var(--primary);
	padding: 10px 40px !important;
	width: 80%;
    height: 40px;
    border-radius: 50px;
	display: block;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
	margin: 0 auto;
}
.pricing-card .edd-add-to-cart {
	background: var(--secondary);
}

.pricing-card.popular .edd-add-to-cart::after,
.pricing-card.popular .edd_go_to_checkout::after,
.pricing-card .edd-add-to-cart::after,
.pricing-card .edd_go_to_checkout::after {
	content:'→';
	margin-left: 10px;
}


.pricing-card .edd-add-to-cart:hover,
.pricing-card .edd_go_to_checkout:hover,
.pricing-card.popular .edd-add-to-cart:hover,
.pricing-card.popular .edd_go_to_checkout:hover {
	opacity: 0.9;
}

.pricing-card.popular input[type="submit"] {
	display:none;
}


.gsc-view-demo-btn {
	cursor: pointer;
	background: #fff url(./images/i-view-demo-n.svg) no-repeat 20px 16px;
    background-size: 17px 17px;
	padding: 12px 30px 12px 48px;
	font-size:15px;
	font-weight: 600;
	color:var(--primary);
	margin:30px 15px 0 10px;
	border-radius: 5px;
	transition: border 1s;
	border:2px solid var(--primary);
	position: relative;
	top:1px;
}
.gsc-view-demo-btn:hover {
	color:var(--secondary);
	background: #fff url(./images/i-view-demo-h.svg) no-repeat 20px 16px;
    background-size: 17px 17px;
	border:2px solid var(--secondary);
	
}

.topic-list {
	margin:0;
	padding: 0;
	list-style: none;
}
.topic-list li {
	margin:0;
	padding: 5px 0 5px 30px;
	list-style: none;
	position: relative;
}
.topic-list li::before {
	width:22px;
	height: 22px;
	display:block;
	background: url(./images/checkmark.svg) no-repeat left top;
	background-size: cover;
	position: absolute;
	left: 0;
	top:6px;
	content:'';
}


/* Landing Page HERO Design ////////////*/
.hero-bg {
	background:
    radial-gradient(circle at top left,#ebe7ff,transparent 40%),
    radial-gradient(circle at top right,#e8fff0,transparent 40%),
    #f8f9ff;
}
.cf7-sync-section{
    padding:20px;
	position: relative;
	z-index: 1;    
}
.hero-top-icons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
    margin-bottom:25px;
}
.circle-dot-line {
	width:400px;
	height: 400px;
	background: none;
	border:1px dashed #2a9949;
	border-radius: 400px;
	position: absolute;
    left: 146px;
    top: 0;
}
.sync-icon{
    width:55px;
    height:55px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    font-size:24px;
}
.cf7-sync-section h3{
    text-align:center;
    font-size:24px;
    line-height:1.1;
    font-weight:800;
}
.cf7-sync-section h3 span{
    color:#7c3aed;
}
.cf7-sync-section h3{
    color:#111827;
}
.cf7-sync-section h3::after{
    content:"";
}
.subtitle{
    text-align:center;
    color:#6b7280;
    margin-top:15px;
    margin-bottom:60px;
    font-size:22px;
}
.sync-wrapper{
    max-width:100%;
    margin:auto;
    display:flex;
    gap:30px;
    align-items:center;
}
.form-card,
.sheet-card{
    background:#fff;
    border-radius:15px;
    padding:15px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
	position: relative;
}
.form-card {
	width:40%;
}
.sheet-card{
	width: 60%;
}
.live-badge{
    background: #eefbf2;
    color: #16a34a;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 11px;
    position: absolute;
    right: 10px;
    top: 10px;
    font-weight: 600;
}

.card-title,
.sheet-title{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:10px;
}

.card-title {
	padding-left: 55px;
	background:url(./images/cf7.svg) no-repeat left top;
	background-size: 40px auto;
}
.sheet-title {
	padding-left: 55px;
	background:url(./images/google-sheets-icon.svg) no-repeat left top;
	background-size: 40px auto;
}

.sync-wrapper .send-mail {
	top:0;
}

.gsc-icon {
	width: 140px;
    height: 50px;
    background: #fff url(./images/gsc-logo-final.svg) no-repeat center;
    background-size: 90%;
    position: absolute;
    right: 25%;
    top: -8px;
    border-radius: 10px;
    z-index: 1;
}

.l-arrow1, .l-arrow2, .l-arrow3 {
	position: absolute;
    color: #2a9949;
    font-size: 22px;
}
.l-arrow1 {
	left: 159px;
    top: -12px;
    rotate: -8deg;
}
.l-arrow2 {
	left: 351px;
    top: 69px;
    rotate: 53deg;
}
.l-arrow3 {
	left: 251px;
    bottom: -3px;
    rotate: 155deg;
}
.card-title h3{
    color:#6d4cff;
	font-size:14px;
	text-align: left;
}

.sheet-title h3{
	font-size:14px;
    color:#16a34a;
	text-align: left;
}
.sheet-title small {
	font-size:11px;
}

.table-wrap{
    overflow:auto;
}

.table-wrap table{
    width:100%;
    border-collapse:collapse;
}

.table-wrap thead{
    background:#22c55e;
    color:#fff;
}

.table-wrap th, .table-wrap td{
    padding:16px;
	line-height: 14px;
    border:1px solid #edf0f5;
    text-align:left;
}

.field{
    margin-bottom:10px;
}

.field label{
    display:block;
    margin-bottom:0;
    font-weight:600;
	font-size:13px;
}

.field input,
.field textarea{
    width: 100%;
    padding: 5px;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    height: 39px;
    font-size: 12px;
}

.form-card button{
    width: 100%;
    border: none;
    padding: 8px 10px;
    border-radius: 5px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.cf7-sync-section .features{
    max-width:100%;
    margin:50px auto 0;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:8px;
}
.cf7-sync-section  .features .i-real-time,
.cf7-sync-section .features .i-secure, .cf7-sync-section .features .i-time,
.cf7-sync-section .features .i-manage {
	width: 25px;
    height: 25px;
	margin:20px auto 0;
	display: block;
}

.cf7-sync-section  .features .i-real-time {
	background: url(./images/i-auto-sync.svg) no-repeat left top;
	background-size: 100%;	
}
.cf7-sync-section .features .i-secure {
	background: url(./images/i-security.svg) no-repeat left top;
	background-size: 100%;
}
.cf7-sync-section .features .i-time {
	background: url(./images/i-time.svg) no-repeat left top;
	background-size: 100%;
}
.cf7-sync-section .features .i-manage {
	background: url(./images/i-graph.svg) no-repeat left top;
	background-size: 100%;
}

.cf7-sync-section  .feature{
    background:#fff;
    border-radius:5px;
    padding:5px 10px 8px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.cf7-sync-section .feature h4{
    margin:10px 0;
	font-size: 12px !important;
}

.cf7-sync-section .feature p{
	margin: 0;
	font-size:11px;
	line-height: 15px;
    color:#6b7280;
}


/*//////  Pricing Table ///////////////*/
.pricing-table-wrap{
    width:1000px;
    margin:auto;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #dbe3ea;
    background:#fff;
}

.pricing-table{
    width:100%;
    border-collapse:collapse;
}

.pricing-table thead th{
    padding:22px 25px;
    color:#fff;
    font-size:18px;
    font-weight:600;
    text-align:left;
}

.pricing-table thead th:first-child{
    background:#071633;
    width:70%;
}

.pricing-table thead th:nth-child(2){
    background:#071633;
    text-align:center;
    width:15%;
}

.pricing-table thead th:nth-child(3){
    background:#0ca44b;
    text-align:center;
    width:15%;
}

.pricing-table tbody tr:nth-child(odd){
    background:#ffffff;
}

.pricing-table tbody tr:nth-child(even){
    background:#f7f9fc;
}

.pricing-table tbody td{
    padding:18px 25px;
    border-bottom:1px solid #edf1f5;
    font-size:16px;
    color:#1e293b;
}

.pricing-table tbody td:nth-child(2),
.pricing-table tbody td:nth-child(3){
    text-align:center;
    font-size:22px;
    font-weight:bold;
}

.pro-column{
    background:#f1fbf5;
}

.check{
    color:#12a150;
}

.cross{
    color:#cbd5e1;
}


/*//// Pricing Table //////////////////////*/
.pricing-wrapper{
    width:100%;
    margin:auto;
}
.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
.pricing-card{
    background:#fff;
    border:1px solid #d9e2ec;
    border-radius:20px;
    padding:28px 24px;
    position:relative;
    transition:0.3s ease;
}
.pricing-card h3 {
	font-size: 22px;
}
.pricing-card ul  {
	margin:0;
	padding: 0 0 20px;
	list-style: none;
}

.pricing-card ul li {
	margin:0 0 8px;
	padding: 0;
	font-size: 13px;
	list-style: none;
}
.pricing-card:hover{
    transform:translateY(-5px);
}

.pricing-card.popular{
    border:1px solid var(--primary);
	box-shadow: 0px 0px 20px 5px rgb(6 78 59 / 10%);
}

.popular-badge{
    position:absolute;
    top:-20px;
    left:50%;
    transform:translateX(-50%);
    background:var(--primary);
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
}

.plan-title{
    font-size:18px;
    font-weight:600;
    color:#0f172a;
    margin-bottom:18px;
}

.price-wrap{
    display:flex;
    align-items:flex-end;
    gap:10px;
    margin-bottom:6px;
}

.price{
    font-size:32px;
    font-weight:700;
    line-height:1;
    color:#081735;
}

.pricing-card .old-price{
    font-size:14px;
    color:#94a3b8;
    text-decoration:line-through;
    margin-bottom:6px;
}

.billing{
    color:#64748b;
    font-size:15px;
    margin-bottom:28px;
}


.pricing-card .features{
    list-style:none;
    margin-bottom:35px;
}

.pricing-card .features li{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #334155;
    font-size: 14px;
}

.check-icon{
    width:20px;
    height:20px;
    min-width:20px;
    border-radius:50%;
    border:2px solid #16a34a;
    color:#16a34a;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:700;
}

.pricing-btn{
    width: 80%;
    height: 40px;
    border: none;
    border-radius: 50px;
    background: var(--secondary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    padding: 10px 30px 10px 50px;
    margin: 0 auto;
    display: block;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
}

.pricing-btn:hover{
    opacity:0.9;
}

.pricing-card.popular .pricing-btn{
    background:#16a34a;
}

.arrow{
    margin-left:10px;
}


/* //////////////////// Footer ////////////////////////*/
/*.footer {
	background-color:#fff;
	color:var(--body);
	font-size:14px;
}
.footer h4 {
	font-size:18px !important;
	font-weight: 600;
	color:var(--secondary) !important;
}
.footer .awb-menu__main-ul_column .awb-menu__main-li {
	margin:0;
	padding: 0;
	list-style: none;
}
.footer .awb-menu__main-ul_column .awb-menu__main-li a {
	padding: 0 0 15px !important;
	font-size:14px !important;
	color:var(--body) !important;
}
.footer .awb-menu__main-ul_column .awb-menu__main-li a a:hover {
	color:var(--dark-green) !important;
}

.footer .awb-menu_icons-left .awb-menu__main-a {
	color:var(--body) !important;
}
.footer .awb-menu_icons-left .awb-menu__main-a:hover {
	color:var(--dark-green) !important;
}
.copyright-bar {
	background-color:var(--white);
	border-top:1px solid #efefef;
	font-size:14px !important;
	color:var(--body) !important;
}
.copyright-bar p {
	color:var(--body) !important;
}
.fusion-social-links .fusion-social-networks.color-type-custom .fusion-social-network-icon.hover, 
.fusion-social-links .fusion-social-networks.color-type-custom .fusion-social-network-icon:hover {
    color: var(--dark-green) !important;
}*/


.payment-method {
	margin:10px 0;
	padding:20px 0 0;
	font-size:14px;
	color:var(--dark-green) !important;
	border-top:1px solid #eee;
}
.payment-method span {
	display:flex;
	justify-content: flex-start;
	align-items: center;
	color:var(--body) !important;
	overflow:hidden;
	height:35px;
	background: #efefef;
	margin:10px 0 0;
	padding: 5px 0px 5px 10px;
	border-radius: 40px;
	max-width: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.payment-method img {
	width:80px;
	height:auto;
	margin:0 15px 0 0;
}
.payment-method img:nth-child(1)
{
	width:40px;
}
.action-bar {
    background: radial-gradient(800px 320px at 10% 20%, #10b98140, #0000 60%), radial-gradient(800px 320px at 90% 80%, #f59e0b2e, #0000 60%), #0b1a15;
	text-align: center;
}
.action-bar h2 {
    margin: 0 0 15px !important;
    padding: 0;
    font-size: 40px;
    line-height: 52px;
    font-weight: 800;
    color: #fff;
}
.action-bar h2 em {
    color: #6ee7b7;
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: italic;
}

.action-bar p {
    margin: 0 0 10px !important;
    padding: 0;
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    color: #6ee7b7;
}
.action-bar svg {
	margin:0 auto 30px;
}
.action-button {
	padding:30px 0 0;
}
.action-button a {
	font-size: 16px;
	font-weight: 500;
	color:#fff;
	border:1px solid rgb(255 255 255 / 25%);
	padding: 15px 20px;
	border-radius: 40px;
	margin:0 5px;
}
.action-button a:hover {
	font-size: 16px;
	font-weight: 500;
	color:var(--dark-green);
	background: #fff;
	border:1px solid rgb(255 255 255 / 25%);
	padding: 15px 20px;
	border-radius: 40px;
	margin:0 5px;
}
.action-button a.buy {
	font-size: 16px;
	font-weight: 500;
	color:#fff;
	border:1px solid var(--primary);
	padding: 15px 20px;
	border-radius: 40px;
	margin:0 5px;
}
.action-button a:hover.buy {
	font-size: 16px;
	font-weight: 500;
	color:#fff;
	background: var(--primary);
	border:1px solid var(--primary);
	padding: 15px 20px;
	border-radius: 40px;
	margin:0 5px;
}
 
/* Key Frame CSS ////////////*/
.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeMoveReverse 40s linear infinite;
    animation-delay: 2s;
}
.marquee-track2 {
    display: flex;
    width: max-content;
    animation: marqueeMove 40s linear infinite;
    animation-delay: 2s;
	margin-top: 20px;
}
.mask-fade {
	mask-image: linear-gradient(to right, transparent, black 6% 6%, black 94%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.marquee {
    width: max-content;
    animation: marqueeMove 35s linear infinite;
	animation-delay: 2s;
}
@keyframes marqueeMoveReverse {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes marqueeMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.single-dot {
  width: 8px;
  height: 8px;
  margin-right: 5px;
  background: #64c19d;
  border-radius: 50%;
  display: inline-block;
  animation: blinkDot 1s infinite ease-in-out;
}

@keyframes blinkDot {
  0%, 100% {
    opacity: 0.2;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.floating-icon {
  display: inline-block;
  animation: floatY 5s ease-in-out infinite;
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}


/*///////////////////// Media CSS //////////////////*/
@media(max-width:1280px){
.menu-title h3 {
	font-size: 14px;
}
.mega-menu-in ul li .awb-menu__main-a:hover, .mega-menu-in .awb-menu__main-a {
	min-height: 70px;
}
.mega-menu-in ul li a .menu-text_with-desc {
	font-size: 12px;
	line-height: 8px !important;
}
}
@media(max-width:1180px){

.plugin-box-outer {
    width: 33.33% !important;
}
.awb-menu_icons-left .awb-menu__main-a {
	 padding: 5px 10px !important;
}
.my-account li {
    right: 10px;
}
	
.pricing-grid{
	grid-template-columns:repeat(2,1fr);
}
.plugin-list {
	padding-left: 30px !important;
	padding-right: 30px !important;
}
.pricing-table-wrap {
	width: 100%;
}
/* Product Landing Page */
.edd_price_options li {
    width: 100% !important;
}
.edd_purchase_submit_wrapper {
	display:flex;
	flex-wrap:wrap;
}
.product-landing-section {
    background: url(./images/landing-circle-img.svg) no-repeat left 67px;
	background-size: 100%;
}

}

@media(max-width:1024px){
.hero-banner .fusion-builder-row {
    flex-direction: column-reverse;
}
.pro-landing-details,
.pro-landing-img {
	width:100% !important;
}
.product-landing-section {
	margin:0 auto;
    background: url(./images/landing-circle-img.svg) no-repeat left 28px;
	background-size: 100%;
}
}

@media(max-width:820px){
/*Home Page */
.my-account {
	display: none;
}	
.sheet-card {
	width: 100%;
	overflow-x: scroll;
}
.sheet-top {
	width: 600px;
}
.sheet-card table {
	min-width: 600px;
}
.icon {
	display:none;
}	
.realtime-box {
	left:0;
	scale: 0.8;
}
.connected-box {
	right:0;
	scale: 0.8;
}
	
/* Product Landing Page  */
.row-reverse .fusion-builder-row {
    flex-direction: column-reverse;
}
	
/* Pricing Section */	
.pricing-grid{
	grid-template-columns:1fr;
}

.pricing-card{
	padding:24px 20px;
}

.pricing-grid .price{
	font-size:44px;
}

.pricing-grid .pricing-btn{
	height:52px;
	font-size:16px;
}

.pricing-table thead{
	display:none;
}

.pricing-table,
.pricing-table tbody,
.pricing-table tr,
.pricing-table td{
	display:block;
	width:100%;
}

.pricing-table tr{
	margin-bottom:18px;
	border-bottom:1px solid #e5e7eb;
	background:#fff !important;
}

.pricing-table td{
	text-align:right !important;
	padding-left:50%;
	position:relative;
}

.pricing-table td::before{
	content:attr(data-label);
	position:absolute;
	left:20px;
	width:45%;
	text-align:left;
	font-weight:600;
	color:#071633;
}

.pricing-table td:first-child{
	background:#071633;
	color:#fff;
	font-weight:600;
	text-align:left !important;
	padding-left:20px;
}

.pricing-table td:first-child::before{
	display:none;
}
	
.copyright-bar	.fusion-social-links {
		width:100%;
}

}

@media(max-width:512px){
/* /// Home Page // */
.icon {
	display:none;
}	
.timeline-card .brand-title {
	font-size: 20px;
}
.rating-review-home-banner {
	flex-wrap: wrap;
}	
.star-list {
    display: flex;
    align-items: center;
    justify-content: center;
}
.text-slate {
	width: 100%;
}
.counter-box-outer {
	width:50% !important;
}
.counter-box-outer-last {
	width:100% !important;
}

.video-features {
	flex-wrap:wrap;
}
.short-feature li, .video-features li {
	width:100%;
}
.plugin-list {
	padding-left: 15px !important;
	padding-right: 15px !important;
}
.gsc-view-demo-btn,
.edd-add-to-cart, .edd_go_to_checkout {
	min-width: 200px;
}

/* Product Landing ////*/
.product-landing-section {
    max-width: 100%;
    min-height: 785px;
}
.pro-outer-cirlce {
    width: 100%;
    min-height: 340px;
}
.product-landing-section {
	max-width: 100%;
	min-height: 350px;
	margin-bottom: 50px;
}
.pro-icon {
    width: 130px;
    min-height: 20px;
	font-size: 11px;
}
.pro-innner img {
    width: 80%;
}
.send-mail {
    right: -27px;
    top: -36px;
    scale: 0.7;
}
.i-manage {
    bottom: 75px;
    left: -46px;
}
.i-export {
    bottom: 75px;
    right: -23px;
}
.i-auto-sync {
	top: -11px;
}
.i-grow {
    bottom: -8px;
}
.i-connect {
    top: 72px;
    left: -16px;
}
.product-landing-section::before {
	left: 0;
	top: -9px;
}
.product-landing-section::after {
	right:0;
}
.n-arrow1 {
    left: 52px;
}
.n-arrow2 {
    right: 53px;
}
.n-arrow3 {
    right: -11px;
    top: 236px;
    rotate: 100deg;
}
.n-arrow4 {
    right: 56px;
    bottom: 23px;
}
.n-arrow5 {
    left: 32px;
}
.n-arrow6 {
    left: -12px;
    bottom: 183px;
    rotate: 265deg;
}
	
/* Pro Landing2 ////////////////*/
.sync-wrapper {
	flex-wrap: wrap;
}
.gsc-icon {
    right: -30px;
	top: 26%;
	scale: 0.8;
}
.form-card {
    width: 69%;
    left: -17px;
}
.sheet-card {
	width: 100%;
	overflow-x: scroll;
}
.circle-dot-line {
	width: 350px;
	height: 350px;
	left: 0;
	top: 79px;
}
.l-arrow1 {
    left: 267px;
    top: 20px;
    rotate: 39deg;
}
.l-arrow2 {
    left: 337px;
    top: 180px;
    rotate: 96deg;
}
.l-arrow3 {
	left: 308px;
	bottom: 64px;
    rotate: 116deg;
}
.cf7-sync-section {
	padding:0;
}
.cf7-sync-section .feature p {
	display: none;
}

/* // Footer CSS /// */
.footer-col1, .footer-col4,
.plugin-box-outer, .feature-col {
	width:100% !important;
}
.copyright-bar	.fusion-social-links {
		width:100%;
}
.gsc-blog-grid {
	grid-template-columns: repeat(1, 1fr);
	gap: 20px;
}
.action-button a {
	display: block;
	margin-bottom: 10px !important;
}
.button-bar,
.button-chat {
	flex-wrap: wrap;
}
}
@media(max-width:430px){
.n-arrow1 {
	left: 55px;
}
.n-arrow2 {
	right: 57px;
}
.n-arrow5 {
	left: 37px;
}
.n-arrow4 {
    right: 61px;
}
}
@media(max-width:414px){
.n-arrow1 {
	left: 52px;
}
.n-arrow2 {
	right: 53px;
}
.n-arrow5 {
	left: 33px;
}
.n-arrow4 {
	right: 56px;
}
}
@media(max-width:390px){
.n-arrow1 {
	left: 45px;
}
.n-arrow2 {
	right: 46px;
}
.n-arrow5 {
	left: 26px;
}
.n-arrow4 {
	bottom: 17px;
}
}