@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
html,body{
	margin: 0;
	padding: 0;
	font-family: 'Inter', sans-serif;
}

:root{
	--blue: #007bff;
		--indigo: #6610f2;
		--purple: #6f42c1;
		--pink: #e83e8c;
}

p, li{
	font-size: 1rem;
	line-height: 2;
}
h2{
	font-size: 3rem;
	margin: 0;
	line-height: 1.2;
}
h3{
	font-size: 1.7rem;
}
header{
	position: absolute;
	top: 2rem;
	left: 50%;
	transform: translateX(-50%);
	background: #ffffff;
	border-radius: 1.4rem;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-width: 80%;
	box-sizing: border-box;
	z-index: 2;
}

header > a > img{
	max-width: 300px;
	height: auto;
}

header > ul{
	margin: 0;
	padding: 0;
}
header ul li{
	display: inline-block;
	list-style-type: none;
}
header ul li + li{
	margin-left: 1rem;
}
.menu{
	width: 40px;
	height: 40px;
	display: none;
}
.menu img{
	width: 80%;
	height: auto;
}

header > ul li a{
	text-decoration: none;
	color: #000000;
	font-size: 1.1rem;
	font-weight: 700;
}
header > ul li a img{
	width: 20px;
	height: auto;
	margin-left: .4rem;
}
header > ul li:last-of-type a{
	display: flex;
	align-items: center;
	background: var(--blue);
	color: #ffffff;
	padding: 1rem 1.4rem;
	border-radius: 2rem;
}
.hero_home {
	width: 100%;
	height: 100vh;
	background-image: 
		linear-gradient(rgba(0, 51, 153, 0.55), rgba(0, 51, 153, 0.55)), 
		url(' /img/group-business.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.hero_home > div{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80%;
	position: absolute;
	left: 50%; top: 50%; transform: translate(-50%, -40%);
}

.hero_home h1{
	font-size: 3.34rem;
	color: #ffffff;
}
.hero_home h1 span, .hero_top h1{
	font-size: 5rem;
}
.hero_home > div > div:first-child{
	width: 60%;
}
.hero_home > div > div:last-child{
	width: 40%;
}
.hero_home > div img{
	width: 100%;
	height: auto;
}
button.apply{
	padding: 1.4rem 2.4rem;
	background: var(--blue);
	color: #ffffff;
	font-size: 1.2rem;
	border: none;
	border-radius: 2.5rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	font-weight: 700;
}
button.apply img{
	width: 30px;
	height: auto;
	margin-left: .4rem;
}
.products{
	background: rgb(228, 240, 240);
	background: rgba(59,130,246,.2);
	padding: 3rem 10%;
}
.products h2{
	font-size: 3.4rem;
	margin: 0;
}
.products h2:not(:first-of-type){
	margin-top: 2rem;
}
.team_members > div > div:first-child{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 4rem;
}
.team_members > div > div:first-child{
	margin-bottom: 6rem;
}
a.for_more{
	padding: 1.4rem 1.6rem;
	border: 2px solid black;
	border-radius: 2.8rem;
	color: black;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1rem;
	white-space: nowrap;
}
.products > div{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
}
.products > div.for_title{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 4rem 0;
}
.products > div.models{
	grid-template-columns: 1fr;
	margin: 4rem 0;
	margin-bottom: 8rem;
}
.products > div > div{
	height: 100%;
	box-sizing: border-box;
	background: #ffffff;
	padding: 2rem;
	display: flex;
	align-items: center;
	border-radius: 2rem;
	gap: 1rem;
}
.products > div > div.financing_models{
	display: initial;
}
.products > div > div.for_more_wrap{
	background: transparent;
	display: initial;
	text-align: right;
	padding: 0;
}
.moving{
	padding: 6rem 10%;
}
.moving > div{
	display: flex;
	align-items: center;
	gap: 3rem;
}
.moving > div > div{
	width: 50%;
}
.moving > div > div:first-child{
	height: 0;
	padding: 30% 0;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4rem;
}
.moving > div > div:first-child > div{
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 4rem;
	position: absolute;
	top: 0;
	left: 0;
}
.moving > div > div:first-child > div > img{
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
}
.moving > div > div > img{
	width: 58%;
	height: auto;
	position: absolute;
	top: 20%;
	right: 1%;
}
.tech_features{
	border-top: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
	margin: 2rem auto;
	display: flex;
	padding: 3rem 0;
}
.tech_features > div{
	width: 50%;
}

.tech_features h3{
	font-size: 4rem;
	margin: 0;
	font-style: italic;
}
.about{
	padding: 6rem 10%;
}
.about > div{
	display: flex;
	gap: 3rem;
}
.about > div > div{
	width: 50%;
}
.about button{
	margin-top: 3rem;
}
.accordion{
	position: relative;
	cursor: pointer;
	font-size: 1.4rem;
}
.accordion:after {
	content: '\FF0B';
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	background: #000000;
	position: absolute;
	right: 0;
	transform: rotate(0deg);
	color: #ffffff;
	font-size: 24px;
	font-weight: normal;
	transition: transform .4s ease-out, background .4s ease-out;
	transform-origin: center;
}

/* Active state */
.accordion.active:after {
	line-height: 37px;
	content: '\2212';
	background: var(--blue);
	transform: rotate(180deg);
}
.accordion + div{
	max-height: 0;
	overflow-y: hidden;
	border-bottom: 1px solid #ebebeb;
	transition: max-height .4s ease-out;
}
.focus{
	background: #2f2020;
	padding: 6rem 10%;
	color: #ffffff;
}
.focus > div{
	display: flex;
	justify-content: space-between;
	text-align: center;
	margin-top: 4rem;
	color: var(--blue);
}
.focus > div > div > p{
	font-weight: 700;
	font-size: 1.2rem;
}
.team_members{
	padding: 6rem 10%;
	background:	rgba(59,130,246,.2);
	margin-top: 30rem;
}
.team_members > div{
	margin-top: -30rem;
}
.team_members > div > div:last-child{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6rem;
}
.team_profiles > div > div{
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.team_profiles > div > div:first-child{
	height: 0;
	padding: 50% 0;
	position: relative;
	overflow: hidden;
	background: #ebebeb;
	border-radius: 2rem;
}
.team_profiles > div > div > img{
	position: absolute;
	left: 50%; top: 50%; transform: translate(-50%, -50%);
	height: 100%;
	width: auto;
}
.team_profiles h3{
	font-size: 1.5rem;
}
.team_profiles p{
	font-weight: 700;
	opacity: .6;
}
.testimonials{
	padding: 6rem 10%;
}
.testimonials > div{
	display: flex;
	gap: 4rem;
	justify-content: space-between;
}
.testimonials > div > div{
	width: 50%;
}
.testimonials > div > div:first-child{
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.testimonials > div > div:first-child > div:first-of-type{
	margin: 2rem 0;
	position: relative;
}
.testimonials > div > div:first-child > div:first-of-type:before{
	content: '';
	width: 90%;
	height: 2px;
	background: black;
	position: absolute;
	z-index: -1;
}
.testimonials > div > div > div > span{
	display: inline-block;
	padding: .8rem 1rem;
	font-size: 1.6rem;
	background: #ffffff;
}
.testimonials > div > div > div > span > span:last-child{
	color: #dddddd;
}
.testimonials > div > div:first-child > div{
	display: flex;
	gap: 3rem;
	align-items: center;
}
.testimonials button, .blog_scrolls button{
	border: 2px solid black;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	background: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: relative;
	transition: .2s;
}
.testimonials button:after{
	content: '';
	width: 140%;
	height: 140%;
	background: #ffffff;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
.testimonials button:hover, .blog_scrolls button:hover{
	background: var(--pink);
	border-color: var(--pink);
}
.testimonials button img, .blog_scrolls button img{
	width: 80%;
	height: auto;
}
.testimonies > div > div:first-child{
	content: '';
	width: 60px;
	height: 60px;
	background: var(--pink);
	border-radius: 50%;
	margin-left: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.testimonies > div > div:first-child > img{
	display: inline-block;
	width: 60%;
	height: auto;
	transform: rotate(200deg);
}
.testimonies p{
	font-size: 1.4rem;
	font-style: italic;
}
.customer_profile{
	display: flex;
	gap: 1rem;
	align-items: center;
	margin-top: 2rem;
}
.customer_profile > div:first-child{
	width: 70px;
	height: 70px;
	border-radius: 50%;
	overflow: hidden;
}
.customer_profile > div:first-child > img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.customer_profile h3{
	font-size: 1.4rem;
	margin: 0;
	margin-bottom: .3rem;
}
.customer_profile p{
	margin: 0;
	margin-top: .3rem;
	font-size: 1.2rem;
	font-style: initial;
}
.contact_section.wide_bottom{
	padding-bottom: 12rem;
}
.contact_section {
	padding: 6rem 10%;
	background: rgba(59,130,246,.2);
}
.contact_section button{
	width: 100%;
	box-sizing: border-box;
	justify-content: center;
	text-transform: uppercase;
}
.contact_section > div{
	background: #ffffff;
	padding: 1rem;
	border-radius: 2rem;
	display: flex;
	gap: 4rem;
	justify-content: space-between;
}
.contact_section :is(input, textarea){
	resize: none;
	font-family: 'Inter', sans-serif;
	font-size: 1.1rem;
	outline: none;
	width: 100%;
	box-sizing: border-box;
	padding: 1rem;
	border: none;
	border-bottom: 1px solid #000000;
}
.contact_section > div > div{
	width: 50%;
}
.contact_section > div > div:first-child{
	padding: 2rem;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	box-sizing: border-box;
}
.contact_section > div > div:last-child{
	border-radius: 2rem;
	overflow: hidden;
	height: 0;
	padding: 25% 0;
	position: relative;
}
.contact_section > div > div:last-child > img{
	width: 100%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.recent_posts{
	padding: 6rem 10%;
	padding-bottom: 14rem;
}
.recent_posts > div:first-child{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.posts_list {
	padding: 3rem 0;
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	gap: 2rem;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE and Edge */
}

.posts_list::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Opera */
}
.posts_list h3{
	font-size: 1.4rem;
	line-height: 1.4;
}

.posts_list a {
	flex: 0 0 31%; /* 3 visible items */
	scroll-snap-align: start;
	text-decoration: none;
	background: #f8f8f8;
	border-radius: 2rem;
	padding: 1rem;
	box-sizing: border-box;
	color: #000000;
}
.posts_list a > div:first-child{
	border-radius: 1.6rem;
	height: 0;
	width: 100%;
	padding: 28.125% 0;
	position: relative;
	overflow: hidden;
}
.posts_list a > div:first-child > img{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.blog_scrolls{
	display: flex;
	justify-content: center;
	gap: 2rem;
	align-items: center;
	position: relative;
}
.blog_scrolls:before, .blog_scrolls:after{
	content: '';
	width: 40%;
	height: 2px;
	background: black;
	position: absolute;
}
.blog_scrolls:before{
	left: 0;
}
.blog_scrolls:after{
	right: 0;
}
footer{
	padding: 4rem 10%;
	padding-top: 6rem;
	background: #2f2020;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 4rem;
}
.footer_cta{
	width: calc(100% - 20%);
	box-sizing: border-box;
	background: var(--blue);
	padding: 4rem;
	border-radius: 2rem;
	position: absolute;
	top: -6rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: space-between;
}
.footer_cta button{
	background: #2f2020;
	padding: 1rem 1.4rem;
	border: none;
	border-radius: 2rem;
	color: #ffffff;
	font-size: 1.2rem;
	font-weight: 700;
}
.footer_cta img{
	flex-shrink: 0;
	width: auto;
	height: auto;
	align-self: flex-start;
	animation: rotate 20s infinite linear;
}
@keyframes rotate{
	0% {
		transform: rotate(0deg);
	} 100% {
		transform: rotate(360deg);
	}
}
.iconic{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 4rem;
}
.iconic > div:first-child{
	color: #ffffff;
	display: flex;
	gap: 1rem;
	align-items: center;
}
.iconic > div:first-child p{
	margin: 0;
	line-height: 1;
	font-size: 1.2rem;
	font-weight: 600;
}
.iconic > div:first-child p:first-of-type{
	margin-bottom: .5rem;
}
.iconic > div:first-child p:last-of-type{
	margin-top: .5rem;
}
.iconic > div:first-child img{
	width: 100px;
	height: auto;
}
.iconic > div:last-child{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
}
.iconic > div:last-child a{
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 70px;
	border: 2px solid rgba(255, 255, 255, .5);
	border-radius: 50%;
}
.iconic > div:last-child a img{
	width: 50%;
	height: auto;
}
.footer_links{
	display: flex;
	align-items: center;
	gap: 2rem;
	padding: 2rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, .5);
}
.footer_links a, .company_links a{
	color: rgba(255, 255, 255, .5);
	text-decoration: none;
	font-size: 1.1rem;
}
.company_links{
	color: #ffffff;
	font-synthesis: 1.1rem;
	display: flex;
	justify-content: space-between;
}
.company_links > div:last-child{
	display: flex;
	gap: 2rem;
	justify-content: space-between;
}

.hero_top {
	width: 100%;
	height: 55vh;
	background-image: 
		linear-gradient(rgba(0, 51, 153, 0.55), rgba(0, 51, 153, 0.55)), 
		url(' /img/group-business.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.hero_top > div{
	padding: 5rem 10%;
	padding-top: 12rem;
	color: #ffffff;
}
.about_top{
	padding: 6rem 10%;
	text-align: center;
}
.about_top h2{
	max-width: 50%;
	margin: 0 auto;
	margin-bottom: 3rem;
}
.about_top > div{
	text-align: initial;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.about_top > div > div{
	width: 48%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1.5rem;
}
.about_top > div > div img{
	width: 100%;
	height: auto;
	border-radius: 2rem;
}
.about_top > div > div > div{
	padding: 2rem;
	border: 1px solid #ebebeb;
	border-radius: 2rem;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: center;
}
.about_top > div > div > div img{
	width: 120px;
	height: auto;
}
.about_top > div > div > div h3{
	font-size: 1.4rem;
}
.company_text{
	max-width: 900px;
	margin: auto;
	padding: 6rem 2rem;
	margin-bottom: 3rem;
	line-height: 1.6;
}
.contacts{
	padding: 3rem 10%;
}

@media (max-width: 680px) {
	header{
		min-width: 100%;
		padding: 2rem 1rem;
	}
	header > a > img{
		max-width: 200px;
	}
	header ul{
		position: absolute;
		top: calc(100%);
		background: #ffffff;
		width: 100%;
		box-sizing: border-box;
		left: 0;
		padding: 0 3rem;
		border-radius: 2rem;
		display: flex;
		flex-direction: column;
		gap: 1rem;
		max-height: 0;
		overflow-y: hidden;
		transition: all .2s ease-out;
	}
	header ul li{
		display: block;
	}
	header ul li + li{
		margin-left: 0;
	}
	.menu{
		display: flex;
		align-items: center;
		justify-content: center;
	}
	h2{
		font-size: 1.6rem;
	}
	h3{
		font-size: 1.2rem;
	}
	a.for_more{
		padding: .6rem 1rem;
		font-size: 1rem;
	}
	.hero_home > div{
		width: 100%;
		flex-direction: column;
	}
	.hero_home > div > div{
		width: calc(100% - 2rem) !important;
	}
	.hero_home h1{
		font-size: 2rem;
	}
	.hero_home h1 span, .hero_top h1{
		font-size: 2.5rem;
	}
	.products{
		padding: 1rem;
	}
	.products h2{
		font-size: 1.6rem;
	}
	.products > div{
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	.products > div.for_title{
		margin: 1rem 0;
	}
	.products > div.models{
		margin: 1rem 0;
		margin-bottom: 8rem;
	}
	.products > div > div{
		flex-direction: column;
	}
	.moving{
		padding: 2rem 1rem;
	}
	.moving > div{
		flex-direction: column;
	}
	.moving > div > div{
		width: 100%;
	}
	.moving > div > div:first-child{
		padding: 82% 0;
		margin-bottom: 2rem;
	}
	.moving > div > div > img{
		width: 80%;
		top: 6%;
	}
	.tech_features{
		padding: 1rem;
		flex-direction: column;
	}
	.tech_features > div{
		width: 100%;
	}
	.testimonials{
		padding: 2rem 1rem;
	}
	.testimonials > div{
		flex-direction: column-reverse;
	}
	.testimonials > div > div{
		width: 100%;
		box-sizing: border-box;
	}
	.scroll_buttons{
		justify-content: center;
	}
	.contact_section{
		padding: 2rem 1rem;
	}
	.contact_section > div{
		flex-direction: column-reverse;
		gap: 1rem;
	}
	.contact_section > div > div{
		width: 100%;
	}
	.contact_section > div > div:first-child{
		padding: 1rem;
		gap: 2rem;
	}
	.contact_section > div > div:last-child{
		padding: 40% 0;
	}

	footer{
		padding: 1rem;
		gap: 1rem;
		padding-top: 2rem;
	}
	.footer_cta{
		width: calc(100% - 1rem);
		padding: 2rem;
	}
	.iconic, .footer_links, .company_links{
		flex-direction: column;
		gap: 1rem;
	}
	.company_links > div:last-child{
		flex-direction: column;
		gap: 1rem;
	}

	.hero_top{
		height: 60vh;
	}
	.hero_top > div{
		padding: 3rem 1rem;
		padding-top: 15rem;
	}
	.about_top{
		padding: 2rem 1rem;
	}
	.about_top h2{
		max-width: initial;
	}
	.about_top > div{
		flex-direction: column;
		gap: 2rem;
	}
	.about_top > div > div{
		width: 100%;
	}
	.about_top > div > div > div{
		flex-direction: column;
	}
	.about{
		padding: 2rem 1rem;
	}
	.about > div{
		flex-direction: column;
		gap: 0;
	}
	.about > div > div{
		width: 100%;
	}
	.focus{
		padding: 2rem 1rem;
	}
	.focus > div{
		flex-direction: column;
		gap: 2rem;
	}
	.team_members{
		padding: 2rem 1rem;
		margin-top: 0;
	}
	.team_members > div{
		margin-top: 0;
	}
	.team_members > div > div:last-child{
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}
	.team_members > div > div:first-child{
		margin-bottom: 2rem;
	}
}