html,body{
    background-color: #fff;
    /*font-family: 'Source Sans Pro',sans-serif;*/
    /*font-family: 'Google Sans',sans-serif;*/
	font-family: 'Open Sans',sans-serif;
    overflow-x: hidden !important;
    margin: 0px !important;
    padding: 0px !important;
}

a {
    text-decoration: none !important;
}

/*a:link, a:visited, a:hover, a:active{
	color: #34D399;	
}*/

.nav{
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: 76px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 24px;
    background-color: black;
    box-shadow: 0 19px 38px rgba(0,0,0,0.10);
    transition: transform .3s ease;	
}

/* RESPONSIVE */
@media only screen and (max-width: 365px){
.nav{
    padding: 0 10px;	
}	

.nav .btnsignin a {
    padding: 12px 10px !important;
}

.dropdownBtn{
	padding: 12px 12px !important;
}
}

.navBtn{
    position: fixed;
    z-index: 1000;
    bottom: 0;
    right: 0;
    margin: 30px 24px;
    display: none;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    transition: transform .3s ease;
}

.nav .links, .nav .logo,.nav .btnRight {
	display: flex;
    width:100%;
}

.nav .logo {
    justify-content: flex-start;
}

.nav .links {
    justify-content: center;
}

.nav .btnRight {
    justify-content: flex-end;
}


.logo img{
    height: 30px;
}

.nav .links a{
    padding: 10px 18px;		
    font-size: 0.875rem;
    line-height: 1.5rem;
    font-weight: 400;		
    color: #fff;
    transition: all .3s linear;	
    position: relative;
    margin:0 2px;
    white-space: nowrap;	
}

.nav .links a:hover, .nav .links a:focus, .links-active {
    background-color: #202124;
    border-radius: 34px;
    display: inline-block;
    padding: 10px 18px;	
    transition: all .3s linear;	
}

.btnRight{
	display: flex;
	align-items: center;
    flex-direction: row;	
}

.nav .links .mainlink{
    color: #fff;
}


.navBtn .btnsignin a, .nav .btnsignin a{
    font-size: 1rem;
    color: #fff;
    font-weight: 600;		
    line-height: 1rem;	
    text-align: center;
    padding: 14px 20px 14px 20px;
	/*border: 2px solid #1a73e8;	*/
    border-radius: 5px;	
    transition: all .3s linear;
    background-color: #202124;	
}


.navBtn .btnsignup a, .nav .btnsignup a{
    font-size: 1rem;
    color: #fff;
    font-weight: 600;		
    line-height: 1rem;	
    text-align: center;
    padding: 14px 20px 14px 20px;
	/*border: 2px solid #1a73e8;	*/
    border-radius: 5px;	
    transition: all .3s linear;	
    background-color: #1a73e8;
	/*background-image: linear-gradient(150deg,#3b82f6, #34d399);*/		
}

.nav h4{
    font-size: 22px;
    font-weight: bold;
    margin-left: 25px;
}

.dropdownBtn {
	font-family: 'Open Sans',sans-serif;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #202124;
    border-radius: 45px;
    border-width: 0;
    color: #fff;
    display: none;
    font-size: 0.875rem;
    font-weight: 400;
    justify-content: space-between;
    /*padding: 7px 12px;*/
	padding: 12px 18px;
    /*width: 135px;*/		
}

.dropdownBtn::after {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
    content: '';
	margin-left:10px;
}

/* LANDING CSS */

.landing{
    display: flex;
    flex-direction: row;
    padding: 0 10vw 0 10vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    text-align: center;
	color: #fff;
    background-color: black;
}


.landingText h3{
    margin: 6px !important;
    font-size: 2.5rem;
    font-weight: 700;
}

.landingText .btn{
    /*margin-top: 30px;*/
	margin: 50px auto;

}

.landingText .btn a{
    padding: 14px 20px;
    background-color: #1a73e8;
	/*background-image: linear-gradient(150deg,#3b82f6, #34d399);*/
    border-radius: 45px;		
    font-size: 1.2rem;
    color: #fff;
}

.landingText img{
    width: 35rem;
}

/* INTRO CSS */

.intro{
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%; 	
    align-items: center;
    text-align: center;
	background-color: #f8f8f8;
	position: relative;
    overflow: hidden;
	
}

.introTv{
    
    width: calc(100% + 268px);
	
    position: absolute;
    left: 50%; 
    top: 50%;
    transform: translate(-50%, -50%); 
	
	/*height: 100%;
    width: 177.77777778vh; 
    min-width: 100%;
    min-height: 56.25vw;*/
	background-color: black;
	transition-property: width;
    transition: all .1s linear;	
	border: 6px solid #222;
	/*border-bottom: 15px solid #222;*/
	box-shadow: 0 10px 6px -6px #777;
	/*box-shadow: 9px 11px 22px rgb(0 0 0 / 25%);*/
    border-radius: 3px;
	
    box-sizing: border-box;	

}

.introText{
    transition: transform .01s ease;	
}

.introText h1{
  line-height: 3rem;
  font-weight: 700;
  opacity:0.9;
}

.introHead {
    font-size:3rem; 
}

/* CUSTOMER CSS */

.customer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
	/*background-color: #fff;*/
    overflow-x: hidden;
	
}

.customer * {
  box-sizing: border-box;
}

.customer .row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  padding: 0 4px;
  position: relative;
}

/* Create four equal columns that sits next to each other */
.customer .column {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  min-width: 25%;
  padding: 0 4px;
}

.customer .column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}


.customerText {
  overflow:hidden;	
  height: 80px;
  margin: 40px 0px;
}

.customerText h3{
  font-size: 3rem;
  line-height: 3rem;
  font-weight: 700;
}

.customerText p{
  font-size: 1.125rem;
  line-height: 2rem;
  opacity: .6;
}



.wordCarousel {
  font-size: 3rem;
  font-weight: 700;
  color: black;
  display: flex;
  flex-direction: row;
}

.flip3 { animation: flip3 8s cubic-bezier(0.23, 1, 0.32, 1.2) infinite; }


@keyframes flip3 {
    0% { margin-top: -400px; }
    5% { margin-top: -248px; }	
    33% { margin-top: -248px; }	
    38% { margin-top: -124px; }
    66% { margin-top: -124px; }
    71% { margin-top: 0px; }	
    99.99% { margin-top: 0px; }	
    100% { margin-top: -400px; }
}

/*
@keyframes flip3 {
    0% { margin-top: -270px; }
    5% { margin-top: -180px; }
    33% { margin-top: -180px; }
    38% { margin-top: -90px; }
    66% { margin-top: -90px; }
    71% { margin-top: 0px; }
    99.99% { margin-top: 0px; }
    100% { margin-top: -270px; }
}*/

/* ABOUT CSS */

.about{
    height: 100vh;
    padding: 3%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
	/*background-color: #F8F8F8;*/
}

.aboutText{
    position: relative;
    padding: 0 3%;
}

.aboutText h1{
    position: relative;
    left: 17%;
}

.aboutHead {
    font-size:3rem; 
}

.aboutText img{
    width: 10rem;
    position: absolute;
    top: 50px;
}

.aboutList{
    width: 50%;
}

ol{
    list-style: none;
    padding-left: 8%;	
}

ol li{
    font-size: 1.7rem;
    position: relative;
    /*border-bottom: 1px solid #ebebeb;*/
}

li p{
    font-size: 1.5rem;
    line-height: 2rem;
    opacity: 1;
    color: #000;
    padding-left: 10%;
}

li span{
    position: absolute;
    font-weight: 600;
}

.iPad{
	height: 35rem;
	transition-property: width;
	border: 20px solid #000;
	box-shadow: 0 10px 6px -6px #777;
    border-radius: 20px;
	margin-left: 10%;
	background-color: black;
}


/* Banner */

.banner{
    height: 400px;
    background-color: #F8F8F8;
    display: flex;
    flex-direction: row;
    padding: 50px;
    justify-content: center;
    align-items: center;
    text-align: center;	
}

.bannerText h1{
    font-size: 3rem;
    color: #000;
    font-weight: 700;
}

.bannerText p{
    font-size:1.6rem;
	font-weight:normal;
}

.bannerText img{
    width: 10rem;
    /*margin-right: 20px;*/
}


/* FOOTER CSS */

.footer{
	color: #fff;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    background-color: black;
    font-weight: 400;
    text-align: center;		
}

.footerlinks a, h4{
    margin: 20px;
    font-size: 0.875rem;
    line-height: 1.5rem;
    font-weight: 400;		
    color: #fff;
}
.footerlinks .mainlink{
    color: #fff;
}


/* RESPONSIVE */
@media only screen and (max-width: 1023px){

.nav .logo {
    width:auto;
}

.nav .btnsignup {
    display: none!important;
}

.nav .links {
    display: none;
    top: 0;
	left: 0;
    position: absolute;
	justify-content: flex-start;
    flex-direction: column;
	height: 100vh;
    width: 100vw;
    align-items: flex-end;
	padding-top: 15px;
}

.nav .links a {
    background-color: #202124;	
	width: 150px;
    left: 0;
    margin-right: 22px;	
}

.nav .links a:hover, .nav .links a:focus {
    background-color: #423f3f;
    border-radius: 0px;
    transition: all .3s linear;	
}

.links-active {
    border-radius: 0px;	
}


.nav .btnsignin a {
    background-color: black;
	font-size: 0.875rem;
    font-weight: 400;
	padding: 12px 18px;
}

.nav .btnsignup a {
	border-radius: 45px;
}

.navBtn{
    display: flex;
}	


.navBtn .btnsignin a, .navBtn .btnsignup a{
    font-size: 0.875rem;
    font-weight: 700;
    padding: 10px;
    border-radius: 2px;
}

.dropdownBtn {
    display: flex;
}
	
/* LANDING CSS */

.landing {
    padding: 0 10px;
}

.landingText img {
    width: 20rem;
}

.landingText h3 {
    font-size:1.3rem;
	/*font-weight: 600;*/
}

.landingText .btn a {
    padding: 12px 18px;
    font-size: 1rem;
}


/* INTRO CSS */

.intro {
    justify-content: flex-end;
}

.introHead {
    font-size:1.75rem; 
}


.introText h1{
    font-size:1.75rem; 
}

.introTv{
    width: calc(100% + 818px);
    min-width: 90vw !important;
    box-shadow: 9px 11px 22px rgb(0 0 0 / 25%);	
}


/* CUSTOMER CSS */

.wordCarousel {
  font-size: 1.75rem; 
}

.customerText {
    height: 50px;
}	

.customer .column {
  min-width: 50%;
}



/* ABOUT CSS */

.about{
    height: 100%;	
    flex-direction: column-reverse;
	padding: 26% 0;
}	

.aboutText {
    padding: 0px;
}

.aboutText h1{
    font-size:1.75rem; 
    padding-right: 26%;
    left: 26%;	
}

.aboutHead {
    font-size:1.75rem; 
}

.aboutList{
    width: 100%;
}

ol {
    padding-left: 13%;
}

li p {
    font-size: 1rem;
	line-height: 1.75rem;
    padding-right: 10%;
    padding-left: 15%;	
}

li span {
    font-size: 1.55rem;
}

.iPad {
    margin-left: 23%;
	height: 20rem;
	border: 16px solid #000;
    border-radius: 16px;	
}

/* Banner */

.bannerText h1{
    font-size:2rem; 
}

.bannerText p{
    font-size:1rem;
    line-height: 1.75rem;	
}

}



/* Terms */

.page-banner{
    height: 400px;
    background-color: #F8F8F8;
    display: flex;
    flex-direction: row;
    padding-top: 50px;
	margin-bottom: 50px;
    justify-content: center;
    align-items: center;
    text-align: center;	
}

.page-bannerText h1{
    font-size: 3rem;
    color: #000;
    font-weight: 700;
}


.content-wrap .row {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 30px;
}

.truste {
    text-align: right;
    margin-bottom: 40px;
}


/* RESPONSIVE */
@media only screen and (max-width: 1023px){

.page-banner{
    height: 300px;
}

.page-bannerText h1{
    font-size: 2rem;
}
	
.content-wrap>div h3, .content-wrap>div p {
    text-align: center;
}

}


/* Contact */

.contact-banner{
    /*height: 600px;*/
    background-color: #F8F8F8;
    display: flex;
    flex-direction: row;
    padding-top: 50px;
	/*margin-bottom: 50px;*/
}


.contact-bannerText {
    padding: 70px 0 30px;
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
	width: 95%;
}

.contact-bannerText h1{
    font-size: 3rem;
    color: #000;
    font-weight: 600;
	text-align: center;	
}

.email-top-section {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.new-cust {
	margin: 5px;
}

.new-cust>div {
    padding: 30px 25px 10px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
	box-shadow: 2px 32px 41px -11px rgb(0 0 0 / 7%);
    transition: .5s all ease;
}

.new-cust a {
    color: #000;
    display: inline-block;
    width: 100%; 
}

.new-cust p{
    font-size:1.2rem;
	font-weight:normal;
}

.aemail {
    text-decoration: underline;
    font-size: 18px;
    margin-top: 20px;
    color: #03a9f5;
}

.material-icons-outlined {
    font-size: 56px !important;
	color: #5f6368;

}

.location-box{
	display: flex;
	flex-direction: row;
    width: 100%;
    box-shadow: -8px 7px 20px 3px rgb(0 0 0 / 5%);
    border: 1px solid #eee;
    background: #fff;  	
}

.contact-office {
    padding: 80px 0 50px;
    /*background-color: #F8F8F8;*/

}

.contact-office .acontent-wrap {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 30px;
}

.contact-office h1 {
    text-align: center;
	font-size: 3rem;
	font-weight: 600;
}

.contact-office ul {
    display: flex;
    width: 100%;
    margin-top: 70px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-office ul li {
    /*width: 32%;*/
    float: left;
	
}

.alocation {
	width: 28%;
}

.location-map{
	width: 72%;
	display: block;
}

.alocation-inner {
    padding: 26px 26px 0 26px;
    margin-bottom: 5px;
}

.acontent-wrap ol, ul {
    list-style: none;
	margin-left: -40px;
}

.alocation img {
    vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

.alocation h3 {
	font-size:1.4rem;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.alocation p {
    margin-bottom: 6px;
	font-size:1rem;
    line-height: 32px;
	padding-left: 0%;
}

.alist {
    margin-bottom: 20px;
}

.alocation address {
    font-style: normal;
    letter-spacing: .1px;
	font-size:1rem;
}

/* RESPONSIVE */
@media only screen and (max-width: 1023px){

.new-cust {
	margin: 0px;
}

.email-top-section {
    max-width: 420px;
    display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
    margin-top: 30px;
	margin: 50px auto 0;
}

.new-cust h3{
	text-align: center;	
}

.location-map{
	display: none;
}

.alocation {
	width: 100%;
}

.contact-bannerText h1{
    font-size: 1.5rem;
    text-align: center;	
}	

.contact-office ul li {
    width: 100%;
    float: left;
	max-width: 420px;
}


.contact-office h1 {
	font-size: 1.5rem;
}

.contact-office .acontent-wrap {
    padding: 0 12px;
}

}

/* About Us*/

.red {
    color: #ea4335;
}

.blue {
    color: #4285f4;
}

.yellow {
    color: #f9ab00;
}

.green {
    color: #34a853;
}

.aboutus-banner{
    height: 400px;
    background-color: #F8F8F8;
    display: flex;
    flex-direction: row;
    padding-top: 50px;
	margin-bottom: 50px;
    justify-content: center;
    align-items: center;
    text-align: center;	
}

.aboutus-bannerText h1{
    font-size: 3rem;
    color: #000;
    font-weight: 700;
}

.banner-section .content-wrap {
    margin-top: 60px;
}
.aboutus-page .content-wrap {
    max-width: 1040px;
    margin: 100px auto 0;
    padding: 30px 0 0;
}
.content-inner-wrap, .content-wrap {
    display: table;
    width: 100%;
}

.content-wrap {
	position: relative;
}
.banner-section .content-wrap h1 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
}

.banner-section .column-block:first-child {
    width: 40%;
}
.column-block:first-child {
    padding: 20px 30px 20px 0;
    width: 40%;
}
.column-block {
    width: 50%;
    display: inline-block;
    box-sizing: border-box;
    vertical-align: top;
    float: left;
}


.column-block:last-child, .column-block:nth-child(2) {
    padding: 20px 0 20px 30px;
    width: 60%;
}

.column-block-last {
    padding: 20px 0 20px 30px;
    width: 60%;
}


.banner-desc {
    font-size: 1.2rem;
    font-weight: 700;
}

.column-block p {
    color: #000;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
}

.banner-section .image-wrapper {
    margin: 60px auto 0;
}

.image-wrapper {
    margin: 120px auto 0;
    max-width: 1680px;
	position: relative;
}

.banner-section .fluid-image {
    max-width: 100%;
}

.fixed-image img, .fluid-image {
    opacity: 1;
    max-width: 100%;
	height: auto;
}
.fluid-image {
    width: 100%;
    max-width: 1600px;
    margin: auto;
    display: block;
}


.image-wrapper .foot-note {
    line-height: 1.4;
    position: absolute;
    bottom: 0;
    right: 0;
    color: #fff;
    font-size: 1rem;
	font-weight: 600;
    padding: 10px;
}

/* RESPONSIVE */
@media only screen and (max-width: 1023px){
.aboutus-banner{
    height: 300px;
}

.aboutus-bannerText h1{
    font-size: 1.2rem;
}

.banner-section .content-wrap h1 {
    font-size: 1.6rem;
	margin: 10px auto;
}

.aboutus-page .content-wrap {
    padding: 0 20px;
    box-sizing: border-box;
	margin: 100px auto 0;
}

.aboutus-page .content-wrap>div h3, .aboutus-page .content-wrap>div p {
    text-align: start;
}

.banner-desc {
    font-size: 1rem;
}

.column-block p {
    font-size: 1rem;
}

.banner-section .column-block:first-child, .column-block:first-child {
    display: block;
    width: 100%;
    margin-bottom: 0;
    padding-top: 20px;
}

.column-block:nth-child(2), .banner-section .column-block:nth-child(2) {
    display: block;
    width: 100%;
    padding-left: 0;
}

.column-block:first-child, .column-block:nth-child(2) {
    padding: 10px 30px 10px 0;
}

}


/* Pricing */

.price-banner{
    /*height: 600px;*/
    /*background-color: #F8F8F8;*/
    display: flex;
    flex-direction: row;
    padding-top: 50px;
	margin-bottom: 50px;
}


.price-bannerText {
    padding: 40px 0 30px;
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
    min-width: 70%;	
    /*justify-content: center;
	align-items: center;
    text-align: center;	*/

}

.price-bannerText h1{
    font-size: 3rem;
    color: #000;
    font-weight: 600;
	text-align: center;	
}

.price-bannerText p{
    font-size: 1.2rem;
    font-weight: 500;
	color:#616161;
	line-height: 1.7;
}

.price-bannerText-desc{
    /*font-size: 0.875rem!important;
    line-height: 1.4rem!important;*/
	text-align:center;
	margin: 25px auto;
	max-width: 700px;
}

.slidecontainer {
  width: 100%;
}
.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 5px;  
  background: #d3d3d3;
  outline: 23px;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
  cursor: pointer;
}
.slider:hover {
  opacity: 1;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid #34D399;  
  background: #fff;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid #34D399;  
  background: #fff;
  cursor: pointer;
}



.pricing-box{
	display: flex;
	flex-direction: column;
	margin-left: 0.75rem;
    margin-right: 0.75rem;
	border-width: 1px;
	border-radius: 0.25rem;
    --tw-border-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity));
	border-style: solid;
}

.pricing-box-plan {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding-left: 0.75rem;
    padding-right: 0.75rem;
	padding-top: 0.75rem;
    padding-bottom: 0.75rem;	
	border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
	border-bottom-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity));
	border-bottom-style: solid;
}

.pricing-box .flex {
	display: flex;
}

.pricing-box .flex-col{
	flex-direction: column;
}

.pricing-box .flex-row{
	flex-direction: row;
}

.pricing-box .text-gray-700 {	
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity));
}

.pricing-box .text-gray-400 {
	--tw-text-opacity: 1;
     color: rgba(156, 163, 175, var(--tw-text-opacity));
}

.pricing-box p {
    margin: 0;
}

.pricing-box .text-xs	{font-size: 0.75rem;
line-height: 1rem;
}

.pricing-box .text-sm, .pricing-box-text-sm	{font-size: 0.875rem;
line-height: 1.25rem;
}

.pricing-box .text-xl, .pricing-box-text-xl	{font-size: 1.25rem;
line-height: 1.75rem;
}

.pricing-box .text-3xl	{font-size: 1.875rem;
line-height: 2.25rem;
}

.pricing-box .px-5	{padding-left: 1.25rem;
padding-right: 1.25rem;}

.pricing-box .py-5	{padding-top: 1.25rem;
padding-bottom: 1.25rem;}

.pricing-box .px-2	{padding-left: 0.5rem;
padding-right: 0.5rem;}

.pricing-box .py-2	{padding-top: 0.5rem;
padding-bottom: 0.5rem;}

.pricing-box .price-box-margin{
	padding-top: 1.25rem;
    padding-bottom: 1.25rem;
	padding-left: 1.25rem;
    padding-right: 1.25rem;

}

.pricing-box .pt-2	{padding-top: 0.5rem;}

.pricing-box .font-medium	{font-weight: 600;}

.pricing-box .justify-between	{justify-content: space-between;}
.pricing-box .justify-center	{justify-content: center;}
.pricing-box .items-end	{align-items: flex-end;}
.pricing-box .items-center	{align-items: center;}

.equal-size{
	flex-basis: 25%;
    flex-grow: 0;
}

.pricing-box .space-x-5> * + *	{--tw-space-x-reverse: 0;
margin-right: calc(1.25rem * var(--tw-space-x-reverse));
margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));}

.pricing-box .bg-gray-100	{--tw-bg-opacity: 1;
background-color: rgba(243, 244, 246, var(--tw-bg-opacity));}

.price-year{
	border-width: 1px;
	--tw-border-opacity: 1;
    border-color: rgba(156, 163, 175, var(--tw-border-opacity));	
    border-radius: 0.25rem;
	padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
	color: #000;
	border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	padding-left: 5rem;
    padding-right: 5rem;
	cursor: pointer;
}

.price-month{
	border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(156, 163, 175, var(--tw-border-opacity));	
    border-radius: 0.25rem;
	padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
	color: #000;
	border-top-style: solid;
	border-bottom-style: solid;
	border-right-style: solid;
	border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;	
	padding-left: 4rem;
    padding-right: 4rem;
    cursor: pointer;
}

.price-plan-active{
	--tw-border-opacity: 1;
    border-color: rgba(52, 211, 153, var(--tw-border-opacity));
	--tw-background-opacity: 1;
    background-color: rgba(52, 211, 153, var(--tw-background-opacity));
	color: #fff;
}

.price-signup{
	border-width: 0px;
	--tw-border-opacity: 1;
    background-color: rgba(52, 211, 153, var(--tw-border-opacity));
    border-radius: 0.25rem;
	padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
	color: #fff;
	text-align: center;
	cursor: pointer;
}

.monthly-plan-active{
    text-decoration: line-through!important;
	color: #EF4444!important;
}

.price-footer{
	font-size: 0.875rem!important;
    line-height: 1.25rem!important;
	padding: 0 20px!important;
}

.price-getstarted-box{
	align-items: center;
	background-color: #fff!important;
	box-shadow: 0 5px 10px 0 rgb(0 0 0 / 10%), 0 5px 10px 0 rgb(0 0 0 / 10%);
	padding: 0px 10px!important;
	padding-bottom: 30px!important;
	height: 300px;
}

.price-getstarted-box p{
   margin-bottom: 30px;
}

.price-getstarted-box .btngetstarted{
    font-size: 1rem;
    color: #fff;
    font-weight: 600;		
    line-height: 1rem;	
    text-align: center;
    padding: 14px 20px 14px 20px;
	/*border: 2px solid #1a73e8;	*/
    border-radius: 5px;	
    transition: all .3s linear;	
    background-color: #1a73e8;
	/*background-image: linear-gradient(150deg,#3b82f6, #34d399);*/		
}

/*FAQ*/
.faq-box{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
    background-color: #f8f8f8;
	padding-top: 50px;
	padding-bottom: 50px;
}
.faq-box h1, .price-getstarted-box h1{
    font-size: 3rem;
    color: #000;
    font-weight: 600;
    text-align: center;
}
.faq{
	max-width: 700px;
	min-width: 68%;
	margin-top: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #e0e0e0;
	cursor: pointer;
	margin-left: 16px;
	margin-right: 16px;
}

.question {
	display: flex;
	justify-content: space-between;
	align-items:center;
	transition: all .3s linear;
}
.question h3{
	font-size: 1.6rem;
	font-weight: 600;
	color: #212121;
}
.answer {
	max-height: 0;
	overflow: hidden;
}

.answer p, .price-getstarted-box p{
	padding-top: 0rem;
	line-height: 1.7;
	font-size: 1.2rem;
	color:#616161;
}

.faq.active .answer{
	max-height: 600px;
    transition: transform 0.2s ease-in;
}

.faq.active .expand{
	transform: rotate(180deg);
}

.expand{
	transition: transform 0.2s ease-in;
}

@keyframes fade {
	from
	{
		opacity: 0;
		transform: translateY(-10px);
	}
	to
	{
		opacity: 1;		
		transform: translateY(0px);
	}
}


/* RESPONSIVE */
@media only screen and (max-width: 1023px){

.pricing-box .price-box-margin{
	padding-top: 0.5rem;
    padding-bottom: 0.5rem;
	padding-left: 0.5rem;
    padding-right: 0.5rem;

}
.price-bannerText h1 {
    font-size: 1.5rem;
    font-weight: 600;
}


.price-year, .price-month{
	padding-left: 1rem;
    padding-right: 1rem;
}

.pricing-box .text-xl {
    font-size: 1.25rem;
}

.pricing-box-text-xl{
    font-size: 1rem;
}

.pricing-box-text-sm {
    font-size: 0.75rem;
}

.price-month, .price-signup, .price-year {
    font-size: .75rem;
}

.faq-box h1, .price-getstarted-box h1{
    font-size: 1.5rem;
}

.question h3{
	font-size: 1rem;
}

.answer p, .price-getstarted-box p, .price-bannerText p{
	font-size: 1rem;
}

.price-banner{
	margin-bottom: 30px;
}

.faq-box {
	margin-top: 0px;
	margin-bottom: 0px;
}

.price-bannerText-desc{
	margin: 25px 25px;
}
	
}


/* Store */

.store-banner{
    /*height: 600px;*/
    background-color: #F8F8F8;
    display: flex;
    flex-direction: row;
    padding-top: 50px;
	/*margin-bottom: 50px;*/
}


.store-bannerText {
    padding: 70px 0 30px;
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
	width: 95%;
}

.store-bannerText h1{
    font-size: 3rem;
    color: #000;
    font-weight: 600;
	text-align: center;	
}

.store-bannerText h3 {
    text-align: center;
}

.store-top-section {
    margin-bottom: 0;
    display: flex;
    justify-content: start;
	width: 80%;
	margin: 50px auto;
	justify-content: center;
}

.store-card {
	margin: 5px;
}

.store-card>div {
    padding: 10px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
	box-shadow: 2px 32px 41px -11px rgb(0 0 0 / 7%);
    transition: .5s all ease;
}


.store-card .custom {
	text-align: center;
}

.store-card .custom img{
	width: auto;
	height: auto;
}

.store-card .custom a:link,.store-card .custom a:visited,.store-card .custom a:hover,.store-card .custom a:active{
	color: #000;	
}


@media only screen and (max-width: 1023px){

.store-card {
	margin: 2px;
}

.store-top-section {
	flex-wrap: wrap;
    margin-top: 30px;
	width: 100%;
}

.store-bannerText h1{
    font-size: 1.5rem;
    text-align: center;	
}	

.store-card .custom {
	width: 125px;
}

.store-card .custom img{
	width: 125px;
	height: auto;
}

}