:root {
	--main-background-color: #F1F4F6;
	--element-background-color: #FFFFFF;

	--header-color: #171717;
	--text-color: #12175D;
	--text-addit-color: #0D224E;

	--main-gradient: linear-gradient(90deg, #728ADE 0%, #9A66F6 100%);
	--addit-gradient: linear-gradient(90deg, #D5C3FF 0%, #F5C3FD 100%);

	--form-color: #F5F6FA;
	--form-stroke-color: #E5E5E5;
	--form-addit-color: #8B8B8B;
}
@font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
	font-weight: bold;
	font-style: normal;
}

* {
	font-family: 'Montserrat';
	font-size: 18pt;
}
html {
	overflow-x: hidden;
	touch-action: none;
	scroll-behavior: smooth;
}
body {
	margin: 0;
	padding: 0;
	position: relative;
}
#body-wrapper {
	margin: 0;
	padding: 0;
	position: relative;
	background-color: var(--main-background-color);
	width: 100%;
	min-height: 100vh;
	overflow-x: hidden;

	display: flex;
	align-items: center;
	flex-direction: column;
	color: var(--addit-color);
}

.grid-container {
	display: grid;
	grid-template-columns: repeat(12,60px);
    column-gap: 20px;
	row-gap: 20px;
}

section.header-section {
	grid-column: 1/13;

	display: flex;
	justify-content: space-between;
	margin: 34px 0 52px 0;
}

/* defaults */
h1 {
	font-size: 30pt;
	color: var(--header-color);
}

h2 {
	font-size: 28pt;
	color: var(--header-color);
	margin: 5px 0 50px 0;
}

h3 {
    font-size: 18pt;
	color: var(--header-color);
}

/* menu */
.menu-container {
	display: flex;
	align-items: center;
	gap: 28px;
}

.menu-link,
.menu-link:visited {
	color:var(--addit-color);
	text-decoration: none; 
	font-size: 14pt;
	width: fit-content;
}

.menu-link::after {
	content: '';
	display: block;
	width: 100%;
	height: 3px;
	background: var(--main-gradient);
	opacity: 0;
	transition: opacity .3s;
}

.menu-link:hover::after,
.menu-link.__active::after {
	opacity: 1;
}

/* button */
.link-button,
.link-button:visited {
	position: relative;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;

	color: var(--element-background-color);
	width: fit-content;

	background: var(--main-gradient);
	padding: 22px 40px;
	box-sizing: border-box;
	border-radius: 60px;
	z-index: 1;
	border: none;
	cursor: pointer;
}

.link-button.primary {
	background: var(--addit-gradient);
	width: 100%;
	border-radius: 25px;
	color: var(--text-color);
}
/* offer */
section.offer-section {
	position: relative;
	grid-column: 1/13;
	background: var(--addit-gradient);
	border-radius: 50px;

	padding: 50px 80px;
	box-sizing: border-box;
	z-index: 10;
}

/* footer */
section.footer-section {
	grid-column: 1/13;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--text-addit-color);
}

section.footer-section p{
	margin: 80px 0 66px 0;
}

section.footer-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.__mobile-only {
	display: none;
}

@media (max-width: 980px) {
	.__desktop-only {
		display: none !important;
	}
	.__mobile-only {
		display: inherit !important;
	}
	
	.grid-container {
		grid-template-columns: repeat(12,1fr);
		column-gap: 12px;
		margin: 0 24px;   
		row-gap: 10px;
	}

	section.header-section {
		grid-column: 1/-1;
		margin: 12px 0 31px 0;
		align-items: center;
	}
	.header-logo-image {
		height: 39px;
	}


	h1, h2 {
		font-size: 11pt;
	}

	h3 {
		font-size: 9pt;
	}

	* {
		font-size: 9pt;
	}

	section.offer-section {
		border-radius: 20px;
		padding: 21px 26px;
	}
	section.offer-section h2{
		margin-bottom: 20px;
	}
	section.offer-section p{
		margin: 14px 0;
	}

	.link-button,
	.link-button:visited {
		border-radius: 45px;
		padding-top: 13px;
		padding-bottom: 13px;
		width: 100%;
	}

	section.footer-section p{
		margin: 56px 0 48px 0;
	}
}