
@font-face{
	font-family: 'Proxima Nova';
	src: url('./../fonts/proximanova/ProximaNova-Regular.eot');
	src: url('./../fonts/proximanova/ProximaNova-Regular.eot') format('embedded-opentype'),
	url('./../fonts/proximanova/ProximaNova-Regular.woff') format('woff'),
	url('./../fonts/proximanova/ProximaNova-Regular.woff2') format('woff2'),
    url('./../fonts/proximanova/ProximaNova-Regular.ttf') format('truetype'),
    url('./../fonts/proximanova/ProximaNova-Regular.svg') format('svg');
	font-weight: normal;
    font-style: normal;
}
@font-face{
	font-family: 'Proxima Bold';
	src: url('../fonts/proximanova/Proxima-Nova-Bold.eot');
	src: url('../fonts/proximanova/Proxima-Nova-Bold.eot') format('embedded-opentype'),
	url('../fonts/proximanova/Proxima-Nova-Bold.woff') format('woff'),
	url('../fonts/proximanova/Proxima-Nova-Bold.woff2') format('woff2'),
    url('../fonts/proximanova/Proxima-Nova-Bold.ttf') format('truetype'),
    url('../fonts/proximanova/Proxima-Nova-Bold.svg') format('svg');
	font-weight: normal;
    font-style: normal;
}
@font-face{
	font-family: 'Proxima Medium';
	src: url('../fonts/proximanova/proxima-nova-medium.eot');
	src: url('../fonts/proximanova/proxima-nova-medium.eot') format('embedded-opentype'),
	url('../fonts/proximanova/proxima-nova-medium.woff') format('woff'),
	url('../fonts/proximanova/proxima-nova-medium.woff2') format('woff2'),
    url('../fonts/proximanova/proxima-nova-medium.ttf') format('truetype'),
    url('../fonts/proximanova/proxima-nova-medium.svg') format('svg');
	font-weight: normal;
    font-style: normal;
}
@font-face{
	font-family: 'poppins_bold';
	src: url('../fonts/poppins_bold/poppins_bold.eot');
	src: url('../fonts/poppins_bold/poppins_bold.eot') format('embedded-opentype'),
	url('../fonts/poppins_bold/poppins_bold.woff') format('woff'),
	url('../fonts/poppins_bold/poppins_bold.woff2') format('woff2'),
    url('../fonts/poppins_bold/poppins_bold.ttf') format('truetype'),
    url('../fonts/poppins_bold/poppins_bold.svg') format('svg');
	font-weight: normal;
    font-style: normal;
}

@font-face{
	font-family: 'librefranklin';
	src: url('../fonts/librefranklin/LibreFranklin_Black.eot');
	src: url('../fonts/librefranklin/LibreFranklin_Black.eot') format('embedded-opentype'),
	url('../fonts/librefranklin/LibreFranklin_Black.woff') format('woff'),
	url('../fonts/librefranklin/LibreFranklin_Black.woff2') format('woff2'),
    url('../fonts/librefranklin/LibreFranklin_Black.ttf') format('truetype'),
    url('../fonts/librefranklin/LibreFranklin_Black.svg') format('svg');
	font-weight: normal;
    font-style: normal;
}

html{
	overflow-x:hidden;
}
*{
	padding: 0;
	margin: 0;
	text-decoration: none;
    box-sizing: border-box;
    font-family: var(--regular);
}
:root{
    --main-color : #529B50 ;
    --light-green : #FBFFFB;
    --regular : 'Proxima Nova';
    --medium : 'Proxima Medium';
    --bold : 'Proxima Bold';
    --ease : all 280ms ease;
    --gradient-1 : linear-gradient(45deg, rgba(146,181,215,1) 0%, rgba(103,229,144,1) 100%);
    --gradient-2 : linear-gradient(45deg, rgba(175,57,139,1) 0%, rgba(123,102,218,1) 15%, rgba(67,141,136,1) 30%, rgba(15,177,61,1) 45%, rgba(123,102,218,1) 60%, rgba(67,141,136,1) 75%, rgba(15,177,61,1) 100%);
    --gradient-3 : linear-gradient(-45deg, #BFFFD3, #BFDFFF, #BFFFD3, #BFDFFF);
}
body{
    background-color:#fff;
    font-family: var(--regular);
    overflow-x:hidden;
}
a{
	display: inline-block;
    text-decoration: none;
    color:inherit;
    font-size: 18px;
    line-height: 1.3;
}
a:focus{
	outline:0;
}
img {
    width: 100%;
    display: table;
}
ul{
	list-style:none;
	margin-left:30px;
}
p{
    font-size: 18px;
    line-height: 1.4;
    font-family: var(--regular);
    margin-bottom: 10px;
}
p + p {
    margin-top: 10px;
}
h1 {
    font-size: 48px;
    font-weight: 900;
}
h1 span{
    background: var(--gradient-2);
    -webkit-background-clip: text;
    color: transparent;
    animation: gradient 5s ease infinite;
    background-size: 400% 400%;
    font-family:inherit;
}
h2 {
    font-size: 28px;
}
h2 span {
    color:var(--main-color);
    font-family: inherit;
}
h3 {
    font-size: 26px;
}
h4 {
    font-size: 22px;
}
h1,h2,h3,h4,h5,h6,b{
	font-family: var(--bold);
	line-height:1.2;
}
section{
	padding:150px 0;
}
h2.title{
    font-size:36px;
}
hr {
    outline: 0;
    height: 1px;
    width: 100%;
    background-color: #C7C7C7;
    margin: 30px 0;
    border: 0;
}

label {
	display: flex; 
	 align-items: center; 
	color: #9e9e9e;
	position: relative;
}

.agree_container input {
	width: 0;
	height: 0;
	opacity: 0;
}

.agree_container label > span {
	min-width: 20px;
	min-height: 20px;
	display: flex;
	justify-content: center;
	border: 1px solid #888;
	margin-right: 15px;
	border-radius: 5px;
	transition: all .3s;
}

.agree_container input:checked + label > span {
	border: 10px solid var(--main-color);
	animation: bounce 250ms;
}

.agree_container input:checked + label > span::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 4px;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    transform: rotate(45deg);
    transform-origin: 0% 100%;
    animation: checked-box 125ms 250ms forwards;
}

.d_btn .ripple{
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  transform: scale(0);
  animation: ripple 0.6s linear;
}




.title_center {
    font-size: 48px;
    text-align: center;
    max-width: 860px;
    padding: 0 20px;
    margin: 0 auto 40px;
    color: #3c3c3c;
    line-height: 1.1;
}
.prospecting_sec .title_center {
    max-width: 860px;
}
.branding_sec .title_center {
    max-width: 1100px;
}

.u_link {
    color: var(--main-color);
    text-decoration: underline;
    font-size:18px;
    padding-right:25px;
    position:relative;
    display: inline;
}
.u_link:after {
    content: '';
    position: absolute;
    right: 0;
    width: 20px;
    height: 20px;
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: 2px 5px;
    transition:var(--ease);
}
.u_link:hover{
    text-decoration: none;
}
.u_link:hover:after {
    right: -5px;
}
.default_container{
	width:100%;
	max-width:1340px;
	padding:0 20px;
	margin:0 auto;
}
.max_container{
	width:100%;
	max-width:1540px;
	padding:0 20px;
	margin:0 auto;
}
.list_style li{
	font-size: 17px;
    line-height: 1.3;
    margin-bottom: 15px;
    position:relative;
    text-align:left;
}
.list_style li.ai_img:after {
    content: 'A.I';
    background-color: var(--main-color);
    color: #fff;
    padding: 2px 7px;
    display: inline;
    font-size: 20px;
    border-radius: 4px;
    position: absolute;
    margin-left: 5px;
    scale: 0.8;
    opacity: 0.6;
    line-height: 1;
}
.list_style li b{
    font-family: var(--regular);
    font-weight:normal;
}
.list_style li:before {
    content: '';
    width: 50px;
    height: 50px;
    background-size: 40px;
    background-repeat: no-repeat;
    position: absolute;
    top: -10px;
    left: -45px;
    background-position: 4px 6px;
    border-radius: 50%;
}
.list_style.rounded li:before {
    background-size: 12px;
    background-color: var(--main-color);
    width: 20px;
    height: 20px;
    top: 2px;
    left: -30px;
}
.login_btn{
	position: relative;
	overflow:hidden;
	padding: 12px 25px;
	border-radius: 30px;
	display:block;
	color:#fff;
	transition: var(--ease);
    background: linear-gradient(44deg, #444, #888) ;
    background-size: 400% 400%;
    animation: gradient 3s ease infinite;
}

.login_btn:before, .login_btn:after{
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  filter: blur(30px);
  opacity: 0.4;
  transition: 0.6s;
  background: rgba(255,255,255,0.6);
  transform: translateX(-130px) skewX(-45deg);
}
.login_btn:before{
  width: 60px;
}
.login_btn:after{
  width: 30px;
}
.login_btn:hover:before,
.login_btn:hover:after{
  opacity: 0.6;
  transform: translateX(320px) skewX(-45deg);
}
.login_btn:hover{
  background: radial-gradient(circle, rgba(82,155,80,1) 0%, rgba(82,155,80,1) 100%);
  background:var(--main-color);
}
.better_way_content .d_btn.arrow {
	margin:0 auto;
}
.better_way_content .d_btn.arrow {
    margin: 40px 0 20px;
}
.d_btn.arrow{
	padding:12px 75px 12px 25px ;
}
.d_btn.arrow.alternate {
    padding: 12px 0;
    min-height: 58px;
}
.d_btn.arrow:before {
    content: '';
    position: absolute;
    min-width: 40px;
    min-height: 40px;
    top: 10px;
    right: 10px;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: center;
    border-radius: 50%;
    transition: var(--ease);
}
.d_btn.arrow:hover:before{
	opacity: 0;
    right: 20px;
}
.d_btn.arrow.alternate:hover:before {
    opacity: 1;
    right: 15px;
}
.d_btn.arrow.alternate:after {
    background: var(--gradient-1);
    min-width: 49px;
    min-height: 49px;
}
.d_btn.arrow.alternate:before {
    top: 10px;
    right: 8px;
    background-size: 23px;
}
.d_btn.arrow:after {
    background-color: #fff;
    content: '';
    position: absolute;
    min-width: 50px;
    min-height: 50px;
    top: 4px;
    right: 4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    border-radius: 50px;
    max-width: 39px;
    transition: all 500ms ease;
    /* animation: puls 800ms ease 1s infinite both; */
}
/*.d_btn.arrow:hover:before {
	transform:rotate(-180deg);
}*/
.d_btn.arrow:hover:after {
	animation: none;
    max-width: 100%;
}
.d_btn.arrow span{
	transition:var(--ease);
	position:relative;
	z-index:1;
}
.d_btn.arrow.alternate span {
    transition: var(--ease);
    position: relative;
    z-index: 0;
    padding: 11px 65px 11px 20px;
    /*padding: 12px 65px 12px 20px;*/
    border-radius: 20px;
    top: 1px;
    right: -2px;
    font-size: 26px;
}
.d_btn.arrow.alternate span:before {
    content: '';
    width: calc(100% - 4px);
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 60px;
}
.d_btn.arrow.alternate:hover span:before{
	background-color:transparent;
}
.d_btn.arrow span:after {
    content: '';
    position: absolute;
    min-width: 40px;
    min-height: 40px;
    top: -2px;
    right: -22px;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: center;
    border-radius: 50%;
    transition: var(--ease);
    opacity: 0;
}
.d_btn.arrow:hover span:after{
    right: -60px;
	opacity:1;
	/*animation: puls 800ms ease 1s infinite both;  */
}
.d_btn.arrow:hover span{
	color:#000;
}
.d_btn.arrow.alternate:hover span {
    color: #fff;
    background: transparent;
    z-index:1;
}
.d_btn.arrow.alternate {
    color: #000;
    background: var(--gradient-1);
}

.d_btn {
    background: var(--gradient-1);
    padding: 12px 25px;
    border-radius: 30px;
    display: table;
    color:#fff;
    position:relative;
    overflow:hidden;
    background-size: 400% 400%;
    cursor:pointer;
    animation: gradient 3s ease  both infinite reverse;
    font-size: 26px;
}
.l_btn {
    background: #4f4f4f;
    padding: 10px 25px;
    border-radius: 30px;
    display: table;
    color:#fff;
    position:relative;
    overflow:hidden;
    background-size: 400% 400%;
    cursor:pointer;
    animation: gradient 3s ease  both infinite reverse;
    font-size: 20px;
}
/*.d_btn.mobile_btn{*/
/*    z-index:9;*/
/*}*/
.d_btn.animate{
    display: block;
    font-size:20px;
}
.d_btn.animate:before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3), transparent );
    transition: var(--ease);
    animation: glassy 2s ease infinite ;
}
.d_btn.animate:hover:before{
	animation:none;
}

.play {
    display: block;
    padding: 4px 10px 4px 65px;
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: 14px 12px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transition: background-position 250ms ease;
}
/*.play_btn:hover .play{
	background-position: 17px 8px;
}*/

.table_container table{
	margin:0 auto;
    background-color: #fff;
    border-radius:35px;
    margin-top:50px;
    position:relative;
    padding-bottom: 25px;
    border-spacing: 0;
}
.table_container tbody:after {
    content: '';
    position: absolute;
    width: 10%;
    height: calc(100% - 95px);
    background: #F0F8FF;
    top: 74px;
    left: 305px;
    z-index: 0;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 4px;
}
.table_container table tr:first-child  th:nth-child(2){
	color:#3B93EB;
}
.table_container table tr:nth-child(odd) {
	background-color:#F5FAFF;
}
.table_container table thead tr{
	background-color:transparent !important;
	font-family:var(--bold);
}
.table_container td, .table_container th {
    text-align: center;
    padding: 25px 15px;
    background-size:15px;
    background-position:center;
    background-repeat:no-repeat;
    position:relative;
    z-index:2;
}
.table_container td {
    background-position:center;
    background-repeat:no-repeat;
}
.table_container td.check{
    background-size:30px;
}
.table_container td.close{
    background-size:25px;
}
.table_container tr td:not(first-child), .table_container tr th:not(first-child) {
	max-width:170px;
	min-width:170px;
}
.table_container tr td:first-child {
    background-image: unset;
    text-align: left;
    min-width: 280px;
    padding-left:30px;
}
.text_animation {
    font-size: 14px;
    font-family: var(--bold);
    line-height:22px;
    padding: 6px 20px;
    border-radius: 20px;
    /*background: linear-gradient(-45deg, #BFDFFF, #FCDDFF, #BFDFFF, #FCDDFF);*/
    background: linear-gradient(-45deg, #BFFFD3, #BFDFFF, #BFFFD3, #BFDFFF);
    background: var(--gradient-3);
	background-size: 400% 400%;
	animation: gradient 10s ease infinite;
	display:table;
	box-shadow: 1px 3px 6px #00000029;
	margin-bottom:30px;
	text-align:center;
	
}
.text_animation.small {
    margin: 0;
    padding: 2px 10px;
    font-size: 12px;
    font-family: var(--medium);
    transition:var(--ease);
}
.price_menu li a.save{
    display: flex;
    align-items: center;
    grid-gap: 10px;
}
.price_menu li a.save p{
	color:#8667B4;
}
li.active a.save p{
	box-shadow:none;
}
.text_animation.center{
	margin:0 auto 20px;
}

/*header*/
header {
    position: fixed;
    width: 100%;
    z-index: 9;
    left: 50%;
    transform: translate(-50%, 0);
    max-width: 1150px;
    
}
.header_flex {
    display: flex;
    align-items: center;
    right: 100px;
    position:relative;
    margin-top:30px;
}
.mobile_btn{
	display:none;
	font-size:18px;
}
.header_flex img {
    max-width: 200px;
    min-width: 150px;
    right: -70px;
    position: relative;
    transition: var(--ease);
    padding: 10px;
    
}
.sticky .header_flex img{
	opacity:0.3;
}
.nav_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px  6px 6px 30px;
    background-color: #2E2E2E;
    border-radius: 50px;
    margin-top: 10px;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}
.nav_links, .main_links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin:0;
}
.nav_links > li + li, .main_links{
	margin-left:20px;
}
.main_links > li + li{
	margin-left:5px;
}
.nav_links > li {
	position:relative;
}
.nav_links > li ul{
	position:absolute;
	top:100%;
	left:0;
	display:none;
}
.nav_container .nav_links a{
	color:#bbb;
	font-size:20px;
	transition:var(--ease);
}
.nav_container .nav_links a:hover{
	color:#fff;
}
.banner_sec {
    background-color: #ffffffbf;
    background-position: center;
    background-size: cover;
    background-blend-mode: overlay;
    display: grid;
    justify-content: center;
    position: relative;
    margin-bottom: 300px;
}
.flex_banner {
    margin-top: 180px;
    width: 100%;
    padding: 0 20px;
}
.flex_banner > picture {
    margin-bottom: -300px;
    display: table;
}
.banner_text_content {
    width: 100%;
    max-width: 885px;
    margin: 0 auto;
    text-align: center;
}
.banner_text_content
.banner_text_content h1{
	margin-top:20px;
}
.banner_text_content p {
    margin: 30px auto;
    font-size: 28px;
    max-width: 780px;
    line-height: 1.2;
} 
.banner_text_content  .better_way_content  p{
	font-size:inherit;
}
.sub_para_text {
    margin: 20px auto;
    font-size: 18px;
    max-width: 920px;
    text-align: center;
}
.sub_para_text_2 {
    margin: 30px auto 0;
    font-size: 16px;
    max-width: 768px;
    text-align: center;
    color: #888;
}
.packages p.text_height{
	min-height:75px;
}
.packages p.text_height span{
	color:#8667B4;
	font-family:var(--bold);
}
.packages .text_animation {
    margin-top: 0;
    background: #fff;
    color: var(--main-color);
}
.how_works {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:20px;
}
.flex_banner picture img {
    margin: 30px auto 0;
    display: table;
    width: 100%;
    height: auto;
    object-fit: cover;
    pointer-events: none;
    max-width: 1300px;
    object-position: bottom;
}
.play_btn {
    display: flex;
    align-items: center;
    margin-left: 10px;
    padding: 8px 12px;
    border-radius: 65px;
    position: relative;
    transition: var(--ease);
    font-size:26px;
}

.play_btn:before {
    content: '';
    position: absolute;
    top: 1px;
    left: 5px;
    background-position: center;
    border-radius: 65px;
    transition: var(--ease);
    background: var(--gradient-1);
    width: 100%;
    height: 100%;
    z-index: 0;
    max-width: 57px;
    max-height: 57px;
}
.play_btn:hover {
	color:#fff;
}
.play_btn:hover:before {
    max-width: 100%;
}
#backgroundvid {
    min-width: 100%;
    width: 100%;
    height: 100%;
    background-size: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/*section 2*/

.grid_better_way {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 50px;
}
.grid_counts{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.first_mover {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    grid-gap: 150px;
    max-width: 900px;
    margin: 0 auto;
}

.counts_card{
	padding:50px 30px 30px;
	background: linear-gradient(45deg, rgba(237,237,237,1) 0%, rgba(222,239,255,1) 100%);
	border-radius:35px;
	box-shadow: 1px 3px 6px #00000029;
	text-align:center;
}

.counts_card h2{
	margin-bottom:10px;
}
.counts_card picture img{
	max-width:55px;
	margin:0 auto 10px;
}

.grid_better_way  .grid_better_way .better_way_content .text_animation{
    margin-top: 10px;
}
.better_way_content h2 {
    margin-bottom: 20px;
    max-width: 600px;
    font-size: 48px;
    color: #3c3c3c;
    line-height: 1.1;
}
.experience_sec .better_way_content h2 {
    max-width: 650px;
    color:#fff;
}
.experience_sec .better_way_content p.para_text {
	color:#fff;
}
.experience_sec {
    background-size: cover;
    background-position: center ;
}
/*slide navigation*/


section.nav_tab {
    padding: 80px 0 0;
}
.menu, .price_menu {
  list-style: none;
  position: relative;
  display: flex;
  padding: 5px;
  border-radius: 75px;
  background: #EFF0F9;
  box-shadow: inset 0px 3px 6px #00000029;
  margin-left: 0;
  flex-wrap:wrap;
}
ul.menu > li:first-child{
	min-width:222px;
}

.menu:before, .price_menu:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  transform: translateX(var(--transformJS));
  width: var(--widthJS);
  height: calc(100% - 10px);
  border-radius: 75px;
  background: #fff;
  box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.2);
  transition: var(--ease);
}

.menu li a, .price_menu li a {
  position: relative;
  padding: 8px 20px;
  font-weight: 500;
  z-index: 1;
}

.menu li:not(:last-child), .price_menu li:not(:last-child) {
  margin-right: 50px;
}
.sliding_navigation {
    display: flex;
    justify-content: center;
}
.sliding_navigation + .nav_tab > div, .sliding_navigation.price + .nav_tab > div {
	width: 90%;
	margin: 0 auto;
	display: none;
}
.sliding_navigation.price + .nav_tab > div{
	width:100%;
}
.sliding_navigation + .nav_tab > div.activ, .sliding_navigation.price + .nav_tab > div.activ{
	display: block;
}
.nav_grid_two {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    grid-gap: 100px;
    align-items:center;
}
.nav_grid_two, .packages_grid{
    animation: fadeEffect 280ms linear both;
}

.content > picture {
    max-width: 1020px;
    width: 100%;
    display: table;
    margin: 0 auto;
}

/*slider section*/

.slide_cards {
    padding: 50px 20px;
    text-align: center;
    border-radius: 35px;
    background: linear-gradient(45deg, rgba(252,221,255,1) 0%, rgba(191,223,255,1) 100%);
    box-shadow: 1px 3px 6px #00000029;
}
.slide_cards:nth-child(even){
	background: linear-gradient(45deg, rgba(221,255,245,1) 0%, rgba(191,223,255,1) 100%);
}
.slide_cards picture {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: table;
    margin:0 auto 20px;
    background: linear-gradient(45deg, rgba(254,245,255,1) 25%, rgba(191,223,255,1) 100%);
    position:relative;
}
.slide_cards picture:after {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    z-index: 13;
    bottom: 10px;
    border-radius: 50%;
    right: 5px;
}
.slide_cards.yellow picture:after{
    background-color: #DDC45F;
}
.slide_cards.orange picture:after{
    background-color: #FD9D01;
}
.slide_cards.blue picture:after{
    background-color: #1F97E7;
}
.slide_cards.green picture:after{
    background-color: #48AF1B;
}
.slide_cards.pink picture:after{
    background-color: #EB3BB5;
}
.slide_cards picture img {
    height: 100%;
    object-fit: cover;
}
.slide_cards h3 {
    margin-bottom: 20px;
    text-wrap: pretty;
}
.slide_cards > p {
	margin-bottom:10px;
}
.flex_cat {
	display:flex;
	align-items:center;
	justify-content:center;
	grid-gap:8px;
	flex-wrap:wrap;
	margin-top:20px;
}
.flex_cat span {
    background-color: #fff;
    padding: 4px 20px;
    display: flex;
    border-radius: 30px;
    box-shadow: 0px 3px 6px #00000029;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.flex_cat span .icon{
	width:25px;
	height:25px;
	background-size:22px;
	background-repeat:no-repeat;
	background-position:center;
	display:block;
	margin-right:5px;
}
.flex_cat .icon.electrician{
	background-size: 17px;
}
.flex_cat .icon.junk_removal{
	background-size: 14px;
}

.grid_two {
    display: grid;
    grid-template-columns:  1fr 0.9fr;
    align-items: center;
    grid-gap: 50px;
}
.automation_sec .grid_two picture {
    margin: 0 auto;
}
.slide_container .slick-slide {
    margin-right:30px;
    height: auto !important;
    min-height: 640px !important;
}

.slide_container .slick-list {
	margin: 0 -30px;
  }
.slide_container .slick-track {
    margin-left: 120px !important;
}
.best_of_all{
	margin-top:100px;
  background: linear-gradient(45deg, rgba(252,221,255,1) 0%, rgba(191,223,255,1) 100%);
}

.packages_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
    max-width: 1000px;
    margin: 60px auto 0;
}
.packages_container {
    background: linear-gradient(45deg, rgba(252,221,255,1) 0%, rgba(191,223,255,1) 100%);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0px 3px 6px #00000029;
    text-align:left;
    position:relative;
}
.packages_container:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(135deg, rgb(199 199 199 / 30%), rgb(199 199 199 / 30%) 1px, #46529800 2px, #46529800 10px);
    opacity: 0.75;
    border-radius: 30px;
}
.packages_container.standard {
    background: #f7f7f7 !important;
    opacity: 0.6;
    cursor: not-allowed;
}
.packages_container.standard:after {
	background: none;
}
.packages {
    position: relative;
    z-index: 1;
}
.join_moovaz .banner_text_content {
    max-width: 1000px;
}

/*accordin*/
.accordion {
    margin-top: 60px;
}
.accordion .accordion-item {
    overflow: hidden;
    box-shadow: 0px 3px 6px #00000029;
    padding: 35px 65px 35px 35px;
    border-radius: 65px;
    border:1px solid #C3C3C3;
	cursor:pointer;
}
.accordion .accordion-item + .accordion-item{
    margin-top: 25px;
}
.accordion-contant p{
	margin:0;
}
.accordion-contant {
    padding: 20px 25px;
    display: none;
    background-color: #fafafa;
    border-radius: 35px;
    margin-top: 20px;
    color: #2c2c2c;
}
/*.accordion-item:nth-child(even) .accordion-contant{
	background: linear-gradient(45deg, rgb(221, 255, 245) 0%, rgb(191, 223, 255) 100%);
}*/
.accordion-titel h2 {
	position:relative;
	font-size:30px;
}
.accordion-titel h2:after {
    content: '';
    position: absolute;
    right: -20px;
    width: 29px;
    height: 29px;
    background-size: 27px;
    background-repeat: no-repeat;
    background-position: 2px 1px;
    transition: var(--ease);
    top: 1px;
}
.accordion-titel h2.rotate:after{
	transform: rotate(45deg);
}
footer{
	background-color:#000;
	margin-top:150px;
}
footer .default_container {
	max-width: 1540px;
}
.old_school {
    padding: 120px 50px;
    background: linear-gradient(45deg, rgba(254,245,255,1) 25%, rgba(191,223,255,1) 100%);
    border-radius: 35px;
    margin: -320px auto 0;
}
.footer_get_started {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    align-items: center;
    grid-gap: 100px;
}
.footer_get_started .arrow {
    border-radius: 65px;
    max-width: 330px;
    margin: 0 auto;
    width: 100%;
}
.footer_get_started .arrow span, .footer_get_started h2{
	font-size:42px;
}
.footer_get_started .d_btn.arrow:before {
    min-width: 70px;
    min-height: 70px;
    background-size: 39px;
}
.footer_get_started .arrow:after {
    min-width: 70px;
    min-height: 70px;
}
.footer_get_started .d_btn.arrow:hover span:after{
	right: -85px;
}
.footer_get_started .d_btn.arrow span:after {
    min-width: 70px;
    min-height: 70px;
    top: -8px;
    right: -22px;
    background-size: 39px;
}
.footer_links_grid {
    display: grid;
    grid-template-columns: 0.3fr 0.3fr 1fr;
    grid-gap: 20px;
}

.footer_links_grid p ,.footer_links_grid label{
	font-size:15px;
	color:#fff;
	display:block;
} 

.footer_links_grid b {
	display:block;
	color:#fff;
	font-size:18px;
	font-family:var(--bold);
	margin-bottom: 10px;
} 
.footer_links_grid a + b {
	margin-top:30px ;
}
.footer_links_grid a {
	font-size:16px;
	color:#888;
	display:block;
	transition:var(--ease);
}
.footer_links_grid a + a {
	margin-top:8px ;
}
.footer_links_grid a:hover {
	color:#fff;
}
.footer_subscribe .footer_logo{
    max-width: 120px;
    width: 100%;
    display: table;
    margin-bottom:20px;
}
.subscribe_container {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content:space-between;
    border-radius: 65px;
    overflow:hidden;
}
.subscribe_container .subscribe_btn {
    background: var(--gradient-1);
    display: table;
    padding: 8px 22px;
    font-size: 18px !important;
    margin: 5px !important;
    color: #fff;
    border-radius: 65px;
    width: auto;
    background-size: 400% 400%;
    animation: gradient 3s ease 3s both infinite reverse;
}
.subscribe_container input[type="text"] {
	border:0;
	outline:0;
	padding: 15px 5px 15px 15px;
	flex:1;
	font-family: var(--regular);
}

.agree_container label{
    display: flex;
    cursor:pointer;
    align-items: center;
    margin-bottom:0;
}
.agree_container label p{
    position: relative;
    margin-bottom:0;
    
    color:#888;
    font-size:16px;
    transition:var(--ease);
}
.agree_container label:hover p{
    color:#fff;
}
.footer_social {
    display: flex;
    align-items: center;
    grid-gap:10px;
    margin-top:10px;
}
.footer_social  a {
    padding: 0px;
    background-color: #fff;
    width: 35px;
    height: 35px;
    text-align: center;
    display: grid;
    place-items: center;
    border-radius: 4px;
    color: #021527;
    font-size: 20px;
    border: 1px solid transparent;
    margin-top:0 !important;
}
.footer_social a:hover {
	background-color:#000;
    border: 1px solid #333;
}
.social_icon {
    width: 30px;
    height: 30px;
    border-radius: 50px;
    transition: all 250ms ease;
    background-repeat:no-repeat;
    background-position:center;
    background-size:20px;
}

/* Nina */
.button--nina {
	padding: 0;
	color: #fff;
	overflow: hidden;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
	border: 0;
    background: transparent;
    font-size:18px;
    font-family: var(--regular);
    cursor: pointer;
}
.button--nina > span {
	display: inline-block;
	opacity: 0;
	color: #fff;
	-webkit-transform: translate3d(0, -10px, 0);
	transform: translate3d(0, -10px, 0);
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.button--nina::before {
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 12px 0 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	transition: transform 0.3s, opacity 0.3s;
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.login_btn:hover .button--nina:before {
	/*pointer-events:none;*/
}
.login_btn:hover .button--nina:before {
	opacity: 0;
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}
.login_btn:hover .button--nina > span {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.login_btn:hover .button--nina > span:nth-child(1) {
	-webkit-transition-delay: 0.045s;
	transition-delay: 0.045s;
}
.login_btn:hover .button--nina > span:nth-child(2) {
	-webkit-transition-delay: 0.09s;
	transition-delay: 0.09s;
}
.login_btn:hover .button--nina > span:nth-child(3) {
	-webkit-transition-delay: 0.135s;
	transition-delay: 0.135s;
}
.login_btn:hover .button--nina > span:nth-child(4) {
	-webkit-transition-delay: 0.18s;
	transition-delay: 0.18s;
}
.login_btn:hover .button--nina > span:nth-child(5) {
	-webkit-transition-delay: 0.225s;
	transition-delay: 0.225s;
}
.login_btn:hover .button--nina > span:nth-child(6) {
	-webkit-transition-delay: 0.27s;
	transition-delay: 0.27s;
}
.login_btn:hover .button--nina > span:nth-child(7) {
	-webkit-transition-delay: 0.315s;
	transition-delay: 0.315s;
}
.login_btn:hover .button--nina > span:nth-child(8) {
	-webkit-transition-delay: 0.36s;
	transition-delay: 0.36s;
}
.login_btn:hover .button--nina > span:nth-child(9) {
	-webkit-transition-delay: 0.405s;
	transition-delay: 0.405s;
}
.login_btn:hover .button--nina > span:nth-child(10) {
	-webkit-transition-delay: 0.45s;
	transition-delay: 0.45s;
}


.counts_card:nth-child(2), .counts_card:nth-child(3), .accordion-contant, .packages_grid .packages_container:nth-child(1), .slide_cards {
    background: var(--gradient-3);
    background-size: 400% 400%;
    animation: gradient 8s ease infinite;
}
.best_of_all, .old_school{
    background: linear-gradient(-45deg, #bfdfff, #fcddff, #bfdfff, #fef5ff);
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
}
.slide_cards:nth-child(even){
	background: linear-gradient(-45deg,  #ddfff5,  #bfdfff, #ddfff5, #bfdfff);
	background-size: 400% 400%;
	animation: gradient 10s ease infinite;
}
.counts_card:nth-child(3), .packages_grid .packages_container{
    background: var(--gradient-3);
    background-size: 400% 400%;
    animation: gradient 8s ease 3s both infinite reverse;
}

.subscription_sec {
    width: 100vw;
    min-height: 100vh;
    background-color: #fffffff2;
    background-position: center;
    background-size: cover;
    background-blend-mode: overlay;
    padding-bottom:300px;
    padding-top:150px;
}
.subscription_grid {
	display:none;
    grid-template-columns: 1fr 1fr;
}
.subscription_grid.open {
    display: grid;
}
.sub_grid_left {
    padding: 40px 100px;
    border-radius: 10px 0 0 10px ;
    box-shadow: 0px 3px 6px #00000029;
    text-align: left;
    position: relative;
    background: linear-gradient(-45deg, #bfdfff, #fcddff, #bfdfff, #fcddff);
    background-size: 400% 400%;
    animation: gradient 30s ease infinite;
}
.sub_grid_left:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(135deg, rgb(199 199 199 / 30%), rgb(199 199 199 / 30%) 1px, #46529800 2px, #46529800 10px);
    opacity: 0.75;
}
.sub_grid_left > *{
	position:relative;
	z-index:1;
}
.yearly_subscription a {
    max-width: 150px;
}
.yearly_subscription {
    display: flex;
    align-items: center;
}
.content_head .save_badge {
    font-family: var(--regular);
    font-size: 10px;
    padding: 2px 6px;
    background: var(--main-color);
    color: #fff;
    border-radius: 5px;
    opacity: 0.7;
    position: relative;
    top: -2px;
}
.subscription_grid p, .subscription_grid a {
	margin:0;
	font-size: 15px;
}
.subscription_grid ul.rounded {
    margin-left: 40px;
}
.subscription_grid #user-nav-tabs {
    margin-left: 0px;
    display: flex;
    align-items: center;
    grid-gap:10px;
    justify-content: space-between;
}
.subscription_grid #user-nav-tabs li{
	margin-bottom:0;
}
.subscription_grid h2 {
    margin: 30px 0;
}
.subscription_grid h3 {
    margin: 20px 0;
    font-size: 18px;
}
.subscription_grid li{
	font-size: 15px;
	margin-bottom:6px;
}
.subscription_grid hr{
	margin: 15px 0;
}
.packages hr{
	background-color: transparent;
}
.standard .packages hr{
	background-color: #C7C7C7;
}
.packages .d_btn.alternate {
    margin: 0 auto;
    /*transform: scale(1.2);*/
}
.sub_grid_price{
    display: grid;
    grid-template-columns: 1fr 0.3fr;
    grid-gap: 10px;
}
.table_grid {
    display: grid;
    grid-template-columns: 1fr 0.3fr;
    grid-gap: 10px;
    padding:0 25px;
    align-items: center;
}
.sub_grid_price span{
	text-align:right;
}
.table_grid span{
	text-align:center;
}
.bottom_links {
    display: flex;
    align-items: center;
    grid-gap: 40px;
    margin-top: 30px;
}
.bottom_links a{
	font-family:var(--bold);
	text-decoration:underline;
}
.bottom_links a:hover{
	text-decoration:none;
}
.table_grid .small , .input_outer p.small{
    font-size: 12px;
    color:#000;
    display:block;
}
.small.terms a{
	font-size:inherit;
	color:inherit;
	text-decoration:underline;
	font-family:var(--medium);
}
p.proving {
    color: #888;
    font-size: 14px;
    margin-top:15px;
}
.small.terms a:hover{
	color:var(--main-color);
}
.table_border {
    padding: 15px 0;
    border: 1px solid #C1C1C1;
    border-radius: 10px;
    max-width: 400px;
    margin-top:20px;
}
.table_border .table_grid + .table_grid{
    padding-top: 10px;
    border-top: 1px solid #c1c1c1;
    margin-top: 10px;
}
.table_grid input[type="number"] {
    outline: 0;
    border: 0;
    background: transparent;
    border-radius: 20px;
    padding: 6px 20px;
    max-width: 100px;
    text-align: center;
}
.sub_grid_right {
    background-color: #F7F8FB;
    border-radius: 0 10px 10px 0;
    position:relative;
    padding: 40px;
    height:712px;
}
input.card-input-element.d-none {
    appearance: none;
    display:none;
}

#content2,
#content3 { display: none; }

label {
    display: inline-block;
    margin-bottom: .5rem;
}
.card-input-element + .card {
    justify-content: center;
    color: var(--primary);
    -webkit-box-shadow: none;
    border: 1px solid #c1c1c1;
    border-radius: 10px;
    min-width: 170px;
    padding: 18px;
}
.card-input-element:checked + .card p {
	color:var(--main-color);
}
.card-input-element:checked + .card {
    border: 1px solid var(--main-color);
    box-shadow: 0px 0px 5px #639B6B;
    -webkit-transition: border 0.3s;
    -o-transition: border 0.3s;
    transition: border 0.3s;
}
.card-radio-btn .content_head {
    color: #333;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
    font-family: var(--bold);
}
.card-radio-btn .content_sub {
    color: #9e9e9e;
    font-size: 14px;
}
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
}
.custom_radio_flex .card-radio-btn:first-child{
	margin-right:20px;
}
#user-nav-tabs li a {
    padding-bottom: 12px;
    position:relative;
}
#user-nav-tabs li a:after {
	content:'';
	position:absolute;
	width:100%;
	height:6px;
	background-color:#c1c1c1;
	left:0;
	bottom:0;
	border-radius:50px;
	transition:var(--ease);
}
#user-nav-tabs li.active a:after {
	background-color:var(--main-color);
}
.change_tab {
    width: 100%;
}
.right_outer_flex{
    width: 100%;
    display: flex;
    min-height: 540px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
}
.right_outer_flex.sept_height{
	min-height:600px;
}
.input_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.input_flex .input_outer {
	width:  100%;
}
.input_flex .input_outer.dual {
	width: calc(50% - 10px);
}
.input_outer label {
    display: block;
    color: #000;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 5px;
    transition: all 250ms ease;
    font-family: var(--medium);
}
.input_outer label:has(+ input:focus), .input_outer label:has(+ .tag-field .js-tag-input:focus) {
	color:var(--main-color);
}
.input_outer input, .input_outer  textarea {
    padding: 8px 12px;
    width: 100%;
    border-radius: 4px;
    border: 0;
    outline: 0;
    font-size: 13px;
    font-weight: 100;
    line-height: 1.3;
    border: 1px solid #c1c1c1;
    font-family: var(--popr);
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
}
#register_form input.error{
    border: 1px solid red;
}
.input_flex .input_outer:not(:last-child){
	margin-bottom:15px;
}
.input_outer.select_arrow:after {
    content: '\f0d7';
    position: absolute;
    top: 16px;
    right: 12px;
    font-size: 35px;
    color: var(--main-color);
    font-family: fontawesome;
}
.tag-field {
    display: flex;
    flex-wrap: wrap;
    border-radius: 4px;
    background-color: #fff;
    align-items: flex-start;
    align-content: flex-start;
    padding: 6px ;
    border:1px solid #c1c1c1;
}
.js-tags .js-tag:not(:last-child){
	margin-right:8px;
	margin-bottom:8px;
}
.js-tag + .js-tag-input{
	border: 1px solid #eee;
	min-height: 50px;
}

.tag-close .fa-times{
    font-size: 14px;
    position: relative;
    pointer-events:none;
    line-height:1.8;
}
.tag-field input {
    width: 100%;
    min-height: 38px;
    /*background-color: #fafafa;*/
    border: 0;
}
.tag {
    display: flex;
    align-items: center;
    padding: 6px 15px;
    color: #fff;
    background: var(--main-color);
    border-radius: 15px;
    cursor: pointer;
    font-size: 13px;
    position: relative;
    transition: 0.35s all;
    padding: 6px 35px 6px 16px;
    text-transform:uppercase;
}
.tag-close {
    margin-left: 0;
    transition: 0.35s all;
    overflow: hidden;
    width: 24px;
    height: 24px;
    display: grid;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 2px;
    top: 2px;
    border-radius: 50%;
    font-size: 20px;
    background: #fff;
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}
.input_outer#card_number_img{
	position:relative;
}
.input_outer#card_number_img:after {
    content: '';
    position: absolute;
    bottom: 8px;
    right: 10px;
    width: 100%;
    height: 19px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    pointer-events:none;
}
.input_outer#cvc_number_img{
	position:relative;
}
.input_outer#cvc_number_img:after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 10px;
    width: 100%;
    height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    pointer-events:none;
}

.ripple_btn {
    position: relative;
    display: inline-block;
    padding: 12px 36px;
    margin-top: 10px !important;
    color: #fff;
    text-decoration: none;
    font-size: 17px !important;
    border-radius: 40px;
    overflow: hidden;
    background: var(--main-color);
    width: 100%;
    text-align: center;
    cursor:pointer;
}
.ripple_btn:before{
	content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--ease);
    animation: glassy 5s ease infinite;
}
.ripple_btn:hover:before{
    animation: none;
	
}
.ripple_btn span {
  position: absolute;
  background: #fff;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
  animation: animate_ripple 1s linear infinite;
}
.input_inc {
    position: relative;
    border: 1px solid #c1c1c1;
    border-radius: 65px;
}
.input_inc span.dec_btn {
	left: 2px;
}
.input_inc span {
    position: absolute;
    top: 2px;
    right: 2px;
    border-radius: 65px;
    height: 23px;
    font-size: 22px;
    cursor: pointer;
    width: 23px;
    display: grid;
    place-content: center;
}
.input_inc span:hover {
    background: #c1c1c1;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.back_to_home{
	position:relative;
	color:var(--main-color);
	padding-left: 30px;
}
.back_to_home:before {
    content: '';
    position: absolute;
    display: inline;
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    background-size: 15px;
    transform: scaleX(-1);
    transition:var(--ease);
    left: 0px;
}
.back_to_home:hover:before{
    left: -3px;
}
.copy_right {
    padding: 15px 0;
    border-top: 1px solid #c1c1c1;
}
.copy_right p{
    margin: 0;
    color: #c1c1c1;
    font-size: 16px;
    text-align: center;
}
footer section {
    padding: 100px 0 80px;
}


.preview_postcode_container {
    position: relative;
    margin-top: 50px;
}
.preview_postcode p b {
    display: table;
    margin: 30px auto 20px;
}
.welcome_login{
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 20px;
    flex-direction: column;
    height: 100%;
    text-align: center;
    padding: 40px;
    min-height:40vh;
}
.welcome_login .arrow{
	font-size:18px;
}
.preview_postcode_container:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    backdrop-filter: blur(8px);
    background-color: rgb(255 255 255 / 65%);
    border-radius: 10px;
}
.preview_postcode {
    padding:40px 60px;
    text-align: center;
}
.preview_postcode h2{
    margin-top: 0;
    font-family: var(--medium);
    font-weight: normal;
    font-size: 24px;
}
.welcome_login h2{
    font-family: var(--medium);
    font-weight: normal;
    font-size: 24px;
	margin:0;
}
.para_grid {
    display: grid;
    grid-template-columns: 1fr 0.3fr;
    grid-gap: 10px;
}
.para_grid + .para_grid{
    margin-top:6px;
}
.text_grid {
    margin-top: 20px;
}
span.info {
    min-width: 50px;
    height: 50px;
    display: table;
    background-color: var(--main-color);
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 28px;
}
span.loading {
    min-width: 15px;
    height: 15px;
    display: table;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px;
    transform-origin: center center;
    animation: loading_circle 1s infinite linear;
}

.prospecting_sec {
    background-repeat: no-repeat;
    background-position: center bottom ;
    background-size: 100% 100%;
    padding: 0 0 200px;
}
.sample_sec {
    height: 450px;
    width: 100%;
    max-width: 950px;
    background-color: #fafafa;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0px 3px 6px #00000029;
}
.territory_sec{
	padding-top:0;
}
@keyframes loading_circle{
	0%{
		transform:rotate(0deg);
	}
	100%{
		transform:rotate(360deg);
	}
}
.para_grid p:first-child{
	text-align:left;
}
.para_grid p:last-child{
	text-align:right;
}
.para_grid p span{
	margin-left:auto;
}
.flex_local_movers {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background-color: #000;
    padding: 4px 15px 4px 4px;
    border-radius: 65px;
    margin-top: 50px;
}
.flex_local_movers p {
    color: #fff;
    font-size: 13px;
}
.gradient_text {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    color: transparent;
    animation: gradient 5s ease infinite;
    background-size: 400% 400%;
    font-size: 25px;
    font-family: var(--bold);
    margin:30px 0;
}
.footer_first_sec .grid_first_card picture {
    width: 100%;
    max-width: 235px;
    display: table;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
}
.footer_first_sec .grid_first_card >  p {
    font-size: 18px;
    color: #fff;
    margin: 20px 0 0;
    max-width: 300px;
}
.grid_card {
    padding:50px 30px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    min-width:350px;
    grid-gap: 20px;
}
.contact_details > P {
    font-size: 16px;
    margin-bottom: 5px;
}
.contact_details > a {
    font-size: 16px;
    font-weight: bold;
    font-family: var(--bold);
    margin-bottom: 0;
}
.grid_card > picture {
    width: 40px;
}
.footer_first_sec {
    display: grid;
    grid-template-columns: 1fr 0.8fr 0.8fr;
    grid-gap: 40px;
    margin-bottom: 50px;
    align-items: flex-start;
}
/*.footer_subscribe {
    max-width: 500px;
    margin-left: auto;
}*/
@keyframes animate_ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 0.5;
  }
  100% {
    width: 500px;
    height: 500px;
    opacity: 0;
  }
}


@keyframes ripple{
  to{
    transform: scale(2.5);
    opacity: 0;
  }
}

@keyframes checked-box {
	0% {
		width: 0;
		height: 0;
		border-color: #fff;
		transform: translate(0,0) rotate(45deg);
	}
	33% {
		width: 4px;
		height: 0;
		border-color: #fff;
		transform: translate(0,0) rotate(45deg);
	}
	100% {
		width: 4px;
		height: 8px;
		border-color: #fff;
		transform: translate(0,-8px) rotate(45deg);
	}
}

@keyframes bounce {
	0% {
		transform: scale(1);
	}
	33% {
		transform: scale(.7);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes fadeEffect {
	0%{
		opacity:0;
		transform:translateY(5px);
	}
	100%{
		opacity:1;
		transform:translateY(0px);
	}
}

@keyframes puls {
	0%, 100%{
		transform:scale(1);
	}
	30%, 60%{
		transform:scale(0.95);
	}
}

@keyframes gradient {
	0%, 100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

@keyframes glassy{
	0%, 40%{
    	left: -100%;
	}
	60%, 100%{
    	left: 100%;
	}
}

@media (min-width: 1900px) {
section {
    padding: 250px 0;
}
footer {
    margin-top: 250px;
}
.flex_banner {
    margin-top: 200px;
}
}

@media (max-width: 1600px) {
	.slide_container .slick-slide{
		margin: 15px;
	}
	.slide_container .slick-track {
	    margin-left: 0px !important;
	}
	.slide_container .slick-list {
	    margin: 0;
	}
}

@media (max-width: 1550px) {
.header_flex img {
    right: 0;
}
}

@media (max-width: 1350px) {
.header_flex {
    right: 0;
}
}

@media (max-width: 1200px) {
.subscription_grid {
    grid-template-columns: auto;
    max-width: 768px;
    margin: 0 auto;
    grid-gap: 30px;
}
.sub_grid_right, .sub_grid_left {
    border-radius: 10px;
}
.change_tab.submit {
    position: static;
    width: 100%;
}
.sub_grid_right, .sub_grid_right.sept_height{
	min-height:auto;
	height:auto;
}
.footer_first_sec {
    grid-template-columns: 1fr 1fr;
}
.grid_first_card{
    grid-column: span 2;
}
}

@media (max-width: 1180px) {
.table_container tr td:not(first-child), .table_container tr th:not(first-child) {
    max-width: 120px;
    min-width: 120px;
}
.table_container tbody:after {
    height: calc(100% - 125px);
    top: 104px;
    left: 295px;
}
.footer_links_grid {
    grid-template-columns: 1fr 1fr;
}
}

@media (max-width: 992px) {
	
h1 {
    font-size: 42px;
}
h2 {
    font-size: 26px;
}
p, .list_style li, .u_link, .menu li a, .price_menu li a {
    font-size: 17px;
}
section {
    padding: 100px 0;
}
.banner_text_content p {
    margin: 30px auto;
    font-size: 22px;
    max-width: 580px;
}
.automation_sec .grid_two picture {
    max-width: 400px;
}
.grid_better_way, .grid_two {
    grid-template-columns: auto;
    text-align: center;
    max-width: 768px;
    margin: 0 auto;
}
.text_animation {
    margin: 0 auto 30px;
}
.better_way_content h2, .experience_sec .better_way_content h2 {
    max-width: 100%;
}
.grid_two picture {
    max-width: 568px;
}
.footer_get_started h2, .title_center, .better_way_content h2 {
    font-size: 34px;
}
.better_way_content .d_btn.arrow {
    margin: 40px auto 20px;
}
.footer_get_started h2 {
    text-align:center;
}
.first_mover{
	grid-gap: 30px;
	max-width:100%;
	grid-template-columns: 1fr 1fr;
}
.grid_counts {
    gap: 20px;
}
.grid_better_way, .grid_two{
	grid-template-columns: auto;
    text-align: center;
}
.footer_links_grid {
    /*grid-template-columns: 1fr 0.5fr 0.5fr;*/
}
.sliding_navigation + .nav_tab > div, .sliding_navigation.price + .nav_tab > div{
	width:100%;
}
.grid_two {
    grid-gap: 20px;
}
section.nav_tab {
    padding: 50px 0 0;
}
.prospecting_sec {
    padding: 0 0 100px;
    background-size: 1700px;
}
.grid_two picture {
    margin: 0 auto;
}
.footer_links_grid {
    grid-gap: 30px;
}
.accordion-titel h2 {
    font-size: 24px;
}
.menu li:not(:last-child), .price_menu li:not(:last-child){
	margin-right: 0;
}
.menu li.active a {
    background: #fff;
    border-radius: 35px;
    box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.2);
}
.nav_grid_two {
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}
.menu::before {
	display: none;
}
.packages_grid {
    grid-template-columns: auto;
    max-width: 580px;
    margin: 0 auto;
}
.table_container {
    overflow-x: auto;
}
.table_container table{
	width:1130px;
}
.table_container tbody:after {
    height: calc(100% - 95px);
    top: 74px;
    left: 305px;
}
.table_container tr td:not(first-child), .table_container tr th:not(first-child) {
    max-width: 170px;
    min-width: 170px;
}
.d_btn, .play_btn {
    font-size: 24px;
}
.d_btn.arrow:after {
    min-width: 45px;
    min-height: 45px;
}
.play_btn:before {
    max-width: 52px;
    max-height: 52px;
}
.play {
    background-position: 12px 10px;
}
.d_btn.arrow span:after {
    top: -5px;
    right: -22px;
    background-size: 20px;
}
.d_btn.arrow:before {
    top: 8px;
    right: 6px;
    background-size: 20px;
}
.d_btn.arrow.alternate span {
    top: -1px;
    font-size: 22px;
    line-height: 1.2;
}
.d_btn.arrow.alternate:before {
    top: 8px;
}
.d_btn.arrow.alternate:after {
    min-width: 47px;
    min-height: 47px;
}
.footer_subscribe {
    grid-column: span 2;
}
.d_btn.arrow.alternate {
    min-height: 55px;
}
.d_btn.arrow.alternate span {
    padding: 12px 65px 12px 20px;
}
.d_btn.animate, .l_btn{
	font-size:18px;
}
.nav_container{
	max-width:650px !important;
}
.nav_container .nav_links a{
	font-size:18px;
}
.nav_container.mobile_menu{
    position: fixed;
    max-width: 500px;
    right: 0px;
    width: 100%;
    margin: 0;
    top: 0;
    padding: 0;
    height: 100vh;
    border-radius: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-gap: 40px;
    transform: translate(100%, 0);
    z-index:1;
    transition: var(--ease);
}
.mobile_menu.open{
    transform: translate(0%, 0);
}
.nav_container.mobile_menu .close_menu{
    content: '';
    position: absolute;
    min-width: 40px;
    min-height: 40px;
    top: 4px;
    right: 4px;
    z-index: 9;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
    border-radius: 50%;
    cursor:pointer;
}
.nav_links, .main_links{
	flex-direction:column;
	grid-gap:20px;
}
.nav_links > li + li, .main_links {
    margin-left: 0;
}
 .header_flex .mobile_btn, .nav_container.mobile_menu .close_menu {
    display: block;
}
.header_flex {
    justify-content: space-between;
}
.flex_banner {
    margin-top: 200px;
}
}

@media (max-width:768px){

.slide_cards h3{
    font-size: 22px;
}
.text_animation{
    font-size: 14px;
}
section {
    padding: 100px 0;
}
.first_mover {
    grid-gap: 10px;
    grid-template-columns: auto;
}
.grid_counts{
    grid-template-columns: auto;
}
.grid_better_way{
	max-width:580px;
	margin:0 auto;
}
.nav_grid_two{
    grid-template-columns: auto;
}
.menu, .price_menu {
    background-color: transparent;
    box-shadow: none;
    justify-content: center;
    grid-gap: 10px;
}
.prospecting_sec {
    background-size: cover;
}
section.nav_tab {
    padding: 60px 0 0;
    max-width: 580px;
    margin: 0 auto;
}
.accordion .accordion-item {
    padding: 20px 25px 20px 20px;
    border-radius: 25px;
}
.accordion-contant {
    border-radius: 20px;
}
.accordion-titel h2 {
    font-size: 20px;
    padding-right:20px;
}
.accordion-titel h2:after {
    right: -16px;
    top: -2px;
    background-size: 22px;
}
.old_school {
    padding: 80px 20px;
}
.footer_get_started .arrow {
    transform: scale(0.7);
}
.footer_links_grid {
    grid-template-columns: 1fr 1fr;
}
.menu li.active a, .price_menu li.active a {
    background: var(--main-color);
    color: #fff;
}
.menu li a, .price_menu li a{
	background-color:#f9f9f9;
    border-radius:65px;
}
.menu:before, .price_menu:before {
    content: none;
}
.sub_grid_left {
    padding: 40px;
}
.sub_grid_right {
    padding: 40px 20px;
}
ul.menu > li:first-child {
    min-width: auto;
}
.footer_first_sec {
    grid-template-columns: auto;
    max-width: 370px;
}
.grid_first_card {
    grid-column: auto;
}
h1 {
    font-size: 38px;
}
.d_btn, .play_btn {
    font-size: 18px;
}
.d_btn.arrow.alternate span {
    top: 2px;
    font-size: 18px;
}
.d_btn.arrow.alternate {
    min-height: 50px;
}
.d_btn.arrow.alternate:after {
    min-width: 42px;
    min-height: 42px;
}
.d_btn.arrow.alternate:before {
    top: 5px;
    right: 5px;
    background-size: 20px;
}
.play {
    padding: 4px 10px 4px 50px;
    background-size: 14px;
    background-position: 10px 8px;
}
.play_btn:before {
    max-width: 45px;
    max-height: 45px;
}
.d_btn.arrow:after {
    min-width: 40px;
    min-height: 40px;
}
.d_btn.arrow {
    padding: 12px 65px 12px 25px;
}
.d_btn.arrow:before {
    top: 4px;
    right: 5px;
}
.d_btn.arrow span:after {
	top:-8px;
}

}

/*mobile_menu*/
.header_flex .ripple_btn, .nav_container.mobile_menu .close_menu {
    display: none;
}
.header_flex .ripple_btn{
	width:auto;
}
li.ai_img {
    padding-right: 25px;
}




@media (max-width:657px){
.flex_banner {
    margin-top: 150px;
}
h1 {
    font-size: 32px;
}
h2 {
    font-size: 20px;
}
.flex_banner > picture {
    margin-bottom: 0;
    padding-bottom:60px;
}	
.banner_sec {
    margin-bottom: 0;
}	
.footer_links_grid {
    grid-template-columns: auto;
}
.agree_container label p {
    top: 0px;
}
.slide_container .slick-slide {
    min-height: auto !important;
}
.subscription_grid #user-nav-tabs {
    flex-direction: column;
}
#user-nav-tabs li a:after {
    width: 20px;
    height: 20px;
    left: 0;
    bottom: 12px;
}
#user-nav-tabs li a {
    padding-left: 28px;
}
.bottom_links {
    grid-gap: 20px;
    flex-wrap: wrap;
}
.footer_subscribe {
    margin-left: 0;
}
}
@media (max-width:580px){
.how_works {
    flex-direction: column;
    grid-gap: 20px;
}
.play_btn{
	margin-left:0;
}
p, .list_style li, .u_link, .menu li a, .price_menu li a {
    font-size: 16px;
}
.footer_get_started h2, .title_center, .better_way_content h2 {
    font-size: 30px;
}
.footer_get_started .arrow {
    transform: scale(0.5);
}
.text_animation {
    padding: 6px 15px;
    /*border-radius: 8px;*/
}
.accordion-titel h2 {
    font-size: 18px;
}
.footer_get_started .arrow {
    transform: scale(1);
    width: auto;
}
.footer_get_started .d_btn.arrow:before {
    min-width: 40px;
    min-height: 40px;
    background-size: 20px;
}
.footer_get_started .arrow span{
    font-size: 18px;
}
.footer_get_started .arrow:after {
    min-width: 40px;
    min-height: 40px;
}
.footer_get_started .d_btn.arrow span:after {
    min-width: 40px;
    min-height: 40px;
    background-size: 20px;
}
.footer_get_started .d_btn.arrow:hover span:after {
    right: -55px;
}
section {
    padding: 80px 0;
}
.slide_cards {
    padding: 20px;
}
.preview_postcode {
    padding: 40px 20px;
}
.preview_postcode h2 {
    font-size: 18px;
}
.copy_right p {
    font-size: 14px;
}
.footer_subscribe {
    grid-column: auto;
}
}
@media (max-width:470px){
.yearly_subscription {
    flex-direction: column;
    margin-bottom: 10px;
}
h2.title {
    text-align:center;
}
.packages .d_btn.alternate {
    transform: scale(1);
}
.subscription_grid h2, .subscription_grid h3 {
    text-align:center;
}
.table_grid {
    grid-template-columns: 1fr;
}
.input_inc {
    max-width: 100px;
    margin: 0 auto;
}
.subscription_grid .table_border p{
	text-align:center;
}
.input_flex .input_outer.dual {
    width: 100%;
}
.subscription_grid p, .subscription_grid a {
    font-size: 14px;
}
.input_outer#card_number_img:after{
	content:none;
}
.custom_radio_flex .card-radio-btn:first-child{
	margin-right:0;
}
.custom_radio_flex{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    grid-gap: 20px;
}
#content {
    margin: 1em;
}
.sub_grid_left {
    padding: 40px 20px;
}
.subscription_grid ul.rounded {
    margin-left: 25px;
}
.bottom_links {
    grid-gap: 10px;
}
.ripple_btn {
    padding: 8px 16px;
    font-size: 15px !important;
}
.grid_card {
    padding: 30px 20px;
    min-width: auto;
    flex-direction: column;
    align-items: flex-start;
}
.subscribe_container {
    flex-direction: column;
}
.subscribe_container {
    background-color: transparent;
    border-radius:0;
}
.subscribe_container input[type="text"]{
	width:100%;
	text-align:center;
	border-radius:40px;
	padding: 10px 22px;
	font-size:14px;
}
.subscribe_container .subscribe_btn {
    padding: 10px 22px;
    width: 100%;
}
.banner_text_content p {
    font-size: 17px;
}
.gradient_text {
    font-size: 22px;
}
.list_style li:before {
    background-size: 30px;
    top: -9px;
    left: -35px;
}
.contact_details > a {
    word-break: break-all;
}
}
@media (max-width:380px){
.default_container {
    padding: 0 10px;
}
h2.title {
    font-size: 32px;
}
section, footer section  {
    padding: 50px 0;
}
footer {
    margin-top: 70px;
}
.demo_box_tab3_inner h2 {
    font-size: 22px;
}
.d_btn.arrow.alternate {
    min-height: 48px;
}
.d_btn.arrow.alternate span {
    top: 0px;
}
.d_btn.arrow.alternate:before {
    top: 5px;
    background-size: 19px;
}
.flex_local_movers p{
	color:#000;
}
.flex_local_movers {
    background-color: transparent;
}
.packages_container {
    padding: 40px 20px;
}
hr {
    margin: 15px 0;
}
.d_btn.arrow.alternate span {
    font-size: 16px;
}
.d_btn.arrow.alternate:after {
    min-width: 32px;
    min-height: 32px;
}
.d_btn.arrow.alternate:before {
    top: 4px;
    right: 4px;
}
.grid_card > picture {
    width: 30px;
}
}

/* changes on 09-01-2025 for css ---------------*/

.notifi_header {
	position: sticky;
	position: -webkit-sticky;
	top: 0; /* required */
	padding: 10px 0px;
	background: linear-gradient(45deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 25%, rgba(169, 127, 235, 1) 30%, rgba(0, 0, 0, 1) 55%, rgba(229, 119, 178, 1) 65%, rgba(0,0,0,1) 75%, rgba(0,0,0,1) 100%);
	text-align: center;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.notifi_header p {
	margin-bottom: 0px;
	color: #fff;
	width: calc(100% - 30px);
}
body {
	overflow-x: unset;
}
.notifi_close {
	color: #fff;
	width: 30px;
}
.nav_container {
	max-width: 700px;
}
.banner_text_content {
	max-width: 1180px;
}
.banner_text_content h1 {
	font-size: 42px;
}
.banner_text_content p {
	max-width: 810px;
}

.shortcut_outer {
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    width: 964px;
    position: absolute;
    margin: 0 auto;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 30px 0px;
}
.shortcut_head {
    padding-bottom: 5px;
    padding-top: 65px;
}
.shortcut_grid {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	grid-gap: 15px;
	max-width: 620px;
	margin: 0 auto;
	margin-bottom: 15px;
}
.shortcut_card {
	min-width: 112px;
    border: 1px solid #A8A8A8;
    border-radius: 8px;
    padding: 20px 10px 10px;
    text-align: center;
    position: relative;
}

.shortcut_card span {
	width: 20px;
    height: 20px;
    border-radius: 4px;
    background-color: #CFD1DC;
    display: inline-block;
    text-align: center;
    line-height: 21px;
    margin-bottom: 5px;
}
.shortcut_card span img {
	width: auto;
	display: inline;
}
.shortcut_card h4 {
	font-size: 15px;
	color: #707070;
	font-family: var(--regular);
	font-weight: 400;
}
.agree_container .shortcut_card label > span {
	background-color: transparent !important;
	margin: 0px;
}
.agree_container .shortcut_card label {
	position: absolute;
    right: 5px;
    top: 6px;
    margin: 0px;
}

.agree_container .shortcut_card label > span {
	width: 16px;
	height: 16px;
	min-width: 16px;
	min-height: 16px;
	border-radius: 2px;
}

.agree_container .shortcut_card input:checked + label + span {
	background-color: var(--main-color);
	transition: 0.3s;
}
.agree_container .shortcut_card input:checked + label > span {
	border: 8px solid var(--main-color);
}
.agree_container .shortcut_card input:checked + label > span::before{
	top: 5px;
    left: 2px;
}