@import url('normalize.css');
@import url('fonts.css');

:root {
  --primary-color: 137, 216, 63;
  --secondary-color: 28, 30, 46;
}

html {
	font-size: 62.5%;
	line-height: 1.4;
	font-family: 'Benzin';
	font-weight: 700;
}

html, body {
	height: 100%;
}

body {
	font-size: 2rem;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	color: rgb(var(--primary-color));
	background-color: rgb(var(--secondary-color));
	background-image: url("../images/ui/dots.png");
	background-position: 50% 0;
	background-repeat: no-repeat;
}



main {
	flex: 1 0 auto;
	/*padding-bottom: 60px;*/
}

.welcome {
	position: relative;
}

.welcome h3 {
	/*color: rgb(var(--primary-color));
	font-size: 4rem;
	text-transform: uppercase;*/
}


.index h3 {
	text-align: center;
}

.neuro {
	margin: 20px 0 40px;
	display: flex;
	row-gap:40px;
	flex-wrap: wrap;
	justify-content: center;
}

.neuro > div {
	display: flex;
	flex-direction: column;
	gap:15px;
	align-items: center;
	flex-basis: 170px;
}

.neuro > div > div {
	width: 105px;
	height: 105px;
	background-color: #fff;
	border-radius: 50%;
}



.neuro svg {
	flex-shrink: 0;
}

.neuro span {
	text-align: center;
	font-family: "Gotham Pro";
	font-weight: bold;
	font-size: 1.9rem;
	color:#fff;

}

.howto {
	position: relative;
}

.howto:before, .howto:after {
	content: "";
	position: absolute;
	top: -100px;
	z-index: -1;
}

.howto:before {
	left: 0;
	width: 610px;
	height: 1022px;
	background-image: url("../images/ui/formLeft.png");
	background-position: 100% 0;
	background-repeat: no-repeat;
}

.howto:after {
	right: 0;
	width: 520px;
	height: 926px;
	background-image: url("../images/ui/formRight.png");
	background-position: 0 0;
	background-repeat: no-repeat;
}


h2 {
	text-align: center;
	color: rgb(var(--primary-color));
	font-size: 4rem;
	text-transform: uppercase;
}

h2.title {
	color: #2ec7ee;
	font-size: 3.3rem;

}

h2.title span {
	display: block;
	font-size: 5.2rem;
}

.center {
	display: flex;
	justify-content: center;
	padding: 30px 0;
}

.small-size {
	display: none;
}

.api .row {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2%;
	margin: 40px 0;
	cursor: default;
}

.api .row > div {
	width: 30%;
	display: flex;
	gap: 15px;
	align-items: center;
	padding: 15px 25px;
	background: #171928;
	border-radius: 60px;
	transition: .2s;
}

.api .row > div:hover {
	background: rgb(var(--primary-color));
}

.api .row > div:hover .price {
	color: rgb(var(--secondary-color));
}



.api .row .text {
	display: flex;
	flex-direction: column;
	gap:6px;
}

.api .row .text .title {
	color: #fff;
}

.api .row .text .price b {
	font-size: 3.7rem;
}

.api .row .text .price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rent {
	position: relative;
	background-color: rgb(var(--primary-color));
	color: rgb(var(--secondary-color));
}

.rent .wrapper {
	padding-bottom: 0;
}

.rent h2 {
	color: rgb(var(--secondary-color));
}

.rent .list {
	position: relative;
	z-index: 5;
	padding-bottom: 40px;
}

.rent .list div {
	background: #b7f47e;
	padding: 30px 60px;
	border-radius: 40px;
	color: rgb(var(--secondary-color));
	max-width: 1250px;
	margin: 0 auto;
	text-align: center;
}

.rent .list div + div {
	margin-top: 40px;
}

.preim {
	display: flex;
	flex-wrap: wrap;
	counter-reset: wishes;
}

.preim > div {
	padding: 30px 60px;
	width: 50%;
	border-bottom: 1px solid rgb(var(--secondary-color));
	position: relative;
	counter-increment: wishes;
}

.preim > div:before {
	content: counter(wishes);
	position: absolute;
	top:36px;
	left: 18px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	background: rgb(var(--secondary-color));
	color: rgb(var(--primary-color));
	border-radius: 50%;
	text-align: center;
}

.preim > div:nth-of-type(2n) {
	border-left: 1px solid rgb(var(--secondary-color));
}

.preim > div:nth-of-type(9), .preim > div:nth-of-type(10) {
	border-bottom: none;
}

.preim h3 {
	text-align: left;
	font-size: 3.1rem;
	margin-top: 0;

}

.preim span {
	font-size: 2rem;
}

.rent:before, .rent:after {
	content: "";
	position: absolute;
	background-image: url("../images/ui/formUniversalDark.png");
	top: 80px;
	z-index: 1;
	background-repeat: no-repeat;
}

.rent:before {
	left: 0;
	width: 170px;
	height: 600px;
	background-position: 100% 0;
}

.rent:after {
	right: 0;
	width: 240px;
	height: 600px;
	background-position: 0 0;
}

.rent h4 {
	max-width: 1125px;
	margin: 70px auto 60px;
	text-align: center;
	font-size: 3.6rem;
	color: #fff;
}

.rent .vars {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.rent .vars span {
	width: 31%;
	border-radius: 50vh;
	background-color: rgb(var(--primary-color));
	color: rgb(var(--secondary-color));
	padding: 20px 35px;
	text-align: center;
	font-size: 1.8rem;
	margin: 0 1% 2%;
}

.rent .rent-services {
	max-width: 900px;
	margin: 100px auto 10px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
    z-index: 2;
}

.rent .rent-services > div {
	width: 47%;
	color: #fff;
	display: flex;
	align-items: flex-start;
	margin-bottom: 50px;
}

.rent .rent-services > div span {
	margin-left: 15px;
}

.rent .rent-services > div svg {
	flex-shrink: 0;
	margin-top: -20px;
}

.steps {
	max-width: 1000px;
	margin: 0 auto 60px;
	display: flex;
	flex-wrap: wrap;
	gap:30px;
	justify-content: center;
	counter-reset: wishes;
}

.steps > div {
	width: calc(25% - 90px / 4);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap:15px;
	text-align: center;
	counter-increment: wishes;
}

.steps > div > div {
	padding: 40px;
	position: relative;
  
}

.steps > div > div:before {
	content: counter(wishes);
	position: absolute;
	top:15px;
	left: 20px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 	3rem;
	border-radius: 50%;
	text-align: center;
	background: #2ec7ee;
	color: rgb(var(--secondary-color));
}


.foo {
	text-align: center;
}

.tg {
    width: 70px;
    height: 70px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    text-indent: -9999%;
    background-image: url(../images/ui/tg.png);
}


.white-section {
	background: #fff;
	color: rgb(var(--secondary-color));
}

.white-section h2 {
	color: rgb(var(--secondary-color));
}


.clients {
	padding-top: 30px;
}

.clients h3 {
	/*color: rgb(var(--secondary-color));*/
}

.clients-brands {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.clients-brands > div {
	width: 16.6666%;
}


footer {
	padding-top: 40px;
	flex: 0 0 auto;
	background: url("../images/ui/bgFooter.jpg") 50% 30px no-repeat #fff;
	background-size: cover;
}

a {
	color: currentColor;
	text-decoration: none;
	transition: .2s;
}

img {
	display: block;
	max-width: 100%;
}

.wrapper {
	max-width: 1430px;
	margin: 0 auto;
	padding: 15px 25px;
}

header > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

footer {
	padding-bottom: 120px;
}

footer > div {
	display: flex;
	justify-content: center;
	gap:40px;
	align-items: center;
}

footer .tel {
	display: flex;
	flex-direction: column;
	align-items: center;
}

footer .tel small {
	font-size: 1.4rem;
	font-family: "Gotham Pro";
}

body.index header, body.index header > div {
	pointer-events: none;
}

header {
	position: relative;
	z-index: 2;
}

.button {
/*	max-width: 235px;*/
	background: rgb(var(--primary-color));
	color: #fff;
	font-size: 1.8rem;
	line-height: 120%;
	text-align: center;
	padding: 18px 35px 15px;
	border-radius: 50px;
	text-transform: uppercase;
	pointer-events: auto;
	transition: .2s;
}

.button:hover {
	background: #2ec7ee;
}

.buttonBack {
	display: flex;
	align-items: center;
}

.buttonBack:before {
	content: "";
	width: 30px;
	height: 30px;
	background: url("../images/ui/link-back.svg");
	flex-shrink: 0;
}


.aiGen {
	width: 460px;
	height: 577px;
	background-image: url("../images/ui/aiGen.png");
	background-size: 460px 577px;
	margin: 0 auto;
	transform: translateX(20px);
}

.index h1 {
	font-size: 7.6rem;
	text-transform: uppercase;
	margin: 0 0 30px;
	text-align: center;
	transform: translateY(-32px);
}

.index h1 + span {
	max-width: 1100px;
	margin: -40px auto 0;
	display: block;
	text-align: center;
	font-weight: normal;
	color: #f8f8f8;
}

.content.wrapper {
	max-width: 1000px;
}

.content p {
	font-weight: normal;
	font-size: 1.8rem;
	line-height: 150%;
}

.content p + h3 {
	margin-top: 50px;
}

.toTop {
	position: fixed;
	display: inline-block;
	text-indent: -9999%;
	bottom: 60px;
	right: -60px;
	width: 60px;
	height: 60px;
	z-index: 1000;
	cursor: pointer;
	text-align: center;
	color: #fff;
	border-radius: 30px;
	background: url("../images/ui/scrollTop.svg") 50% 50% rgb(var(--primary-color)) no-repeat;
	background-size: 30px 30px;
	opacity: 0;
	box-shadow: 0 0 0 4px rgba(255,255,255,.3);
	visibility: hidden;
  	transition: all .3s ease-in-out;
}
.toTop:hover {
	background-color: rgb(var(--secondary-color));
}

.toTop.show {
	opacity: 1;
	visibility: visible;
	right: calc(2%);
}

.form {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6%;
	margin-bottom: 80px;
}

.form > div {
	width: 30%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.form > div span {
	margin-bottom: 25px;
	text-align: center;
}
.form-personal {
	padding: 10px 20px 20px;
	background: rgb(var(--primary-color));
	border-radius: 25px;
}

.form-personal h3 {
	color: rgb(var(--secondary-color));
}

.form-personal .inputs {
	display: flex;
	flex-direction: column;
	gap:20px;
}

.form-personal .inputs > * {
	border: 2px solid #fff;
	font-size: 1.8rem;
	padding: 10px;
	border-radius: 10px;
}

.form-personal .inputs button {
	cursor: pointer;
	background: transparent;
	font-family: 'Benzin';
	font-size: 1.6rem;
	color: #fff;
	text-transform: uppercase;
	transition: .5s;
}

.form-personal .inputs button:hover {
	background: rgb(var(--secondary-color));
}



@media screen and (max-width: 1140px) {
	header h2 {
		width: 100%;
		order: 3;
	}
	.api .row {
    gap: 40px;
	}
	.api .row > div {
    width: 40%;
	}
	.preim span {
    font-size: 1.6rem;
	  display: block;
	}
}

@media screen and (max-width: 880px) {
	h2.title {
    font-size: 2.8rem;
	}
	h2.title span {
    font-size: 4rem;
	}
	.preim > div {
    padding: 20px 20px 20px 50px;
	}
	.preim > div:before {
    top: 20px;
    left: 10px;
	}
.preim h3 {
    font-size: 2.3rem;
	}
	.api .row > div {
        width: 47%;
    }
    .steps > div {
    width: calc(36%);
	}
	.foo p br {
		display: none;
	}
}


@media screen and (max-width: 690px) {
	    .api .row > div {
        width: 100%;
        max-width: 400px;
    }
    .rent .list div {
	    padding: 20px 30px;
	}
	.preim > div {
    width: 100%;
	}
	.preim > div:nth-of-type(2n) {
	border-left: none;
}
h2 {
    font-size: 3rem;
	}
	h2.title {
        font-size: 2.4rem;
    }

    h2.title span {
        font-size: 3.3rem;
    }
    .wrapper {
	    padding: 15px 15px;
	}
	footer > div {
    flex-direction: column;
	}
	footer {
    background-position: 50% 100px;
}
.howto:before {
	    width: 305px;
	    height: 611px;
	    background-size: 600px 560px;
	}
	.howto:after {
	    width: 400px;
	    height: 626px;
	    background-size: 550px 606px;
	}
	.neuro > div {
    flex-basis: 200px;
	}
}

@media screen and (max-width: 460px) {
	h2 {
        font-size: 2.5rem;
    }
    .steps > div {
        width: calc(46%);
    }
    body {
    	font-size: 1.8rem;
    }

    .logo svg {
    	width: 150px;
    	height: 100px;
    }
    .button {
	    font-size: 1.4rem;
	    padding: 14px 25px 11px;
	}
	.neuro > div {
        flex-basis: auto;
        width: 50%;
    }
    .rent .list div {
        padding: 20px 10px;
    }
    .preim > div {
        padding: 20px 20px 20px 30px;
    }
    .preim > div:before {
        left: -5px;
    }
    .modal {
	    max-width: 100%;
	}
}