@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;700&display=swap");

* {
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
		"Open Sans", "Helvetica Neue", sans-serif;
	font-size: 16px;
	line-height: 100%;
	color: var(--text);
}

html,
body {
	min-height: 1px;
	height: 100%;

	--brand: #2049a2;
	--brand-secondary: #b7cbe0;
	--brand-accent: #009b00;
	--brand-accent-secondary: #d7e4cd;
	--base: #292929;
	--base-hover: #646464;
	--secondary: #f3f3f3;
	--white: #fff;
	--base-02: #dadada;
	--base-03: #d2d2d2;
}

/* 
Tablet
@media screen and (min-width: 768px) and (max-width: 1200px) {
		
}

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

}
*/

h1 {
	font-size: 52px;
	font-size: 700;
}

.logo {
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	gap: 24px;
}

.logo img {
	width: 120px;
	height: auto;
}

.logo h2 {
	font-size: 30px;
	font-weight: 300;
	text-align: center;
}

.links {
	display: flex;
	gap: 24px;
	margin-top: 80px;
}

.links a {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 12px 24px;
	border-radius: 50px;
	border: 2px solid var(--secondary);
	transition: background 0.3s ease-in-out;
	text-align: center;
}

.links a:hover {
	background: var(--brand-accent-secondary);
}

.links a span {
	font-size: 18px;
	text-decoration: underline;
	color: var(--base);
}

.links a img {
	height: 32px;
	width: 32px;
}

.about {
	width: 100%;
	margin: auto;
	border-radius: 96px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 96px;
	padding: 96px 192px 192px;
	box-sizing: border-box;
}

.description {
	width: 100%;
	display: flex;
	align-items: center;
	overflow: visible;
}

.description p,
.description span {
	position: relative;
	z-index: 2;
	font-size: 24px;
	line-height: 150%;
	font-weight: 300;
	text-align: justify;
}

.description span {
	color: var(--brand);
	font-weight: 700;
}

.map {
	width: 100%;
	border-radius: 96px;
}

.map img {
	width: 100%;
}

.service {
	width: calc(100% - 20px);
	margin-left: 10px;
	padding: 192px 192px 96px 192px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 96px;
	box-shadow: 0 -29px 50px -6px rgb(0 0 0 / 9%);
	border-radius: 96px 96px 0 0;
}

.service-line {
	display: none;
}

.service__title p {
	font-size: 94px;
	font-weight: 200;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	line-height: 100%;
}

.service__title p img {
	display: inline-block;
	box-sizing: border-box;
	background: var(--brand-secondary);
	border-radius: 32px;
	padding: 8px;
	width: 92px;
	height: 92px;
}

.service > p {
	font-size: 34px;
	font-weight: 300;
	line-height: 150%;
}

.connect {
	display: flex;
	flex-direction: column;
	gap: 96px;
	box-sizing: border-box;
	background: var(--white);
	padding: 96px 192px;
}

.connect .service__title p {
	color: var(--brand-accent);
}

.connect .links {
	margin-top: 0;
}

.products {
	display: flex;
	flex-direction: column;
	gap: 96px;
	background: var(--white);
	padding: 96px 192px;
}

.products-list {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.products-list p {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px 24px;
	border-radius: 24px;

	line-height: 100%;
	font-size: 28px;
	font-weight: 400;
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
}

.products-list p:last-child {
	border: 1px solid var(--base-03);
	box-shadow: none;
}

.products-list p img {
	width: 48px;
	height: 48px;
}

.howto {
	display: flex;
	flex-direction: column;
	gap: 96px;
	background: var(--white);
	padding: 96px 192px 192px 192px;
	border-radius: 0 0 192px 192px;
	position: relative;
	z-index: 2;
}

.howto__title p {
	font-size: 58px;
	font-weight: 700;
	color: var(--base-02);
}

.howto__steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	gap: 64px;
	justify-content: center;
}

.howto__steps .step {
	background: #2d2d2d;
	width: 100%;
	border-radius: 48px;
	padding: 32px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	gap: 12px;
}

.howto__steps .step img {
	width: 48px;
	height: 48px;
	color: white;
}

.howto__steps .step p,
.howto__steps .step span {
	font-size: 42px;
	color: var(--base-03);
	font-weight: 300;
	line-height: 100%;
}

.howto__steps .step--first {
	background: linear-gradient(-150deg, #595959 0%, #2d2d2d 100%);
}
.howto__steps .step--first span {
	color: #bbaf88;
}

.howto__steps .step--second {
	background: linear-gradient(-100deg, #595959 0%, #2d2d2d 100%);
}
.howto__steps .step--second span {
	color: #88bb95;
}

.howto__steps .step--third {
	background: linear-gradient(-50deg, #595959 0%, #2d2d2d 100%);
}

.howto__steps .step--forth {
	background: linear-gradient(30deg, #595959 0%, #2d2d2d 100%);
}
.howto__steps .step--forth span {
	color: #889ebb;
}

.footer {
	background: #f3f3f3;
	margin-top: -196px;
	padding-top: 196px;
}

.footer-container {
	margin-top: 96px;
	padding: 0 192px 96px;
	display: flex;
	flex-direction: column;
	gap: 96px;
}

.footer__title {
	display: flex;
	justify-content: center;
}

.footer__title p {
	color: var(--base-02);
	font-size: 50px;
	font-weight: 700;
	text-align: center;
}

.contacts {
	display: flex;
	justify-content: space-between;
	gap: 96px;
}

.contacts__links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contacts__links a {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: underline;
	transition: color 0.3s ease-in-out;
}

.contacts__links a:hover {
	color: var(--base-hover);
}

.contacts__links a img {
	width: 24px;
	height: auto;
}

.contacts__documents {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contacts__documents a {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	align-items: center;
	border: 1px solid var(--base);
	padding: 12px 24px;
	border-radius: 32px;
	white-space: nowrap;
}

.contacts__documents a img {
	width: 32px;
	height: auto;
}

.footer__legal {
	margin-top: 48px;
	padding-top: 24px;
	text-align: center;
}
.footer__legal p {
	font-size: 14px;
	color: var(--brand);
	line-height: 150%;
}
