@font-face {
	font-family: 'Rubik';
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: url(../fonts/Rubik-Light.ttf) format('truetype');
}
@font-face {
	font-family: 'Rubik';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(../fonts/Rubik-Regular.ttf) format('truetype');
}
@font-face {
	font-family: 'Rubik';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url(../fonts/Rubik-Medium.ttf) format('truetype');
}
@font-face {
	font-family: 'Rubik';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(../fonts/Rubik-Bold.ttf) format('truetype');
}
:root {
	--dark: #181c28;
	--main-blue: #69cde8;
	--main-pink: #e13389;
	--dark-500: #8c8e94;
	--pink-100: #fcebf4;
	--grey: #adadad;
	--blue-300: #f2fbfd;
	--light-grey: #f3f3f3;
	--pink-50: #fdf5f9;
	--blue-100: #f2fbfd;
	--blue-500: #e8f7fb;
	--white: #fff;
}
:root {
	--font-family: "Rubik", sans-serif;
}
* {
	box-sizing: border-box;
}
.new-design *{
	font-family: "Rubik", sans-serif;
}
html, body {
    margin: 0;
}
#wpadminbar{
	position: absolute;
}
.new-design {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	color: var(--dark-500);
}
.new-design a {
	text-decoration: none;
	color: var(--main-blue);
	transition: all 0.4s ease-in-out;
}
.new-design a:hover {
	color: var(--main-pink);
	transition: all 0.4s ease-in-out;
}
.new-design p {
	margin: 0;
	margin-bottom: 20px;
	font-weight: 400;
}
.new-design img {
	max-width: 100%;
	height: auto;
	max-height: 100%;
}
.new-design h1 {
	font-weight: 500;
	font-size: 42px;
	color: var(--dark);
	position: relative;
	margin-bottom: 40px;
	margin-top: 0;
}
.new-design h1:after {
	content: "";
	background: url(../img/title.svg);
	height: 2px;
    width: 162px;
    position: absolute;
	bottom: -20px;
	left: 0;
}
.new-design h2 {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 42px;
	text-align: center;
	color: var(--dark);
	margin: 0px auto 40px auto;
	position: relative;
	max-width: 1080px;
}
.new-design h2:after {
	content: "";
	background: url(../img/title.svg);
	height: 2px;
    width: 162px;
    position: absolute;
	bottom: -20px;
	left: calc(50% - 81px);
}
.new-design h3 {
	font-weight: 500;
	font-size: 30px;
	text-align: center;
	color: var(--dark);
	margin-top: 0;
	margin-bottom: 40px;
}
.new-design h4 {
	margin-top: 0;
	font-weight: 500;
	font-size: 20px;
	color: var(--dark);
}
.new-design input {
	padding: 20px;
	border: 1px solid var(--white);
	border-radius: 6px;
	outline: none;
	transition: all 0.4s ease;
}
.new-design input:focus {
	border: 1px solid var(--main-blue);
	transition: all 0.4s ease;
}
.new-design label {
	position: relative;
}
.new-design .subscribe__form-policy input.checkbox {
	margin-right: 10px;
	display: none;
}
.new-design .subscribe__form-policy p{
	margin-bottom: 0;
	flex: 1 0;
}
.new-design .subscribe__form-policy label{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: fit-content;
	margin: auto;
}
.new-design .subscribe__form-policy label span{
	position: relative;
}
.new-design .checkbox-view {
	width: 18px;
	height: 18px;
	border-radius: 100%;
	background-color: var(--white);
	border: 1px solid var(--main-blue);
	transition: background-color 0.4s ease;
	cursor: pointer;
	display: block;
}
.new-design .checkbox-view:before {
    content: "";
	width: 10px;
    height: 10px;
    position: absolute;
    left: 51%;
    top: 50%;
    transform: translate(-50%,-50%);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
.new-design .checkbox:checked + .checkbox-view {
	background: var(--main-blue);
}
.new-design .container {
	max-width: 1280px;
    margin: 0 auto;
	display: block;
	padding: 0;
}
@media(max-width: 1300px){
	.new-design .container {
		max-width: 100%;
	    margin: 0 20px;
	    padding: 0;
	}
}
.new-design .button {
	border-radius: 6px;
	padding: 19px 60px;
	background: var(--main-blue);
	font-weight: 700;
	font-size: 16px;
	text-align: center;
	color: var(--white);
	cursor: pointer;
	border: none;
	transition: .4s;
	height: auto;
}
.new-design .button:hover {
	background: var(--main-pink);
	color: white;
}
.new-design .button.sm-btn {
	padding: 8px 30px;
}
.new-design .title-description {
	text-align: center;
	max-width: 620px;
	margin: 0 auto;
	margin-bottom: 40px;
}
.new-design .section__bottom-text {
	margin: 40px auto 20px auto;
	max-width: 620px;
	position: relative;
	text-align: center;
}
.new-design .section__bottom-text:after {
	content: "";
	background: url(../img/title.svg);
	height: 2px;
	width: 162px;
	position: absolute;
	bottom: -20px;
	left: calc(50% - 81px);
}
.new-design .slick-dotted.slick-slider {
	margin-bottom: 85px;
}
.new-design .slick-dotted.slick-slider.no-dots {
    margin-bottom: 40px;
}
.new-design .slick-dots {
	bottom: -45px;
	line-height: 0;
}
.new-design .slick-dots li, .new-design .slick-dots li button  {
	width: 5px;
    height: 5px;
	padding: 0;
}
.new-design .slick-dots li button:before {
	background: var(--main-blue);
    border-radius: 100%;
    width: 5px;
    height: 5px;
	opacity: 1;
	color: transparent;
	transition: all 0.4s ease;
}
.new-design .slick-dots li.slick-active button:before {
	color: transparent;
	opacity: 1;
	background: var(--main-pink);
	transition: all 0.4s ease;
}
.new-design .header {
	position: fixed;
	width: 100%;
	background: var(--white);
	z-index: 10;
	padding: 0;
	top: 0;
	left: 0;
}
.new-design .header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
	padding: 20px 0;
}
.new-design .header__menu {
    display: flex;
    list-style: none;
	gap: 20px;
	margin-left: 0;
	padding: 0;
	margin: 0;
}
.new-design .header__link {
	font-weight: 700;
	font-size: 16px;
	color: var(--main-blue);
	margin: 0;
}
.new-design .header__right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.new-design .header__socials {
    display: flex;
    align-items: center;
    gap: 10px;
}
.new-design .header__socials-mobile{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.new-design .header__socials-link {
	height: 40px;
    width: 40px;
	border-radius: 100%;
	background: var(--main-blue);
	transition: .4s;
	border: 1px solid var(--main-blue);
	display: flex;
	align-items: center;
	justify-content: center;
}
.new-design .header__socials-link svg{
	max-width: 100%;
	max-height: 100%;
}
.new-design .header__socials-link svg * {
	transition: .4s;
}
.new-design .header__socials-link:hover{
	background-color: white;
}
.new-design .header__socials-link:hover svg path:not(.letter){
	stroke: var(--main-blue);
}
.new-design .header__socials-link:hover svg path.letter{
	fill: var(--main-blue);
}
.new-design .header__socials-mobile .header__socials-link{
	background: transparent;
}
.new-design .burger, .header__menu-mobile {
	display: none;
}
main.new-design-main {
	position: relative;
	padding-top: 90px;
}
.new-design-wrapper{
	display: flex;
    flex-direction: column;
	gap: 140px;
	position: relative;
}
.new-design .main-banner__wrapper {
	display: flex;
	margin-top: 80px;
	gap: 20px;
}
.new-design .main-banner__left, .main-banner__right {
	width: 50%;
}
.main-banner__right {
	text-align: right;
}
.new-design .main-banner__title {
	margin-top: 85px;
}
.new-design .main-banner__btn {
	margin-top: 40px;
}
.new-design .main-banner__right {
	margin-top: -20px;
}
.new-design .main-banner .button {
	width: 210px;
}
.new-design .key-features {
	margin-top: -60px;
}
.new-design .key-features__items {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 40px;
}
.new-design .key-features__item {
	border-radius: 20px;
	padding: 20px;
	display: flex;
	gap: 20px;
	align-items: center;
	flex: 1 1 0px;
}
.new-design .key-features__item:nth-child(1) {
	background: var(--pink-50);
}
.new-design .key-features__item:nth-child(2) {
	background: var(--blue-300);
}
.new-design .key-features__item:nth-child(3) {
	background: var(--pink-100);
}
.new-design .key-features__item:nth-child(4) {
	background: var(--blue-500);
}
.new-design .key-features__item-icon {
	border-radius: 100%;
	width: 52px;
	height: 52px;
	background: var(--white);
	flex-shrink: 0;
	background-repeat: no-repeat;
	background-position: center;
}
.new-design .key-features__item-icon.key1 {
	background-image: url(../img/icon-key1.svg);
}
.new-design .key-features__item-icon.key2 {
	background-image: url(../img/icon-key2.svg);
}
.new-design .key-features__item-icon.key3 {
	background-image: url(../img/icon-key3.svg);
}
.new-design .key-features__item-icon.key4 {
	background-image: url(../img/icon-key4.svg);
}
.new-design .learnin-victories .slick-dotted.slick-slider {
	margin-bottom: 25px;
}
.new-design .learnin-victories .slick-dotted.slick-slider .slick-dots {
	bottom: -25px;
}
.new-design .simple-steps__items {
	display: flex;
	gap: 40px;
}
.new-design .simple-steps__item {
	border-radius: 20px;
	flex-grow: 1;
	flex-basis: 0;
	position: relative;
	margin-top: 80px;
	padding: 100px 40px 40px 40px;
	box-shadow: 0 4px 17px 0 rgba(0, 0, 0, 0.14);
}
.new-design .simple-steps__features__item-icon {
	position: absolute;
	top: -80px;
	left: calc(50% - 80px);
	background: var(--white);
    border-radius: 100%;
}
.new-design .simple-steps__features__item-title {
	font-weight: 500;
	font-size: 30px;
	text-align: center;
	color: var(--dark);
	margin-bottom: 10px;
}
.new-design .simple-steps__features__item-text {
	text-align: center;
}
.new-design .why-pastory__items {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.new-design .why-pastory__item {
	border-radius: 20px;
	padding: 40px;
	display: flex;
	gap: 40px;
	align-items: center;
}
.new-design .why-pastory__item:nth-child(1n) {
	background: var(--blue-500);
}
.new-design .why-pastory__item:nth-child(2n) {
	background: var(--pink-50);
}
.new-design .why-pastory__item:nth-child(3n) {
	background: var(--blue-300);
}
.new-design .why-pastory__item-icon {
	width: 160px;
	flex-shrink: 0;
}
.new-design .why-pastory__item-title {
	font-weight: 500;
	font-size: 30px;
	color: var(--dark);
	flex-shrink: 0;
	width: 320px;
}
.new-design .why-pastory__btn {
	margin: 0 auto;
	margin-top: 40px;
	text-align: center;
}
.new-design .curriculum__items {
	display: flex;
	gap: 40px;
	margin-top: 75px;
}
.new-design .curriculum__item {
	flex-grow: 1;
	flex-basis: 0;
	display: flex;
	flex-direction: column;
	position: relative;
}
.new-design .curriculum__item-image {
	height: 300px;
}
.new-design .curriculum__item-image img {
	width: 100%;
    height: 100%;
    object-fit: cover;
	border-radius: 20px 20px 0 0;
}
.new-design .curriculum__item-overlay {
	background: linear-gradient(#69cde800 30%, #69CDE8 60%);
	width: 100%;
	height: 90%;
	position: absolute;
	border-radius: 0 0 20px 20px;
}
.new-design .curriculum__item-info {
	border-radius: 0 0 20px 20px;
	background: var(--main-blue);
	padding: 40px;
	padding-bottom: 50px;
	color: var(--white);
	flex: 1;
	text-align: center;
	z-index: 1;
}
.new-design .curriculum__item-title {
	font-weight: 500;
	font-size: 30px;
	margin-bottom: 20px;
}
.new-design .curriculum__item-bage {
	width: 76px;
	height: 76px;
	background: var(--main-pink);
	color: var(--white);
	border-radius: 100%;
	position: absolute;
	display: flex;
    align-items: center;
	justify-content: center;
	right: 40px;
	top: -35px;
}
.new-design .curriculum__item-bage span {
	max-width: 50px;
	text-align: center;
}
.new-design .featured-activities__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
	grid-gap: 40px;
}
.new-design .featured-activities__item {
	display: flex;
	border-radius: 20px;
	padding: 40px;
	background: var(--blue-500);
	gap: 20px;
	align-items: center;
}
.new-design .featured-activities__item.other-design {
	background: var(--main-blue);
}
.new-design .featured-activities__item.other-design .featured-activities__item-title {
	color: var(--white);
}
.new-design .featured-activities__item-icon {
	flex-shrink: 0;
	width: 160px;
	height: 160px;
}
.new-design .featured-activities__item-title {
	font-weight: 500;
	font-size: 30px;
	margin-bottom: 20px;
	color: var(--dark);
}
.new-design .subscribe {
	background: var(--blue-500);
	padding: 140px 0;
}
.new-design .subscribe__wrapper {
	display: flex;
}
.new-design .subscribe__text {
	width: 50%;
}
.new-design .subscribe__text h2 {
	text-align: left;
}
.new-design .subscribe__text h2:after {
	left: 0;
}
.new-design .subscribe__form {
	width: 50%;
}
.new-design .subscribe__form-fields {
	display: flex;
}
.new-design .subscribe__form-fields input {
	margin-right: 20px;
	width: 100%;
	box-sizing: border-box;
	font-size: 14px;
}
.new-design .subscribe__form-policy {
	margin-top: 30px;
	text-align: center;
	color: var(--dark);
}
.new-design .subscribe__form-policy a {
	text-decoration: underline;
	color: var(--dark);
}
.new-design .youtube-channels__items {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 40px;
}
.new-design .youtube-channels__item {
	display: flex;
	border-radius: 20px;
	padding: 45px 20px;
	box-shadow: 0 4px 17px 0 rgba(0, 0, 0, 0.14);
	background: var(--white);
	gap: 20px;
	align-items: center;
}
.new-design .youtube-channels__item svg path {
	transition: fill 0.4s ease-in-out;
}
.new-design .youtube-channels__item:hover svg path {
	fill: var(--main-pink);
	transition: fill 0.4s ease-in-out;
	
}
.new-design .youtube-channels__item-icon {
	flex-shrink: 0;
	margin: 0 5px;
}
.new-design .youtube-channels__item-title {
	font-weight: 500;
	font-size: 20px;
	margin-bottom: 10px;
	color: var(--dark);
}
.new-design .backed-by__items {
	display: flex;
	gap: 40px;
}
.new-design .backed-by__item {
	width: 50%;
	text-align: center;
	border-radius: 20px;
	background: var(--pink-100);
}
.new-design .backed-by__item-wrapper {
	padding: 40px;
}
.new-design .backed-by__item-photo img {
	border-radius: 100%;
	width: 160px;
	height: 160px;
}
.new-design .backed-by__item-title {
	font-weight: 500;
	font-size: 30px;
	margin: 20px 0;
	color: var(--dark);
}
.new-design .reviews{
	background: transparent;
	padding: 0;
}
.new-design .reviews__items.no-dots .slick-dots {
	display: none;
}
.new-design .reviews__items {
	display: flex;
	gap: 40px;
}
.new-design .reviews__item {
	width: 50%;
	border-radius: 20px;
	background: var(--light-grey);
	margin-left: 15px;
	margin-right: 15px;
}
.new-design .reviews__item-wrapper {
	padding: 30px;
}
.new-design .reviews__item-text {
	color: var(--dark);font-weight: 500;
	font-size: 20px;
	margin-bottom: 65px;
}
.new-design .reviews__item-bottom {
	display: flex;
	align-items: center;
}
.new-design .reviews__item-avatar {
	flex-shrink: 0;
}
.new-design .reviews__item-avatar img {
	border-radius: 100%;
	width: 80px;
	height: 80px;
	margin-right: 20px;
}
.new-design .reviews__item-author {
	margin-bottom: 10px;
}
.new-design .reviews__item-rating {
	display: flex;
}
.new-design .reviews__button {
	text-align: center;
	margin-top: 60px;
}
.new-design .our-team {
	overflow: hidden;
}
.new-design .our-team__slider {
	margin-top: 60px;
}
.new-design .our-team__slider-item {
	border-radius: 20px;
	background: #181C28;
	color: var(--white);
	text-align: center;
	height: 540px;
	margin: 0 20px;
	position: relative;
}
.new-design .slick-initialized .slick-slide.our-team__slider-item {
	display: flex;
	align-items: end;
	min-height: 450px;
}
.new-design .our-team__slider-image {
	position: absolute;
	border-radius: 20px;
	width: 100%;
	height: 100%;
	filter: grayscale(100%);
}
.new-design .slick-center .our-team__slider-image {
    filter: grayscale(0);
}
.new-design .our-team__slider-info {
	position: relative;
	padding: 40px;
    background: linear-gradient(#181c2800 30%, #181C28 80%);
    border-radius: 0 0 20px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.new-design .our-team__slider-author {
	font-weight: 500;
	font-size: 30px;
	margin-bottom: 20px;
}
.new-design .our-team__slider-profession {
	font-weight: 500;
	font-size: 20px;
	margin-bottom: 20px;
}
.new-design .expert-parenting__items {
	display: flex;
	gap: 40px;
}
.new-design .expert-parenting__item {
	flex-grow: 1;
    flex-basis: 0;
    display: flex;
    flex-direction: column;
    position: relative;
	color: inherit;
}
.new-design .expert-parenting__item:hover {
	color: inherit;
}
.new-design .expert-parenting__item-image {
	max-height: 260px;
}
.new-design .expert-parenting__item-image img {
	border-radius: 20px 20px 0 0;
	height: 100%;
	object-fit: cover;
}
.new-design .expert-parenting__item-info {
	padding: 20px;
	height: 400px;
	background: var(--light-grey);
	border-radius: 0 0 20px 20px;
}
.new-design .expert-parenting h3 {
	text-align: left;
	margin-bottom: 20px;
	
}
.new-design .expert-parenting__item-date {
	position: absolute;
	bottom: 20px;
	font-weight: 300;
	font-size: 12px;
}
.new-design .questions h2:after {
	display: none;
}
.new-design .questions__item {
	margin-bottom: 20px;
}
.new-design .questions__item:last-child {
	margin-bottom: 0;
}
.new-design .questions__item-question {
	border-radius: 20px;
	padding: 20px 40px;
	box-shadow: 0 4px 17px 0 rgba(0, 0, 0, 0.14);
	font-weight: 500;
	font-size: 20px;
	color: var(--dark);
	position: relative;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.new-design .questions__item-question p{
	margin-bottom: 0;
	flex: 1 0;
	font-weight: 500;
	font-size: 20px;
}
.new-design .questions__item-question-arrow {
	content: '';
	background-color: rgba(211, 241, 248, 1);
	width: 36px;
    height: 36px;
	transform: rotate(0deg);
	border-radius: 20px;
	transition: .4s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.new-design .questions__item-question-arrow svg *{
	transition: .4s;
}
.new-design .questions__item-question:hover .questions__item-question-arrow, .new-design .questions__item.open .questions__item-question-arrow{
	background-color: var(--main-blue);
}
.new-design .questions__item-question:hover svg *, .new-design .questions__item.open .questions__item-question svg *{
	fill: white;
}
.new-design .questions__item.open .questions__item-question-arrow{
	transform: rotate(-180deg);
}
.new-design .questions__item:last-child .questions__item-answer{
	margin-bottom: 0;
}
.new-design .questions__item-answer {
	margin: 40px 0;
	display: none;
}
@media(max-width: 767px){
	.new-design .questions__item-question p{
		font-size: 18px;
	}
	.new-design .questions__item-question{
		padding: 20px;
	}
}
.new-design .resources {
	background: var(--blue-500);
	padding: 140px 0;
}
.new-design .resources__wrapper {
	display: flex;
}
.new-design .resources__left, .resources__right {
	width: 50%;
}
.new-design .resources__right {
	margin-left: 40px;
}
.new-design .resources__left img {
	border-radius: 40px;
	height: 100%;
	object-fit: cover;
}
.new-design .resources h2, .resources .title-description, .resources h3 {
	text-align: left;
}
.new-design .resources h3 {
	margin-bottom: 20px;
}
.new-design .resources .title-description {
	margin-bottom: 20px;
}
.new-design .resources h2:after {
	left: 0;
}
.new-design .download-options {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 20px;
}
.new-design .download-options__item {
	display: flex;
	align-items: center;
	gap: 10px;
}
.new-design .download-options__item-number {
	border-radius: 20px;
	padding: 9px 15px;
	background: var(--white);
}
.new-design .resources__download-marketplace {
	display: flex;
	gap: 20px;
	margin-bottom: 40px;
}
.new-design .additional-resources {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.new-design .additional-resources .button {
	max-width: 345px;
	padding: 19px 40px;
}
.new-design .footer {
	padding-top: 40px;
	padding-bottom: 190px;
	color: var(--main-blue);
	background-color: white;
	padding-right: 0;
	padding-left: 0;
	display: block;
}
.new-design .footer__items {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 40px;
}
.new-design .footer ul {
    margin: 0;
	padding: 0;
}
.new-design .footer ul li {
	list-style: none;
	padding: 10px 0;
}
.new-design .footer__item-title {
	font-weight: 700;
	margin-bottom: 10px;
}
.new-design .footer__socials-title {
	font-weight: 700;
	margin-top: 50px;
	margin-bottom: 10px;
}
.new-design .footer__socials-icons {
	display: flex;
	gap: 10px;
}
.new-design .footer .button {
	margin-top: 40px;
}
.new-design .modal-target {
    display: none;
    align-items: baseline;
    justify-content: center;    
    z-index: 4;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
}
.new-design .footer__socials-link {
	height: 40px;
    width: 40px;
	border-radius: 100%;
	transition: .4s;
	border: 1px solid var(--main-blue);
	display: flex;
	align-items: center;
	justify-content: center;
}
.new-design .footer__socials-link svg{
	max-width: 100%;
	max-height: 100%;
}
.new-design .footer__socials-link svg * {
	transition: .4s;
}
.new-design .footer__socials-link:hover{
	background-color: var(--main-blue);
}
.new-design .footer__socials-link:hover svg path:not(.letter){
	stroke: white;
}
.new-design .footer__socials-link:hover svg path.letter{
	fill: white;
}
.new-design .modal-target{
	align-items: center;
	justify-content: center;
}
.new-design .modal-target .popup {
    padding: 20px;
    max-height: 90%;
    transition: 0.5s;
    text-align: center;
    overflow: auto;
	border-radius: 20px;
    width: 1280px;
    box-shadow: 0 4px 17px 0 rgba(0, 0, 0, 0.14);
    background: var(--blue-500);
	max-width: 95%;
}
.new-design .modal-target .popup__wrapper{
	position: relative;
}
.new-design .popup-close {
	position: absolute;
	top: 10px;
	right: 10px;
	background: var(--main-pink);
	padding: 6px 9px;
    border-radius: 100%;
	transition: background-color 0.4s ease-in-out;
	width: 30px;
	height: 30px;
}
.new-design .popup-close:hover {
	background: var(--main-blue);
	transition: background-color 0.4s ease-in-out;
}
.new-design .popup__content {
	max-width: 620px;
	margin: 0 auto;
	text-align: center;
	padding: 80px 0;
}
.new-design .popup__content-text {
	margin-bottom: 40px;
}
.new-design .popup__content h2:after {
	content: none;
}

.new-design .expert-parenting__item-image img{
	width: 100%;
}
@media(max-width: 1280px){
	.new-design .modal-target .popup {
		width: 70%;
	}
	.new-design .modal-target .popup__content h2{
		font-size: 36px;
		margin-bottom: 30px;
	}
	.new-design .popup__content-text{
		margin-bottom: 30px;
	}

	.new-design .popup__content {
		padding: 30px 15px;
	}
	.new-design .popup__content h2 {
		line-height: 1;
	}
}
@media(max-width: 991px){
	.new-design .modal-target .popup {
		width: 90%;
	}
	.new-design .modal-target .popup__content h2{
		font-size: 32px;
		margin-bottom: 20px;
	}
	.new-design .popup__content-text{
		margin-bottom: 20px;
	}
}
@media(max-width: 767px){
	.new-design .popup__content{
		padding: 40px 15px;
	}
	.new-design .modal-target .popup__content h2{
		font-size: 28px;
	}
}
@keyframes scale {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes bg {
    0% {
        background: rgba(51, 122, 183, 0);
    }
    100% {
        background: rgba(0, 0, 0, 0.5);
    }
}
.new-design .footer__logo{
	display: inline-block;
}
@media(max-width: 1280px) {
	.new-design .slick-track {
		display: flex;
	}
	.new-design .slick-initialized .slick-slide {
		height: auto;
        flex: 0 0 auto;
		display: flex;
		flex-direction: column;
	}
	.new-design .header__wrapper {
		padding: 15px 0;
	}
	.new-design .header__logo img {
		width: 100px;
	}
	.new-design .burger {
		cursor: pointer;
		position: relative;
		border: none;
		background: transparent;
		width: 25px;
		height: 20px;
	}
	.new-design .burger::before, .new-design .burger::after {
		content: '';
		left: 0;
		position: absolute;
		display: block;
		width: 100%;
		height: 3px;
		border-radius: 10px;
		background: var(--main-blue);;
	}
	.new-design .burger::before {
		top: 0;
		box-shadow: 0 8px 0 var(--main-blue);;
		transition: box-shadow .3s .15s, top .3s .15s, transform .3s;
	}
	.new-design .burger::after {
		bottom: 0;
		transition: bottom .3s .15s, transform .3s;
	}
	.new-design .burger.active::before {
		top: 6px;
		transform: rotate(45deg);
		box-shadow: 0 6px 0 rgba(0,0,0,0);
		transition: box-shadow .15s, top .3s, transform .3s .15s;
	}
	.new-design .burger.active::after {
		bottom: 11px;
		transform: rotate(-45deg);
		transition: bottom .3s, transform .3s .15s;
	}
	.new-design .header__menu-mobile {
		position: fixed;
		left: -15px;
		background: var(--light-grey);
		z-index: 2;
		width: calc(100% + 15px);
		text-align: center;
		padding-bottom: 20px;
	}
	.new-design .header__menu-mobile .header__menu-item {
		margin-bottom: 15px;
	}
	.new-design .header__menu-mobile ul {
		padding: 0;
		margin: 20px 0;
		font-weight: 700;
	}
	.new-design .header__menu-mobile ul li {
		list-style: none;
	}
	.new-design .key-features__items {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}
	.new-design .youtube-channels__items {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
		margin-right: 20px;
	}
	.new-design .simple-steps__items{
		margin-left: -15px;
		width: calc(100% + 30px);
	}
	.new-design .simple-steps__item {
		margin-left: 15px;
		margin-right: 15px;
		margin-bottom: 20px;
	}
	.new-design .learnin-victories .container {
		padding: 0;
		overflow: hidden;
	}
	/*.new-design .learnin-victories h2, .new-design .learnin-victories .title-description, .new-design .learnin-victories h3 {
		padding: 0 15px;
	}*/
	.new-design .why-pastory .container {
		padding: 0;
		overflow: hidden;
	}
	/*.new-design	.why-pastory h2, .new-design .why-pastory .title-description, .new-design .why-pastory .section__bottom-text, .new-design .why-pastory .why-pastory__btn {
		padding: 0 15px;
	}*/
	.new-design .why-pastory__items{
		margin-left: -15px;
		width: calc(100% + 30px);
	}

	.new-design .why-pastory__item {
		flex-direction: column;
		gap: 20px;
		text-align: center;
		margin-left: 15px;
		margin-right: 15px;
	}
	.new-design .curriculum .container {
		padding: 0;
		overflow: hidden;
	}
	/*.new-design .curriculum h2, .new-design .curriculum .title-description, .new-design .curriculum .section__bottom-text {
		padding: 0 15px;
	}*/
	.new-design .curriculum__items {
		margin-top: 0;
	}
	.new-design .curriculum__items{
		margin-left: -15px;
		width: calc(100% + 30px);
	}
	.new-design .curriculum__item {
		padding-top: 40px;
		margin-left: 15px;
		margin-right: 15px;
	}
	.new-design .curriculum__item-bage {
		top: 0;
	}
	.new-design .curriculum__item-info {
		padding: 20px;
		padding-bottom: 25px;
	}
	.new-design .featured-activities__items {
		display: flex;
	}
	.new-design .featured-activities .container {
		padding: 0;
		overflow: hidden;
	}
	/*.new-design .featured-activities h2, .new-design .featured-activities h3, .new-design .featured-activities .title-description, .new-design .featured-activities .section__bottom-text {
		padding: 0 15px;
	}*/
	.new-design .featured-activities__items{
		margin-left: -15px;
		width: calc(100% + 30px);
	}
	.new-design .featured-activities__item {
		margin-left: 15px;
		margin-right: 15px;
	}
	.new-design .featured-activities__item {
		text-align: center;
		text-align: center;
		flex-direction: column;
	}
	.new-design .reviews .container {
		padding: 0;
	}
	/*.new-design .reviews h2, .new-design .reviews .title-description, .new-design .reviews .section__bottom-text, .new-design .reviews .reviews__button {
		padding: 0 15px;
	}*/
	.new-design .our-team__slider {
		margin-top: 60px;
	}
	./*new-design .our-team .section__bottom-text {
		padding: 0 15px;
	}*/
	.new-design .expert-parenting__items {
		gap: 20px;
	}
	.new-design .popup {
		width: calc(100% - 30px);
		margin: 0;
		left: 15px;
	}
	main.new-design-main{
		padding-top: 70px;
	}
}
@media(max-width: 1279px) {
	.new-design .our-team__slider-item.color-image .our-team__slider-image {
		filter: grayscale(0);
	}
}
@media(max-width: 1200px) {
	.new-design .header__nav, .new-design .header__socials {
		display: none;
	}
	.new-design .burger {
		display: block;
	}
	.new-design h1 {
		font-size: 38px;
	}
	.new-design h2 {
		font-size: 38px;
	}
	.new-design h3 {
		font-size: 28px;
	}
	.new-design-wrapper {
		overflow: hidden;
		gap: 120px;
	}
	.new-design .main-banner__title {
		margin-top: 0px;
	}
	.new-design .subscribe {
		padding: 120px 0;
	}
	/*.new-design .our-team__slider{
		margin-left: -10px;
		width: calc(100% + 20px);
	}*/
	.new-design .our-team__slider-item {
		margin: 0 10px;
	}
	.new-design .our-team__slider-info {
		padding: 20px;
	}
	.new-design .resources {
		padding: 120px 0;
	}
	main.new-design-main{
		padding-top: 65px;
	}
}
@media(max-width: 991px) {
	.new-design h1 {
		font-size: 34px;
	}
	.new-design h2 {
		font-size: 34px;
	}
	.new-design h3 {
		font-size: 26px;
	}	
	.new-design-wrapper {
		gap: 100px;
	}
	.new-design .subscribe {
		padding: 100px 0;
	}
	.new-design .expert-parenting__item-info {
		min-height: 371px;
	}
	.new-design .resources {
		padding: 100px 0;
	}
	.new-design .resources__wrapper {
		flex-direction: column;
		gap: 30px;
	}
	.new-design .resources__left, .new-design .resources__right {
		width: 100%;
		margin: 0;
	}
	.new-design .resources .title-description {
		margin: 0 0 20px 0;
	}
	.new-design .button {
		padding: 19px 50px;
	}
	.new-design .reviews__item-text {
        font-size: 18px;
    }
    .new-design .expert-parenting__items{
    	flex-wrap: wrap;
    }
    .new-design .expert-parenting__item{
    	flex: 1 0;
    	min-width: calc(50% - 20px);
    }
}
@media(max-width: 767px) {
	body.new-design {
		font-size: 14px;
	}
	.new-design h1 {
		font-size: 32px;
	}
	.new-design h2 {
		font-size: 32px;
	}
	.new-design h3 {
		margin-bottom: 30px;
	}
	.new-design p {
		margin-bottom: 10px;
	}
	.new-design .button {
		min-width: 100%;
		padding: 19px 30px;
	}
	.new-design .button.sm-btn {
		padding: 7px 15px;
		font-size: 14px;
	}
	main.new-design-main{
		padding-top: 60px;
	}
	.new-design .main-banner__wrapper{
		margin-top: 40px;
		flex-wrap: wrap;
	}
	.new-design .title-description {
		margin-bottom: 30px;
	}
	.new-design .section__bottom-text {
		margin: 30px auto 20px auto;
		max-width: 620px;
		position: relative;
		text-align: center;
	}
	.new-design .slick-dotted.slick-slider {
		margin-bottom: 65px;
	}
	.new-design .slick-dots {
		bottom: -35px;
	}
	.new-design-wrapper {
		gap: 70px;
	}
	.new-design .main-banner__right img {
		margin-top: 25px;
	}
	.new-design .questions__item-question {
		font-size: 18px;
	}
	.new-design .mian-banner__wrapper {
		margin-top: 0px;
		gap: 20px;
		display: block;
	}
	.new-design .main-banner__left, .new-design .main-banner__right {
		width: 100%;
	}
	.new-design .main-banner .button {
		width: 100%;
	}
	.new-design .main-banner__right img {
        position: relative;
		width: calc(100% + 10px);
		max-width: calc(100% + 10px);
        left: -10px
	}
	.new-design .key-features__items {
		grid-template-columns: 100%;
		margin-right: 0px;
	}
	.new-design .learnin-victories .slick-dotted.slick-slider {
		margin-bottom: 15px;
	}
	.new-design .learnin-victories .slick-dotted.slick-slider .slick-dots {
		bottom: -15px;
	}
	.new-design .why-pastory__item {
		padding: 30px;
	}
	.new-design .why-pastory__item-icon {
		margin: 0 auto;
	}
	.new-design .why-pastory__item-title {
		width: 100%;
		font-size: 26px;
	}
	.new-design .why-pastory .slick-dots {
		bottom: -35px;
	}
	.new-design .curriculum__item-overlay {
		background: linear-gradient(#69cde800 30%, #69CDE8 55%);
	}
	.new-design .curriculum__item-title {
		font-size: 26px;
	}
	.new-design .featured-activities__items {
		grid-template-columns: 100%;
	}
	.new-design .featured-activities__item-title {
		font-size: 26px;
	}
	.new-design .featured-activities__item-icon img {
		margin: 0 auto;
	}
	.new-design .subscribe {
		padding: 70px 0;
	}
	.new-design .subscribe__wrapper {
		flex-direction: column;
	}
	.new-design .subscribe__text, .new-design .subscribe__form {
		width: 100%;
	}
	.new-design .subscribe__form {
		margin-top: 30px;
	}
	.new-design .subscribe__form-fields {
		flex-direction: column;
	}
	.new-design .subscribe__form-fields input {
		margin-bottom: 20px;
	}
	.new-design .subscribe__form-policy {
		margin-top: 20px;
	}
	.new-design .youtube-channels__items {
		grid-template-columns: 100%;
		grid-gap: 30px;
		margin-right: 0px;
    }
	.new-design .youtube-channels__item {
		padding: 20px;
		height: 160px;
		gap: 10px;
	}
	.new-design .backed-by__items {
		flex-direction: column;
		gap: 30px;
	}
	.new-design .backed-by__item {
		width: 100%;
	}
	.new-design .backed-by__item-title {
		font-size: 26px;
	}
	.new-design .reviews__item {
		margin-left: 15px;
		margin-right: 15px;
	}
	.new-design .reviews__item-text {
		font-size: 14px;
	}
	.new-design .reviews__items{
		margin-left: -15px;
		width: calc(100% + 30px);
	}
	.new-design .reviews__item:nth-child(2n) {
		margin-right: 15px;
		margin-left: 15px;
	}
	.new-design .reviews__button {
		margin-top: 50px;
	}
	.new-design .reviews__items.no-dots .slick-dots {
		display: block;
	}
	.new-design .expert-parenting__items {
		flex-direction: column;
		gap: 30px;
	}
	.new-design .our-team__slider-item .our-team__slider-image {
		filter: grayscale(100);
	}
	.new-design .our-team__slider-item.slick-active .our-team__slider-image {
		filter: grayscale(0);
	}
	.new-design .our-team__slider-author {
		font-size: 26px;
	}
	.new-design .our-team__slider-profession {
		font-size: 18px;
	}
	.new-design .expert-parenting__item-info {
		height: auto;
		min-height: 371px;
		padding: 20px;
	}
	.new-design .questions__item-question {
		padding-left: 20px;
	}
	.new-design .questions__item-question::after {
		right: 20px;
		width: 24px;
		height: 24px;
		top: calc(50% - 12px);
	}
	.new-design .resources {
        padding: 70px 0;
    }
	.new-design .resources__left img {
		border-radius: 20px;
		min-height: 290px;
	}
	.new-design .download-options {
		flex-direction: column;
	}
	.new-design .resources__download-marketplace img {
		width: 100%;
		max-width: 290px;
	}
	.new-design .additional-resources {
		flex-direction: column;
	}
	.new-design .footer {
		padding: 40px 0;
	}
	.new-design .footer .footer__socials-title {
		margin-top: 30px;
		text-align: center;
	}
	.new-design .footer__items {
		grid-template-columns: 1fr 1fr;
		grid-gap: 10px;
	}
	.new-design .footer__item {
		width: 100%;
	}
	.new-design .footer__item:first-child {
		text-align: center;
		grid-column: 1 / 4;
	}
	.new-design .footer__socials-icons {
		justify-content: center;
	}
	.new-design .footer ul li {
		margin-bottom: 0px;
	}
	.new-design .footer ul li {
		padding: 6px 0;
	}
	.new-design .footer .button {
		margin-top: 20px;
		margin-bottom: 14px;
	}
	.new-design .footer__item-title {
		margin: 6px 0;
	}
	.new-design .popup {
		top: 20px;
	}
	.new-design .key-features{
		margin-top: 0px;
	}
}
@media(max-width: 575px){
	.new-design .footer__item:first-child {
		grid-column: 1 / 3;
	}
}
@media(max-width: 479px) {
	.new-design .resources__download-marketplace {
		flex-direction: column;
	}
	.new-design .footer__items {
		grid-template-columns: 1fr;
	}
	.new-design .footer__item:first-child {
		grid-column: 1;
	}
	.new-design .expert-parenting__item-image{
		max-height: 190px;
	}
}
@media(max-width: 479.98px){
	.new-design .footer div{
		width: auto;
		text-align: left;
	}
}
.new-design .new-design-form__error{
	display: none;
	color: red;
	margin-bottom: 0;
	font-size: 14px;
	margin-top: 20px;
	text-align: center;
}
.new-design-form input.error{
	border-color: red;
}