@font-face {
	font-family: 'Ossem';
	font-style: normal;
	font-weight: 400;
	src: local('Ossem Regular'), local('Ossem-Regular'),
	url("../fonts/ossem/Ossemregular.woff2") format("woff2"),
	url("../fonts/ossem/Ossemregular.woff") format("woff");
}

html {
	scroll-behavior: auto;
}

* {
	box-sizing: border-box;
}

body {
	font-family: 'Fira Sans', sans-serif;
}

.container {
	max-width: 1920px;
	margin: 0 auto;
	padding: 0 75px;
}

.title-h2 {
	font-size: 35px;
	line-height: 42px;
	color: #000000;
}

.main-text {
	font-size: 22px;
	line-height: 26px;
	color: #000000;
}

.main-btn {
	cursor: pointer;
	border: none;
	color: #FFFFFF;
	background: #3D32CF;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
	border-radius: 10px;
	transition: 0.3s;
}

.main-btn:hover {
	background: #22B431;
}

.main-btn:active {
	background: #228d2d;
}

a.form-link {
	transition: all 0.3s;
}

a.form-link:hover {
	text-decoration: underline;
}

a.form-link:active {
	text-decoration-color: #000;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	transition: all 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
	box-shadow: 0 0 0 1px #3D32CF;
}
.second-font {
	font-family: 'Ossem', sans-serif;
	color: #3D32CF;
}

.checked-icon li {
	position: relative;
}

.checked-icon li:before {
	content: '';
	position: absolute;
	width: 30px;
	height: 30px;
	background-image: url(../images/icons/checked-icon.svg);
}


/*header*/

.header__menu.vanish {
	display: none;
}

.header__menu-top {
	padding: 36px 0;
	background: #FFFFFF;
	z-index: 11;
	position: relative;
}

.header__menu-top-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__menu .header__menu-top-inner {
	-webkit-animation: slide-in-top 1s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
	animation: slide-in-top 1s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}

.header__menu-hidden {
	opacity: 0;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 1;
	animation-name: fade-out;
	animation-duration: .3s;
}

.header__menu-hidden.show {
	opacity: 1;
	animation-name: fade-in;
	animation-duration: .3s;
}

.header__menu-hidden .header__menu-top {
	border-bottom: 1px solid #3D32CF;
}

.header__menu-hidden .header__logo img {
	width: 190px;
	height: auto;
}
.header__menu-hidden .header__menu-bot-nav ul li a {
	color: #3D32CF;
	padding: 0 10px;
	font-size: 22px;
}

.header__menu-hidden .header__menu-bot-nav ul li a:hover {
	color: #CFCBFF;
}

.header__menu-hidden .header__menu-bot-nav ul li a:active {
	color: #8278ef;
}

.header__menu-hidden .header__menu-top-right {
	flex: 0 0 540px;
}

.header__menu-hidden .header__menu-bot-nav ul {
	gap: 0;
}

.header__main-right-inner {
	display: none;
}

.header__menu-top-left {
	display: flex;
	align-items: center;
	gap: 50px;
}

.header__logo-text {
	max-width: 264px;
	font-weight: 500;
	font-size: 25px;
	line-height: 30px;
	color: #3D32CF;
}

.header__menu-top-right {
	display: flex;
	align-items: center;
}

.header__lang-wrap {
	position: relative;
}

.header__lang-wrap:hover .header__lang-hidden {
	display: flex;
}

.header__lang-hidden {
	display: none;
	position: absolute;
	right: 0;
	bottom: -50px;
	margin: 0;
	padding: 7px;
	list-style: none;
	width: 150px;
	height: 50px;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
	background: #EEEDFF;
	box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.25);
	border-radius: 10px;
}

.header__lang-hidden li {
	font-size: 0;
}

.header__lang-hidden li a {
	font-size: 0;
	filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
}

.header__lang-hidden li a:hover,
.header__lang-hidden li a:active {
	filter: drop-shadow(0px 0px 5px #3D32CF);
}

.header__phone-wrap {
	margin-right: 47px;
	/*margin-left: 30px;*/
	text-decoration: none;
}

.header__whatsapp-wrap {
	margin: 0 10px;
}

.header__phone-wrap:hover {
	text-decoration: underline;
}

.header__phone-wrap:active {
	text-decoration-color: #000;
}

.header__phone-icon {
	font-size: 0;
	margin-right: 10px;
}

.header__phone {
	font-weight: 600;
	font-size: 25px;
	line-height: 30px;
	color: #000000;
	vertical-align: bottom;
}

.header__menu-btn button{
	padding: 14px 20px;
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
}

.header__menu-bot {
	background-color: #3D32CF;
	padding: 34px 0;
	z-index: 10;
}

.header__menu-bot-nav ul{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 110px;
}

.header__menu-bot-nav ul li {
	-webkit-animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.header__menu-bot-nav ul li a {
	font-size: 25px;
	line-height: 30px;
	color: #FFFFFF;
	text-decoration: none;
	transition: 0.3s;
}

.menu-bot-nav__font {
	font-family: 'Ossem', sans-serif;
}

.header__menu-bot-nav ul li a:hover {
	text-decoration: underline;
	color: #CFCBFF;
}

.header__menu-bot-nav ul li a:active {
	text-decoration-color: #7c73df;
}

.header__hidden-line {
	display: none;
	width: 100%;
	height: 5px;
	background-color: #3D32CF;
}

/*.header__main-wrap {
	padding-top: 98px;
}*/

.header__main {
	background: #FFFFFF url(../images/interface-en.png) no-repeat 140% 55%;
}

.header__main-inner {
	/*	padding: 97px 0 137px;*/
	display: flex;
}

.header__main-left {
	max-width: 885px;
	padding-right: 75px;
	background: rgba(255,255,255,.8);
	-webkit-animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.header__main-left-in {
	padding: 97px 0 137px;
}

.header__main-title {
	font-size: 50px;
	line-height: 62px;
	color: #000000;
	margin-bottom: 55px;
}

.header__main-subtitle {
	font-weight: 600;
	margin-bottom: 32px;
}

.header__main-list {
	margin: 0;
	padding: 0;
	padding-left: 45px;
	list-style: none;
}

.header__main-list li {
	font-size: 22px;
	line-height: 26px;
	color: #000000;
	margin-bottom: 19px;
}

.header__main-list li:before {
	left: -45px;
	top: 50%;
	transform: translateY(-50%);
}

.header__main-list li:last-child {
	margin-bottom: 0;
}

.header__main-btn {
	margin-top: 50px;
}

.header__main-btn button {
	font-size: 18px;
	padding: 14px 37px;
}


/*solutions*/

.solutions {
	background: #EEEDFF;
}

.solutions__inner {
	padding: 40px 0 46px;
}

.solutions__title {
	text-align: center;
	margin-bottom: 64px;
}

.solutions-item {
	width: 50%;
	position: relative;
	min-height: 220px;
}

.visible.solutions-item__list {
	-webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

.solutions-item:before {
	content: '';
	position: absolute;
	top: 80px;
	bottom: -32px;
	right: 0;
	transform: translateX(50%);
	width: 3px;
	background: #9E9E9E;
}

.solutions-item:nth-child(even):before {
	left: 0;
	transform: translateX(-50%);
}

.solutions-item:last-child:before {
	display: none;
}

.solutions-item:nth-child(even) {
	margin-left: auto;
}

.solutions-item__inner {
	max-width: 443px;
	margin: 0 auto;
	margin-bottom: 32px;
}

.solutions-item__title {
	font-weight: 600;
	margin-bottom: 22px;
}

.solutions-item__list {
	margin: 0;
	padding: 0;
	list-style: none;
	padding-left: 45px;
}

.solutions-item__list li {
	margin-bottom: 19px;
	font-size: 22px;
}

.solutions-item__list li:before {
	top: 50%;
	transform: translateY(-50%);
	left: -45px;
}

.solutions-item__check {
	position: absolute;
	top: 0;
	right: 0;
	transform: translateX(50%);
	display: inline-block;
	text-align: center;
}

.solutions-item:nth-child(even) .solutions-item__check {
	left: 0;
	right: auto;
	transform: translateX(-50%);
}

/*.solutions-item__check svg {
	cursor: pointer;
}
*/
.solutions-item__check svg path{
	transition: all 0.5s;
}

.step-item__arrow svg path {
	transition: all 0.5s;
}

/*.solutions-item__check svg:hover path,
.solutions-item__check svg:active path  {	
	fill: #00BD13;
}*/


.solutions-item__check.hidden-color svg path {
	fill: #00BD13;
}

/*projects*/

.projects {
	background: #FFFFFF;
}

.projects__inner {
	padding: 70px 0 35px;
}

.projects__title {
	text-align: center;
	margin-bottom: 58px;
}

.projects__items-wrap {
	display: flex;
	/*	gap: 30px;*/
	align-items: start;
	margin-right: -15px;
	margin-left: -15px;
}

.project-item {
	max-width: 420px;
	background: #EEEDFF;
	box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
	flex: 0 1 420px;
	margin-right: 15px;
	margin-left: 15px;
	margin-bottom: 30px;
}

.project-item.visible:first-child {
	-webkit-animation: flip-in-ver-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: flip-in-ver-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.project-item.visible:nth-child(2) {
	-webkit-animation: flip-in-ver-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s both;
	animation: flip-in-ver-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s both;
}

.project-item.visible:nth-child(3) {
	-webkit-animation: flip-in-ver-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s both;
	animation: flip-in-ver-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s both;
}

.project-item.visible:nth-child(4) {
	-webkit-animation: flip-in-ver-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1.5s both;
	animation: flip-in-ver-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1.5s both;
}

.project-item__img img {
	width: 100%;
	height: 231px;
	object-fit: cover;
}

.project-item__text {
	padding: 15px 31px 20px 32px;
}

.project-item__title,
.project-item__ssubtitle {
	text-align: center;
	font-weight: 600;
	margin-bottom: 22px;
}

.project-item__list {
	margin: 9px 0 25px;
	padding: 0;
	list-style: none;
	padding-left: 53px;
	position: relative;
}

.project-item__hidden-list {
	display: none;
}

.project-item__hidden-list .project-item__list {
	margin-top: 0px;
}

.project-item__list:not(.hidden-list):before {
	content: '';
	position: absolute;
	bottom: -12px;
	left: 0;
	right: 0;
	height: 2px;
	background-color: #3D32CF;
}

.project-item__list li {
	margin-bottom: 19px;
}

.project-item__list li:last-child {
	margin-bottom: 0;
}

.project-item__list li:before {
	top: 50%;
	transform: translateY(-50%);
	left: -45px;
}

.project-item__button {
	text-align: center;
	margin-top: 0px;
	position: relative;
}

/*.project-item__button:before {
	content: '';
	position: absolute;
	top: -15px;
	left: 0;
	right: 0;	
	height: 2px;
	background-color: #3D32CF;
}*/

.project-item__button button {
	padding: 14px 23px;
}

.project-item__text a.main-btn {
	padding: 14px 23px;
	text-decoration: none;
	display: inline-block;
}

/*feedback*/

.feedback {
	background: #FFFFFF;
}

.feedback__inner {
	padding: 20px 0 70px;
}

.feedback__title {
	text-align: center;
	margin-bottom: 60px;
}

.feedback__form-wrap {
	padding: 30px 75px 92px;
	background: linear-gradient(90.1deg, #FFFFFF 62.37%, rgba(255, 255, 255, 0) 99.9%),
	url('../images/feedback-form-bg.jpg') no-repeat 100% 0;
	border: 1px solid #3D32CF;
	background-size: contain;
}

.feedback__form-wrap.visible {
	-webkit-animation: bounce-top 1.9s both;
	animation: bounce-top 1.9s both;
}

.footer__form-wrap.visible {
	-webkit-animation: bounce-top 1.9s both;
	animation: bounce-top 1.9s both;
}

.feedback-form {
	max-width: 1055px;
}

.feedback-form__title {
	font-weight: 500;
	margin-bottom: 36px;
}

.feedback-form__main {
	display: grid;
	grid-template-columns: calc((100% - 155px) / 3) calc((100% - 155px) / 3) 1fr;
	grid-template-rows: auto;
	grid-gap: 30px;
	align-items: start;
}

.feedback-form__main input {
	padding: 18px 20px;
	border: 1px solid #3D32CF;
	border-radius: 10px;
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
	color: #000000;
	outline: none;
}

.feedback-form__main button {
	padding: 19px 20px;
	font-weight: 500;
	font-size: 20px;
	outline: none;
	grid-column: 3/4;
	grid-row: 1/2;
	max-width: 300px;
}

.feedback-form__privacy {
	font-size: 15px;
	line-height: 20px;
	color: #000;
	max-width: 330px;
}


.feedback-form__privacy a {
	color: #3d32cf;
	text-decoration: none;
}

/*present*/

.present {
	background: #EEEDFF;
}

.present__inner {
	padding: 40px 0 50px;
}

.present__title {
	max-width: 1262px;
	margin: 0 auto;
	font-size: 50px;
	line-height: 60px;
	text-align: center;
	color: #000000;
	margin-bottom: 40px;
}

.present__subtitle {
	text-align: center;
	margin-bottom: 58px;
}

.present__pic {
	text-align: center;
}

.present__pic img {
	max-width: 100%;
}

.present__pic-hidden {
	text-align: center;
	display: none;
}

.present__pic-hidden img {
	width: 100%;
}

/*plus*/

.plus {
	background: #FFFFFF;
}

.plus__inner {
	padding: 70px 0;
}

.plus__title {
	text-align: center;
	margin-bottom: 68px;
}

.plus-wrap {
	max-width: 1246px;
	margin: 0 auto;
}

.plus__top,
.plus__bot {
	text-align: center;
}

.plus__main {
	margin: 118px 0;
	display: flex;
	justify-content: space-between;
	gap: 10%;
}

.plus-item {
	max-width: 270px;
	width: 33%;
	position: relative;
	padding: 0 5px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.plus__top .visible.plus-item {
	-webkit-animation: flip-in-hor-bottom 1.0s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: flip-in-hor-bottom 1.0s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.plus__main .visible.plus-item {
	-webkit-animation: flip-in-hor-bottom 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: flip-in-hor-bottom 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.plus__main .visible.plus-item:nth-child(2) {
	-webkit-animation: flip-in-hor-bottom 2.0s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: flip-in-hor-bottom 2.0s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.plus__main .visible.plus-item:nth-child(3) {
	-webkit-animation: flip-in-hor-bottom 2.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: flip-in-hor-bottom 2.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.plus__bot .visible.plus-item {
	-webkit-animation: flip-in-hor-bottom 3.0s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: flip-in-hor-bottom 3.0s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.plus__top .plus-item,
.plus__bot .plus-item {
	margin: 0 auto;
}

.plus-item__line {
	position: absolute;
	background-color: #3D32CF;;
}

.line-top {
	width: 2px;
	height: 95px;
	top: -215px;
	left: 50%;
	transform: translateX(-50%);
}

.line-right {
	width: 230px;
	height: 2px;
	right: -230px;
	top: 50%;
}

.line-bot {
	width: 2px;
	height: 95px;
	bottom: -110px;
	left: 50%;
	transform: translateX(-50%);
}

.line-left {
	width: 230px;
	height: 2px;
	left: -230px;
	top: 50%;
}


.plus-item__img {
	text-align: center;
	margin-bottom: 25px;
}

.plus-item__desc {
	text-align: center;
	font-weight: 500;
	font-size: 22px;
	line-height: 26px;
	color: #000000;
	position: relative;
}

/*steps*/

.steps {
	background: #EEEDFF;
}

.steps__inner {
	padding: 40px 0 50px;
}

.steps__title {
	text-align: center;
	margin-bottom: 62px;
}

.step-items-wrap {
	display: flex;
	justify-content: space-between;
}

.step-item {
	max-width: 315px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	flex: 0 1 315px;
}

.visible.step-item:first-child {
	-webkit-animation: swing-in-top-fwd 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
	animation: swing-in-top-fwd 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}

.visible.step-item:nth-child(2) {
	-webkit-animation: swing-in-top-fwd 1s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
	animation: swing-in-top-fwd 1s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}

.visible.step-item:nth-child(3) {
	-webkit-animation: swing-in-top-fwd 1.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
	animation: swing-in-top-fwd 1.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}

.visible.step-item:nth-child(4) {
	-webkit-animation: swing-in-top-fwd 2s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
	animation: swing-in-top-fwd 2s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}

.visible.step-item:nth-child(5) {
	-webkit-animation: swing-in-top-fwd 2.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
	animation: swing-in-top-fwd 2.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}

.step-item:last-child .step-item__number {
	background: #22B431;
}

.step-item__number {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 50px;
	color: #fff;
	width: 70px;
	height: 70px;
	background: #3D32CF;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	margin-bottom: 15px;
}

.step-item__desc {
	font-size: 22px;
	line-height: 26px;
	text-align: center;
	color: #000000;
	margin-bottom: 17px;
}

.step-item__text {
	font-size: 22px;
	line-height: 26px;
	text-align: center;
	color: #000000;
}

.step-item__arrow {
	margin-top: 19px;
}


/*footer*/

.footer__main {
	background: #FFFFFF;
}

.footer__inner {
	padding: 70px 0;
}

.footer__title {
	font-size: 35px;
	line-height: 42px;
	color: #000000;
	text-align: center;
	margin-bottom: 60px;
}

.footer__form-wrap {
	background: linear-gradient(90deg, #FFFFFF 66.67%, rgba(255, 255, 255, 0) 100%),
	url('../images/footer-form-bg.jpg') no-repeat 100% 0;
	border: 1px solid #3D32CF;
	padding: 30px 75px 93px;
}

.footer__form-title {
	font-weight: 500;
	font-size: 22px;
	line-height: 26px;
	color: #000000;
	margin-bottom: 35px;
}

.footer__form-main {
	max-width: 960px;
	display: grid;
	grid-template-columns: repeat(3, calc((100% - 60px) / 3));
	grid-template-rows: auto;
	grid-gap: 30px;
	margin-bottom: 30px;
}

.footer__form-main input {
	padding: 19px 20px;
	border: 1px solid #3D32CF;
	border-radius: 10px;
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	color: #000000;
	outline: none;
}

.footer__form-area {
	grid-column: 3/4;
	grid-row: 1/3;
	padding: 19px 20px;
	height: 150px;
	border: 1px solid #3D32CF;
	border-radius: 10px;
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	color: #000000;
	outline: none;
}

.footer__form-main button {
	padding: 19px 20px;
}

.footer__form-privacy {
	font-size: 15px;
	line-height: 20px;
	color: #000000;
}

.footer__form-privacy a {
	text-decoration: none;
	color: #3d32cf;
}

.footer__bot {
	background: #F7F7FF;
}

.footer__bot-inner {
	padding: 50px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer__copyright {
	width: 215px;
	font-size: 18px;
	line-height: 22px;
	color: #000000;
}

.scroll-to-top-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #3D32CF;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	border: none;
}

.footer__text {
	width: 215px;
	font-size: 18px;
	line-height: 22px;
	text-align: right;
	color: #000000;
}


/*popup*/

.popup-main-wrap {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	justify-content: center;
	align-items: center;
	display: none;
	z-index: 11;
}

.popup-form-wrap {
	max-width: 500px;
	width: 80%;
}

.popup-form {
	position: relative;
	padding: 50px 30px;
	background: #EEEDFF;
}

.popup-form__close {
	position: absolute;
	background: none;
	border: none;
	top: 15px;
	right: 15px;
	cursor: pointer;
}

.popup-form__title {
	font-weight: 500;
	font-size: 25px;
	line-height: 30px;
	color: #000000;
	text-align: center;
	margin-bottom: 20px;
}

.popup-form__input-wrap {
	margin-bottom: 10px;
}

.popup-form__input-wrap input {
	width: 100%;
	padding: 15px 20px;
	font-weight: 500;
	font-size: 22px;
	line-height: 26px;
	color: #000000;
	background: #FFFFFF;
	outline: none;
	border: none;
	margin-bottom: 20px;
}

.popup-form__privacy {
	text-align: center;
	font-size: 15px;
	line-height: 20px;
	color: #000;
	margin-bottom: 20px;
}

.popup-form__privacy a {
	color: #3d32cf;
	text-decoration: none;
}

.popup-form__btn {
	text-align: center;
}

.popup-form__btn button {
	min-width: 300px;
	padding: 19px 25px;
}


/*burger*/

.burger {
	display: none;
	margin-left: auto;
	position: relative;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	cursor: pointer;
}

.burger:before {
	content: '';
	display: block;
	width: 40px;
	height: 10px;
	border-top: 4px solid #3D32CF;
	border-bottom: 4px solid #3D32CF;
	margin-bottom: 10px;
}

.burger:after {
	content: '';
	display: block;
	width: 40px;
	height: 0;
	border-top: 4px solid #3D32CF;
}

/*popup menu*/

.popup-menu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: auto;
	display: none;
	z-index: 13;
}

.popup-menu.open {
	display: block;
}

.popup-bg {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgb(0, 0, 0, 0.3);
}

.open .popup-bg {
	-webkit-animation: fade-in 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: fade-in 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.popup-in {
	width: 320px;
	background: #fff;
	position: relative;
	margin-left: auto;
	transform: translateX(130%);
	height: 100%;
}

.open .popup-in {
	-webkit-animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.popup-in ul.navigation__list li a {
	color: #000;
	font-family: 'Fira Sans';
	font-weight: 600;
	font-size: 22px;
	line-height: 26px;
	text-decoration: none;
}

.popup-in ul.navigation__list li a:hover {
	color: #CFCBFF;
}

.popup-in ul.navigation__list li a:active {
	color: #7a70f3;
}
.popup-in ul.navigation__list {
	display: block;
	padding: 50px 24px 1px;
	list-style: none;
	margin: 0;
}

.popup-in ul.navigation__list li {
	margin: 0 0 30px;
}

.popup-in ul.navigation__list li .header__phone-wrap {
	margin-right: 0;
	margin-left: 0;
}

.popup-in ul.navigation__list li .header__whatsapp-wrap {
	margin-right: 0;
	margin-left: 0;
}
.popup-in ul.navigation__list li .header__whatsapp-wrap img {
	margin: -2px 0px;
}



.popup-in ul.navigation__list li .header__phone {
	vertical-align: baseline;
}

.popup-close {
	position: absolute;
	left: -50px;
	top: 57px;
	width: 50px;
	height: 50px;
	cursor: pointer;
	background: rgba(61, 50, 207, 0.6);
}

.popup-close:before {
	content: '';
	display: block;
	width: 40px;
	height: 2px;
	background: #fff;
	transform: rotate(45deg);
	z-index: 11;
	position: absolute;
	top: 23px;
	right: 5px;
}

.popup-close:after {
	content: '';
	display: block;
	width: 40px;
	height: 2px;
	background: #fff;
	transform: rotate(-45deg);
	z-index: 11;
	position: absolute;
	top: 23px;
	right: 5px;
}

.popup-menu .second-font {
	color: #000;
}

.popup-confid-wrap {
	z-index: 15;
	position: fixed;
	display: none;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgb(0, 0, 0, 0.3);
	justify-content: center;
	align-items: center;
	padding: 10px;
}

.popup-confid {
	max-width: 1200px;
	padding: 50px 40px;
	background: #FFFFFF;
	font-size: 15px;
	line-height: 133%;
	color: #000000;
	position: relative;
	max-height: 80%;
	overflow: auto;
}

.popup-confid-close {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	border: none;
	background: none;
}

.popup-thanks-wrap {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgb(0, 0, 0, 0.3);
	justify-content: center;
	align-items: center;
}

.popup-thanks-wrap.open {
	display: flex;
}

.popup-thanks {
	max-width: 500px;
	width: 80%;
	margin: 0 auto;
	height: 600px;
	background: #EEEDFF;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.popup-thanks-text {
	max-width: 384px;
	margin: 0 auto;
	font-weight: 500;
	font-size: 25px;
	line-height: 30px;
	text-align: center;
	color: #000000;
}

/**/


ul.navigation__list .header__lang-wrap:hover .header__lang-hidden {
	display: flex;
	width: 210px;
}

ul.navigation__list .header__lang-hidden {
	left: 40px;
	bottom: -25px;
}

.popup-in ul.navigation__list li .header__lang-hidden li {
	/*font-size: 0;*/
	/*margin-bottom: 0;*/
	/*height: auto;*/

	margin: 8px;
}

.popup-in ul.navigation__list li .header__lang-hidden a {
	line-height: 1px;
}

.popup-in ul.navigation__list li .header__lang {
	font-size: 0;
}

ul.navigation__list .header__lang-hidden li a {
	font-size: 0;
	filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
}

ul.navigation__list
.header__lang-hidden li a:hover {
	filter: drop-shadow(0px 0px 5px #3D32CF);
}

ul.navigation__list
.header__lang-hidden li a:active {
	filter: drop-shadow(0px 0px 5px #170baf);
}


/*adaptive*/

@media all and (max-width: 1740px) {
	.header__main {
		background-position: left 56vw top 0;
	}

	.project-item__text {
		padding: 15px 20px 15px 20px;
	}

	.project-item__title,
	.project-item__ssubtitle {
		font-size: 19px;
		margin-bottom: 14px;
	}
	.project-item__list {
		padding-left: 43px;
	}

	.project-item__list li {
		font-size: 19px;
		margin-bottom: 14px;
	}

	.project-item__list li:before {
		width: 25px;
		height: 25px;
		background-size: cover;
		left: -35px;
	}

	.step-item {
		padding: 0 5px;
	}

	.step-item__desc {
		font-size: 19px;
		margin-bottom: 14px;
	}

	.step-item__text {
		font-size: 19px;
		margin-bottom: 14px;
	}

	.header__menu-hidden .header__phone-wrap {
		margin-right: 10px;
		margin-left: 10px;
	}

	.header__menu-hidden .header__menu-top-right {
		flex: 0 0 414px;
	}

	.header__menu-hidden .header__phone {
		font-size: 18px;
	}

	.header__menu-hidden .header__menu-btn button {
		font-size: 13px;
	}

	.header__menu-hidden .header__menu-bot-nav ul li a {
		font-size: 17px;
		padding: 0 12px;
	}

	.header__menu-hidden a.header__lang img {
		width: 25px;
		height: auto;
	}
}

@media all and (max-width: 1440px) {
	.line-right {
		width: calc(12vw - 40px);
		right: -8vw;
	}

	.line-left {
		width: calc(12vw - 40px);
		left: -8vw;
	}

	.header__menu-hidden .header__menu-bot-nav ul li a {
		font-size: 17px;
		padding: 0 7px;
	}

	.header__logo img {
		width: 145px;
		height: auto;
	}

	.header__menu-hidden .header__logo img {
		width: 145px;
		height: auto;
	}
}

@media all and (max-width: 1365px) {

	.header__menu-hidden .header__phone-wrap {
		margin-right: 0;
		margin-left: 0;
	}

	.header__menu .header__menu-btn {
		display: none;
	}

	.header__menu .header__logo-text {
		display: none;
	}

	.header__menu .burger {
		order: -1;
		margin-left: 0;
		margin-right: 183px;
	}

	.header__menu .header__phone-wrap {
		margin-right: 0;
		margin-left: 0;
	}

	.header__menu-hidden .header__menu-top-left {
		padding-right: 0;
	}

	.header__menu-hidden .header__menu-btn {
		display: none;
	}

	.header__menu-hidden .header__lang-wrap {
		display: none;
	}

	.header__menu-hidden .header__menu-top-right {
		flex: 0 0 auto;
	}

	.header__menu-hidden .burger {
		margin-left: 0;
		order: -1;
		margin-right: 145px;
	}

	.header__main-wrap {
		padding-top: 0;
	}

	.header__hidden-line {
		display: block;
	}

	.header__menu-bot {
		display: none;
	}

	.header__menu .header__lang-wrap {
		display: none;
	}

	.burger {
		display: flex;
	}

	.header__menu-bot {
		padding: 3px 0;
		position: relative;
	}

	nav.header__menu-bot-nav {
		display: none;
	}

	.projects__items-wrap {
		flex-wrap: wrap;
		justify-content: center;
	}
}

@media all and (max-width: 1250px) {
	.step-items-wrap {
		flex-wrap: wrap;
		justify-content: space-evenly;
	}

	.step-item {
		margin-bottom: 100px;
	}

	.solutions-item__inner {
		margin-left: 0;
		margin-right: 0;
	}

	.solutions-item:nth-child(even) .solutions-item__inner {
		margin-left: auto;
	}

	.solutions-item__inner {
		max-width: 350px;
	}

	.feedback__form-wrap {
		background-size: auto 100%;
	}

	.footer__form-wrap {
		background-size: auto 100%;
	}
}

@media all and (max-width: 1024px) {

	.header__menu-hidden .burger {
		margin-right: 0;
	}

	.header__main {
		background-position: left 40vw top -70px;
	}

	.header__main-left {
		max-width: 810px;
		padding-right: 0;
	}

	.header__main-left-in {
		padding: 25px 0 65px;
	}

	.solutions-item__inner {
		max-width: 300px;
	}

	.header__main-inner {
		flex-direction: column-reverse;
	}

	.header__menu-hidden .header__phone {
		display: none;
	}

	.header__main-right-inner img {
		width: 100%;
		height: auto;
	}

	.header__menu .header__phone {
		display: none;
	}

	.header__menu .burger {
		margin-right: 0;
	}
}

@media all and (max-width: 960px) {
	.solutions-item:nth-child(even) {
		margin-left: 0;
	}

	.solutions-item:nth-child(even) .solutions-item__inner {
		margin-left: auto;
		margin-right: auto;
	}

	.solutions-item:nth-child(even):before {
		left: auto;
		transform: translateX(50%);
	}

	.solutions-item:nth-child(even) .solutions-item__check {
		left: auto;
		right: 0;
		transform: translateX(50%);
	}

	.solutions__items-wrap {
		width: 85%;
		margin-right: auto;
		margin-left: auto;
	}

	.solutions-item {
		width: 100%;
		padding-right: 100px;
		min-height: auto;
		padding-bottom: 50px;
	}

	.step-item {
		max-width: 300px;
	}

	.feedback-form__title {
		text-align: center;
	}

	.solutions-item__inner {
		max-width: 100%;
	}

	.footer__form-wrap {
		background: #fff;
	}

	.footer__form-title {
		text-align: center;
	}

	.footer__form-privacy {
		text-align: center;
	}

	.feedback__form-wrap {
		background: #fff;
	}


	.feedback-form__main {
		grid-template-columns: 100%;
	}

	.feedback-form__main button {
		grid-column: auto;
		grid-row: auto;
		margin-right: auto;
		margin-left: auto;
		width: 300px;
	}

	.feedback-form__main input {
		width: 300px;
		margin-right: auto;
		margin-left: auto;
	}

	.feedback-form__privacy {
		max-width: 100%;
		text-align: center;
	}

	.footer__form-main {
		grid-template-columns: repeat(2, calc((100% - 30px) / 2));
		align-items: end;
	}

	.footer__form-area {
		grid-column: 1/2;
		grid-row: 4/5;
	}
}

@media all and (max-width: 768px) {

	.header__menu-top {
		padding: 30px 0;
	}

	.header__menu-hidden .header__menu-top {
		padding: 30px 0;
	}

	.header__menu-hidden .header__phone-wrap {
		font-size: 0;
	}

	.header__menu-hidden .header__phone-icon {
		margin-right: 0;
	}

	.footer__form-main {
		grid-template-columns: auto;
	}

	.present__pic {
		display: none;
	}

	.present__pic-hidden {
		display: block;
	}

	.footer__form-main input {
		width: 300px;
		margin-right: auto;
		margin-left: auto;
	}

	.footer__form-area {
		width: 300px;
		margin-right: auto;
		margin-left: auto;
		grid-row: 7/8;
	}

	.footer__form-main button {
		width: 300px;
		margin-right: auto;
		margin-left: auto;
	}

	.step-items-wrap {
		display: block;
	}

	.step-item {
		margin-right: auto;
		margin-left: auto;
		margin-bottom: 60px;
	}

	.step-item__arrow svg {
		transform: rotate(90deg);
	}

	.step-item__arrow.hidden-color svg path {
		fill: #00BD13;
	}

	.step-item:last-child {
		margin-bottom: 0;
	}

	.step-item:last-child .step-item__arrow img {
		transform: none;
	}
}


@media all and (max-width: 680px) {
	.header__menu-top-left {
		flex-direction: column;
		gap: 15px;
		align-items: start;
		max-width: 400px;
		padding-right: 15px;
	}

	.container {
		padding-right: 30px;
		padding-left: 30px;
	}

	.header__logo-text {
		max-width: 100%;
		font-size: 18px;
	}

	.header__main-title {
		font-size: 25px;
		line-height: 35px;
		margin-bottom: 30px;
	}

	.title-h2 {
		font-size: 25px;
		line-height: 35px;
	}

	.header__main-list li {
		font-size: 19px;
		line-height: 20px;
	}

	.header__main-list li:before {
		left: -35px;
		width: 25px;
		height: 25px;
		background-size: cover;
	}

	.header__main-right {
		padding: 30px 0 10px;
	}

	.header__main-right-inner {
		display: block;
	}

	.header__main {
		background: #fff;
	}

	.plus__main {
		flex-direction: column;
		align-items: center;
		margin: 110px 0 0;
	}

	.plus-item__line {
		display: none;
	}

	.plus-item {
		width: 70%;
		position: relative;
	}

	.plus-item {
		margin-bottom: 110px;
	}

	.plus-item:before {
		content: '';
		position: absolute;
		bottom: -100px;
		left: 50%;
		transform: translateX(-50%);
		width: 2px;
		height: 95px;
		background-color: #3D32CF;
	}

	.plus__bot .plus-item:before {
		display: none;
	}


	.header__main-list {
		padding-left: 35px;
	}

	.projects__inner {
		padding: 35px 0 20px;
	}

	.projects__title {
		margin-bottom: 25px;
	}

	.feedback__title {
		margin-bottom: 30px;
	}

	.present__title {
		font-size: 38px;
		line-height: 50px;
		margin-bottom: 30px;
	}

	.plus__inner {
		padding: 35px 0;
	}

	.plus__title {
		margin-bottom: 34px;
	}

	.steps__title {
		margin-bottom: 31px;
	}

	.step-item {
		margin-bottom: 60px;
	}

	.footer__inner {
		padding: 35px 0;
	}

	.footer__text {
		font-size: 16px;
		width: auto;
		text-align: left;
		padding: 0 15px;
	}

	.footer__copyright {
		font-size: 16px;
		flex: 0 0 125px;
	}

	.scroll-to-top {
		order: 3;
	}
}

@media all and (max-width: 560px) {

	.header__main .container {
		padding-right: 10px;
		padding-left: 10px;
	}

	.header__main-left {
		padding-right: 20px;
		padding-left: 20px;
	}

	.present .container {
		padding-right: 10px;
		padding-left: 10px;
	}

	.present__title,
	.present__subtitle {
		padding-right: 20px;
		padding-left: 20px;
	}

	.feedback-form__main input {
		width: 100%;
	}

	.feedback-form__main button {
		width: 100%;
	}

	.footer__form-main input {
		width: 100%;
	}

	.footer__form-main {
		grid-gap: 15px;
	}

	.footer__form-area {
		width: 100%;
	}

	.footer__form-main button {
		width: 100%;
	}

	.footer__form-wrap {
		padding-bottom: 45px;
	}

	.feedback__form-wrap {
		padding-bottom: 45px;
	}

	.feedback__form-wrap {
		padding-right: 20px;
		padding-left: 20px;
	}

	.footer__form-wrap {
		padding-right: 20px;
		padding-left: 20px;
	}

	.solutions__inner {
		padding-bottom: 20px;
	}

	.solutions-item__check svg {
		width: 50px;
		height: 50px;
	}

	.solutions-item:before {
		top: 35px;
		bottom: -15px;
	}

	.footer__text {
		font-size: 14px;
	}

	.footer__copyright {
		font-size: 14px;
		flex: 0 0 115px;
		margin-bottom: 15px;
	}

	.popup-form__btn button {
		min-width: auto;
	}
}

@media all and (max-width: 425px) {
	.footer__bot-inner {
		flex-wrap: wrap;
		padding-bottom: 10px;
	}

	.scroll-to-top {
		margin-left: auto;
	}

	.scroll-to-top-btn {
		transform: translateY(-85px);
	}

	.footer__text {
		width: 87%;
	}

	.popup-menu.open .popup-in {
		width: 300px;
	}
}

/**/

.js-popup-form-more.open,
.js-popup-form.open {
	display: flex;
}

.popup-menu.open {
	display: block;
}

.header__menu-top.pinned {
	background: rgba(0, 0, 0, 0.6);
}

.popup-confident.open,
.popup-privacy-wrap.open {
	display: flex;
}
.popup-confident {
	width: 80vw;
	height: 80vh;
	margin: 10vh auto;
}
/*anim*/

@-webkit-keyframes scale-up-center {
	0% {
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@keyframes scale-up-center {
	0% {
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}


@-webkit-keyframes slide-in-elliptic-top-fwd {
	0% {
		-webkit-transform: translateY(-600px) rotateX(-30deg) scale(0);
		transform: translateY(-600px) rotateX(-30deg) scale(0);
		-webkit-transform-origin: 50% 100%;
		transform-origin: 50% 100%;
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0) rotateX(0) scale(1);
		transform: translateY(0) rotateX(0) scale(1);
		-webkit-transform-origin: 50% 1400px;
		transform-origin: 50% 1400px;
		opacity: 1;
	}
}

@keyframes flip-in-ver-left {
	0% {
		-webkit-transform: rotateY(80deg);
		transform: rotateY(80deg);
		opacity: 0;
	}
	100% {
		-webkit-transform: rotateY(0);
		transform: rotateY(0);
		opacity: 1;
	}
}

@-webkit-keyframes rect-1-in {
	0% {
		transform: matrix(0.781605, 0.623774, -0.661575, 0.749879, 341.32, -200);
	}

	100% {
		transform: matrix(0.781605, 0.623774, -0.661575, 0.749879, 141.32, 0);
	}
}

@-webkit-keyframes rect-2-in {
	0% {
		transform: matrix(0.781605, 0.623774, -0.661575, 0.749879, 592.086, -213.3066);
	}

	100% {
		transform: matrix(0.781605, 0.623774, -0.661575, 0.749879, 292.086, 13.3066);
	}
}

@-webkit-keyframes rect-3-in {
	0% {
		transform: matrix(0.781605, 0.623774, -0.661575, 0.749879, 378.733, -297.8987);
	}

	100% {
		transform: matrix(0.781605, 0.623774, -0.661575, 0.749879, 178.733, 97.8987);
	}
}

@-webkit-keyframes rect-4-in {
	0% {
		transform: matrix(0.781605, 0.623774, -0.661575, 0.749879, 402.949, -205.70282);
	}

	100% {
		transform: matrix(0.781605, 0.623774, -0.661575, 0.749879, 202.949, 5.70282);
	}
}

@-webkit-keyframes rect-5-in {
	0% {
		transform: matrix(0.781605, 0.623774, -0.661575, 0.749879, 510.641, -253.2266);
	}

	100% {
		transform: matrix(0.781605, 0.623774, -0.661575, 0.749879, 310.641, 53.2266);
	}
}

@-webkit-keyframes scale-in {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes scale-in {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes slide-left {
	0% {
		-webkit-transform: translateX(130%);
		transform: translateX(130%);
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes slide-left {
	0% {
		-webkit-transform: translateX(130%);
		transform: translateX(130%);
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes slide-right {
	0% {
		-webkit-transform: translateX(-130%);
		transform: translateX(-130%);
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@-webkit-keyframes fade-in {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes fade-out {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@keyframes fade-in {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes swing-in-top-fwd {
	0% {
		-webkit-transform: rotateX(-100deg);
		transform: rotateX(-100deg);
		-webkit-transform-origin: top;
		transform-origin: top;
		opacity: 0;
	}
	100% {
		-webkit-transform: rotateX(0deg);
		transform: rotateX(0deg);
		-webkit-transform-origin: top;
		transform-origin: top;
		opacity: 1;
	}
}
@keyframes swing-in-top-fwd {
	0% {
		-webkit-transform: rotateX(-100deg);
		transform: rotateX(-100deg);
		-webkit-transform-origin: top;
		transform-origin: top;
		opacity: 0;
	}
	100% {
		-webkit-transform: rotateX(0deg);
		transform: rotateX(0deg);
		-webkit-transform-origin: top;
		transform-origin: top;
		opacity: 1;
	}
}

@-webkit-keyframes slide-in-top {
	0% {
		-webkit-transform: translateY(-1000px);
		transform: translateY(-1000px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}
@keyframes slide-in-top {
	0% {
		-webkit-transform: translateY(-500px);
		transform: translateY(-500px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}


@-webkit-keyframes scale-in-center {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}
@keyframes scale-in-center {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}

@-webkit-keyframes bounce-top {
	0% {
		-webkit-transform: translateY(-45px);
		transform: translateY(-45px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 1;
	}
	24% {
		opacity: 1;
	}
	40% {
		-webkit-transform: translateY(-24px);
		transform: translateY(-24px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	65% {
		-webkit-transform: translateY(-12px);
		transform: translateY(-12px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	82% {
		-webkit-transform: translateY(-6px);
		transform: translateY(-6px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	93% {
		-webkit-transform: translateY(-4px);
		transform: translateY(-4px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	25%,
	55%,
	75%,
	87% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		opacity: 1;
	}
}
@keyframes bounce-top {
	0% {
		-webkit-transform: translateY(-75px);
		transform: translateY(-75px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 1;
	}
	24% {
		opacity: 1;
	}
	40% {
		-webkit-transform: translateY(-24px);
		transform: translateY(-24px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	65% {
		-webkit-transform: translateY(-12px);
		transform: translateY(-12px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	82% {
		-webkit-transform: translateY(-6px);
		transform: translateY(-6px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	93% {
		-webkit-transform: translateY(-4px);
		transform: translateY(-4px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	25%,
	55%,
	75%,
	87% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		opacity: 1;
	}
}

@-webkit-keyframes flip-in-hor-bottom {
	0% {
		-webkit-transform: rotateX(80deg);
		transform: rotateX(80deg);
		opacity: 0;
	}
	100% {
		-webkit-transform: rotateX(0);
		transform: rotateX(0);
		opacity: 1;
	}
}
@keyframes flip-in-hor-bottom {
	0% {
		-webkit-transform: rotateX(80deg);
		transform: rotateX(80deg);
		opacity: 0;
	}
	100% {
		-webkit-transform: rotateX(0);
		transform: rotateX(0);
		opacity: 1;
	}
}

@-webkit-keyframes text-focus-in {
	0% {
		-webkit-filter: blur(12px);
		filter: blur(12px);
		opacity: 0;
	}
	100% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
		opacity: 1;
	}
}
@keyframes text-focus-in {
	0% {
		-webkit-filter: blur(12px);
		filter: blur(12px);
		opacity: 0;
	}
	100% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
		opacity: 1;
	}
}
#email-sent {
	width: 100%;
	padding: 20px;
	position: absolute;
	top: 0;
	background: #7dd07d;
	z-index: 999;
	/*display: none;*/
}
input[name="lastname"] {
	display: none;
}

