@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
html, body{
	padding: 0;
	margin: 0;
	font-size: 1;
	font-family: 'Rubik', sans-serif;
}
header{
	padding: 2rem 0;
	margin: 0 auto;
	max-width: 70%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
header img{
	width: 230px;
	height: auto;
}
header ul{
	padding: 0;
	margin: 0;
}
header ul li{
	display: inline-block;
	margin-right: 1.5rem;
}
header ul li:last-child{
	margin-right: 0;
}
header ul:last-child li:last-child a{
	border: 1px solid #3a86fb;
	border-radius: 1.4rem;
	padding: .6rem 1.5rem;
}
header ul:last-child li:last-child a:hover{
	background: #3a86fb;
	color: #ffffff;
}
header ul li a{
	color: #000000;
	text-decoration: none;
	transition: .2s;
	font-size: 1.1rem;
}
header ul li a:hover{
	color: #3a86fb;
}
section{
	padding: 2rem;
}
h1{
	font-size: 5rem;
	font-weight: 400;
	margin: 0;
}
h1 > span{
	color: grey;
}
h2{
	font-size: 3rem;
	font-weight: 400;
	line-height: 1.4;
	margin: 0;
}
h3{
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.4;
}
p{
	font-size: 1.4rem;
	font-weight: 300;
	line-height: 1.8;
}
.dotted-background {
	width: 92%;
	margin: 0 auto;
	border: 1px solid #ebebeb;
	border-radius: 1.4rem;
	background-image: radial-gradient(circle, #dedede 1px, transparent 1px);
	background-size: 7px 7px;
	text-align: center;
	overflow: hidden;
}
.top_wrap{
	position: relative;
}
.top_wrap:before{
	content: '';
	width: 100px;
	height: 100px;
	border-radius: .8rem;
	box-shadow: -.2rem .2rem .6rem rgba(0, 0, 0, .1);
	position: absolute;
	left: -30px;
	top: 50%;
	background-image: url('../img/vicon.png');
	background-size: 80%;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #ffffff;
	transform: rotate(-110deg);
}
.top_wrap:after{
	content: '';
	width: 200px;
	height: 220px;
	background-image: url('../img/scribble.svg');
	background-size: 100%;
	background-position: center;
	position: absolute;
	right: 0;
	top: 50%;
}
.title_wrap{
	text-align: center;
	max-width: 70%;
	margin: 4rem auto;
}
.title_wrap p{
	max-width: 70%;
	margin: 0 auto;
	margin-top: 2rem;
}
.cta_btn{
	font-size: 1.2rem;
	font-weight: 700;
	color: #ffffff;
	background: #000000;
	padding: 1.8rem 5rem;
	border: none;
	border-radius: 4rem;
	cursor: pointer;
	transition: .2s;
	position: relative;
}
.cta_btn:after{
	content: 'Get free demo';
	width: 100%;
	height: 100%;
	background: #3a86fb;
	border-radius: 4rem;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .2s;
}
.cta_btn:hover:after{
	top: -8px;
	left: -6px;
	transition: .2s;
	background: #595bab;
}
.spaced_top{
	margin-top: 2rem;
}
.spaced_bottom{
	margin-bottom: 2rem;
}
.plain-background{
	text-align: center;
}
.title_span{
	background: #ffffff;
	display: inline-block;
	padding: .8rem 1.6rem;
	border-radius: 1.4rem;
	box-shadow: 0 .4rem .6rem rgba(0, 0, 0, .2);
	margin: 2rem auto;
}
.solutions_wrap{
	padding: 0 10%;
	border-top: 1px solid #ebebeb;
	margin-top: 4rem;
}
.solutions_wrap > div{
	text-align: left;
	border-right: 1px solid #ebebeb;
	border-left: 1px solid #ebebeb;
	padding: .5rem;
}
.solutions_wrap > div:nth-child(1){
	display: flex;
}
.solutions_wrap > div:nth-child(1) > div > img{
	width: 40px;
	height: auto;
	margin: .5rem 0;
}
.solutions_wrap > div:nth-child(1) p{
	font-size: 1.1rem;
	font-weight: 400;
}
.solutions_wrap > div:nth-child(1) > div{
	padding: 2rem;
	position: relative;
}
.solutions_wrap > div:nth-child(1) > div:not(:last-child){
	border-right: 1px solid #ebebeb;
}
.solutions_wrap > div:nth-child(1) > div:after, .solutions_wrap > div:nth-child(1) > div:first-child:before {
	content: '';
	width: 20px;
	height: 20px;
	background: #ffffff;
	border: 1px solid #ebebeb;
	border-radius: 50%;
	box-shadow: 0 0 .4rem rgba(0, 0, 0, .2);
	position: absolute;
	top: -20px;
}
.solutions_wrap > div:nth-child(1) > div:after{
	right: -10px;
}
.solutions_wrap > div:nth-child(1) > div:last-child:after{
	right: -20px;
}
.solutions_wrap > div:nth-child(1) > div:first-child:before{
	left: -20px;
}
.dash_show{
	background: linear-gradient(to bottom, #c1d9fe, #c1d9fe, #ffffff);
	border-radius: 1.4rem 1.4rem 0 0;
	width: 96%;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 4rem 4rem 0 4rem;
}
.dash_show > img{
	width: 100%;
	height: auto;
	border-radius: 2rem;
}
.to-do-sec{
	max-width: 70%;
	margin: 0 auto;
}
.to-do-sec > div{
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: left;
	margin: 4rem auto;
	margin-top: 8rem;
}
.to-do-lists{
	background: rgba(255, 255, 255, .6);
	padding: 2rem 4rem;
	box-sizing: border-box;
	min-width: 56%;
	border-radius: 1.4rem;
	box-shadow: 0 0 .8rem rgba(0, 0, 0, .2);
	text-align: left;
	display: inline-block;
	white-space: nowrap;
	margin-right: 3rem;
	position: relative;
}
.to-do-lists:before{
	content: '';
	width: 55%;
	height: 0;
	padding-top: 55%;
	border-radius: 1.4rem;
	background: rgba(255, 255, 255, .5);
	box-shadow: -.1rem -.1rem .6rem rgba(0, 0, 0, .1);
	position: absolute;
	left: -8.5rem;
	top: -3rem;
	z-index: -1;
	transform: rotate(-25deg);
}
.to-do-lists:after{
	content: '';
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: orange;
	opacity: .5;
	position: absolute;
	left: -5rem;
	top: -5rem;
	z-index: -2;
}
.to-do-lists > div{
	margin: 2rem 0;
	font-size: 1.4rem;
	font-weight: 300;
	position: relative;
	padding: 2rem 3rem;
	padding-left: 6rem;
	box-shadow: 0 0 .6rem rgba(0, 0, 0, .2);
	border-radius: 4rem;

}
.to-do-lists > div:nth-child(1){
	background: rgba(245,158,149,.4);
	transform: translateX(1.5rem);
}
.to-do-lists > div:nth-child(3){
	background: rgba(148,139,224,.4);
	transform: translateX(-1.5rem);
}
.to-do-lists > div:before{
	content: '';
	width: 34px;
	height: 34px;
	background: #3a86fb;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 2rem;
	transform: translateY(-50%);
}
.to-do-lists > div:after{
	content: '';
	width: 34px;
	height: 34px;
	background-image: url('../img/tick.png');
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	top: 40%;
	left: 2.6rem;
	transform: translateY(-50%);
}
.pomo_timer{
	min-width: 50%;
	box-sizing: border-box;
	box-shadow: 0 0 .6rem rgba(0, 0, 0, .2);
	border-radius: 1.4rem;
	background: #ffffff;
	margin-left: 3rem;
	position: relative;
	text-align: center;
	padding: 4rem 2rem;
}
.pomo_timer:after{
	content: '';
	width: 170px;
	height: 200px;
	border-radius: 60% 50% 70% 40%;
	background: #fb421f;
	background-image: url('../img/outward_spiral.svg');
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	right: -15rem;
	top: 50%;
	transform: translateY(-50%);
}
.pomo_timer > svg{
	position: absolute;
	right: 5rem;
	top: -80%;
	
}
.min_counter{
	display: flex;
	margin: 0 auto;
	justify-content: space-between;
	align-items: center;
	font-size: 2rem;
	font-weight: 700;
	max-width: 50%;
}
.min_counter > div{
	width: 70px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: .8rem;
	padding: .2rem .4rem;
	box-shadow: 0 0 .6rem rgba(0, 0, 0, .2);
}

.play_btn{
	display: flex;
	margin: 0 auto;
	margin-top: 2rem;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: red;
}
.play_btn > img{
	width: 40%;
	height: auto;
	transform: translateX(2px);
}
.journaling{
	position: relative;
	min-width: 50%;
	padding: 4rem;
	box-sizing: border-box;
	background: rgba(255, 255, 255, .4);
	box-shadow: 0 0 .8rem rgba(0, 0, 0, .1);
	margin-right: 4rem;
	border-radius: 1.4rem;
}
.journaling:before{
	content: '';
	width: 100px;
	height: 280px;
	border-radius: 74% 74% 80% 80%;
	background: #3a86fb;
	background-image: url('../img/feather.svg');
	background-position: center;
	background-size: 80%;
	background-repeat: no-repeat;
	position: absolute;
	left: -50%;
	top: 0;
	transform: rotate(200deg);
}
.journaling > div:nth-of-type(1){
	display: flex;
	justify-content: space-around;
}
.journaling > div:nth-of-type(1) > div{
	font-size: 2rem;
	padding: .4rem;
	border-radius: .8rem;
	background: rgba(255, 255, 255, .8);
	box-shadow: 0 0 .6rem rgba(0, 0, 0, .1);
}
.journaling > div:nth-of-type(1) > div > img{
	width: 70px;
	height: auto;
}
.journaling_text{
	margin-top: 2rem;
}
.journaling_text > div{
	width: 110%;
	box-sizing: border-box;
	padding: 1rem;
	border: 1px solid #ebebeb;
	box-shadow: 0 0 .8rem rgba(0, 0, 0, .2);
	border-radius: .8rem;
	background: #ffffff;
	margin-left: -5%;
}
.journaling_text > div > p{
	font-size: 1.1rem;
	margin: 0;
	margin-bottom: 1rem;
}
.journaling_text > div > img{
	width: 50px;
	height: auto;
	display: flex;
	margin-left: auto;
}
.pricing{
	display: flex;
	justify-content: space-between;
	max-width: 70%;
	margin: 0 auto;
	margin: 4rem auto;
}
.pricing > div{
	padding: 4rem;
	width: 48%;
	box-sizing: border-box;
	border-radius: 1.4rem;
	text-align: left;
	display: flex;
	flex-direction: column;
	position: relative;
}
.pricing > div:nth-child(2){
	position: relative;
}
.pricing > div:nth-child(2):after{
	content: '';
	width: 100px;
	height: 100px;
	background: #ffffff;
	box-shadow: 0 0 .6rem rgba(0, 0, 0, .1);
	border-radius: .8rem;
	background-image: url('../img/bolt.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 50%;
	position: absolute;
	top: -60px;
	left: 80%;
	transform: rotate(-10deg);
}
.pricing > div > div:nth-child(2){
	min-height: 80px;
	flex: 1;
	position: relative;
	margin-top: 1rem;
}
button{
	cursor: pointer;
}
.pricing > div > div:nth-child(2) > button{
	width: 100%;
	height: 80px;
	border-radius: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	border: none;
	background: #000000;
	transition: .2s;
	font-size: 1.2rem;
	font-weight: 700;
}
.pricing > div:nth-child(2) > div:nth-child(2) > button:after, .pricing > div:nth-child(1) > div:nth-child(2) > button:after{
	content: 'Choose this plan';
	width: 100%;
	height: 100%;
	border-radius: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 0;
	top: 0;
	transition: .2s;
}
.pricing > div > div:nth-child(2) > button:hover:after{
	top: -8px;
	left: -6px;
	transition: .2s;
	background: #595bab;
}
.pricing > div:nth-child(1) > div:nth-child(2) > button:after{
	color: #3a86fb;
	background: #ffffff;
}
.pricing > div:nth-child(1) > div:nth-child(2) > button:hover:after{
	background: #f2e5ad;
	color: #000000;
}
.pricing > div:nth-child(2) > div:nth-child(2) > button:hover:after{
	background: #595bab;
}
.pricing > div:nth-child(2) > div:nth-child(2) > button:after{
	background: #3a86fb;
	color: #ffffff;
}
.pricing > div:nth-child(1){
	background: #8470dd;
	color: #fff;
}
.pricing > div:nth-child(2){
	background: #f5f5f5;
}
.pricing > div > div > div{
	display: flex;
	width: 90%;
	margin: 0 auto;
	border-radius: 1.8rem;
	background: #8470dd;
	padding: .25rem;
}
.pricing > div:nth-child(1) > div > div{
	background: #f5f5f5;
}
.pricing > div > div > div > button{
	background: transparent;
	padding: .8rem;
	width: 50%;
	box-sizing: border-box;
	border-radius: 1.6rem;
	border: none;
	font-size: 1.1rem;
	font-weight: 700;
}
.pricing > div > div > div > button.selected{
	background: #ffc300;
	background: #f1e3a4;
	background: #f2e5ad;
}
.pricing > div > div > ul{
	padding: 0;
	margin: 0;
}
.pricing > div > div > ul > li{
	list-style-type: none;
	position: relative;
	margin: 2rem 0;
	padding-left: 4rem;
}
.pricing > div > div > ul > li:before{
	content: '';
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #4285f4;
	position: absolute;
	left: calc(-2rem + 30px);
	top: 50%;
	transform: translateY(-50%);
}
.pricing > div:nth-child(1) > div > ul > li:before{
	background: #ffffff;
}
.pricing > div > div > ul > li:after{
	content: '';
	width: 34px;
	height: 34px;
	background-image: url('../img/tick.png');
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	top: 20%;
	left: calc(-2rem + 38px);
	transform: translateY(-50%);
}
.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	text-align: left;
	gap: 4rem;
	max-width: 80%;
	margin: 4rem auto;
}
.testimonial-card {
	background-image: radial-gradient(circle, #d7e6fe 1px, transparent 1px);
	background-size: 6px 6px;
/*	border: 2px solid #3182ce;*/
	border-radius: 1.4rem;
	padding: 1.5rem;
	box-shadow: 0 0 .6rem rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}
.testimonial-card:nth-child(1) { transform: rotate(3deg); }
.testimonial-card:nth-child(2) { transform: rotate(-2deg); }
.testimonial-card:nth-child(3) { transform: rotate(1deg); }
.testimonial-card:nth-child(4) { transform: rotate(-1deg); }
.testimonial-card:hover {
	transform: scale(1.05);
}
.quote-icon {
	width: 2.5rem;
	height: 2.5rem;
}
.testimonial-text {
/*	color: #4a5568;*/
	margin-bottom: 2rem;
	font-size: 1.2rem;
	line-height: 1.8;
}
.testimonial-author {
	display: flex;
	align-items: center;
}
.author-avatar {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	margin-right: 0.75rem;
	background-color: #3182ce;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
}
.author-info {
	display: flex;
	flex-direction: column;
}
.author-name {
	font-weight: bold;
	color: #1a365d;
	margin-bottom: .4rem;
}
.author-role {
	font-size: 0.875rem;
	color: #718096;
}
.footer{
	padding: 6rem 0;
	margin-bottom: 4rem;
}
.footer_brand, .footer_logo{
	text-align: left;
	display: flex;
	justify-content: space-between;
	max-width: 80%;
	margin: 0 auto;
}
.footer_logo > img{
	width: 200px;
	height: auto;
	margin-bottom: 2rem;
}
.footer_brand h2{
	font-size: 2.8rem;
}
.footer_brand > div:nth-child(1){
	width: 50%;
	margin-right: 3rem;
}
.footer_brand > div:nth-child(2){
	display: flex;
	justify-content: space-around;
	flex: 1;
}
.footer_brand > div:nth-child(2) p{
	font-size: 1rem;
}
.footer_brand a{
	text-decoration: none;
	font-weight: 400;
	color: #000000;
	margin-left: 4rem;
	position: relative;
}
.footer_brand a:before{
	content: '';
	width: 30px;
	height: 30px;
	background-image: url('../img/arrow-right.svg');
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: -2rem;
	top: 50%;
	transform: translateY(-50%);
}
.footer_icons{
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 4rem;
	margin: 6rem auto;
	max-width: 80%;
}
.footer_icon{
	width: 80px;
	height: 80px;
	background: #ffffff;
	box-shadow: 0 0 .6rem rgba(0, 0, 0, .2);
	border-radius: .8rem;
}
.footer_icon:nth-child(1){
	transform: rotate(-10deg) translateY(80px) translateX(-40px);
}
.footer_icon:nth-child(2){
	transform: rotate(-20deg) translateX(-40px);
}
.footer_icon:nth-child(3){
	transform: translateY(20px) translateX(-40px);
}
.footer_icon:nth-child(4){
	transform: rotate(-20deg) translateX(-40px);
}
.footer_icon:nth-child(5){
	transform: rotate(25deg) translateY(15px) translateX(-40px);
}
.footer_icon:nth-child(6){
	transform: rotate(25deg) translateY(60px) translateX(120px);
}
.footer_icon:nth-child(7){
	transform: rotate(25deg) translateY(20px) translateX(120px);
	/*background: transparent;
	width: auto;
	height: auto;*/
}
.footer_icon:nth-child(8){
	transform: rotate(-15deg) translateY(100px) translateX(120px);
}
.footer_icon:nth-child(9){
	transform: rotate(25deg) translateY(20px) translateX(120px);
}
.footer_icon:nth-child(10){
	transform: translateY(-20px) translateX(120px) rotate(180deg);
}
section.achors{
	padding: .2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	background-image: linear-gradient(#000,#292929);
	box-shadow: 0 4px 8px 2px #00000045,0 10px 20px 1px #0003,inset 0 2px 1px #ffffff80;
	border-radius: 4rem;
}
section.achors a{
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1.5rem;
	font-size: 1rem;
	text-decoration: none;
	transition: .4s;
}
section.achors a:hover, section.achors a.active:not(:first-child){
	background: #f2e5ad;
	color: #000000;
	border-radius: 3rem;
	transition: .4s;
}
section.achors a img{
	width: 25px;
	height: auto;
}
section.achors a:nth-child(1){
	background: rgba(255, 255, 255, .7);
	border-radius: 3rem;
}
section.achors a:last-child{
	background: rgba(255, 255, 255, .2);
	border-radius: 3rem;
}
section.achors a:last-child:hover{
	background: rgba(255, 255, 255, .4);
	color: #ffffff;
}