@import url('reset.css');

:root {
	--container: 1200px;
	--gutter: clamp(10px, 3vw, 20px);
	--radius-lg: 16px;
	--radius-md: 12px;
	--text: #27293e;
	--muted: #6f6f75;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #27293e;
	background-color: #f8f8f8;
	margin: 0;
	padding: clamp(10px, 2.5vw, 20px) 0;
	padding-bottom: 0;
}

.wrapper {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
}

@keyframes fadeInScale {
	from {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.9);
	}
	to {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
}

@keyframes fadeInScaleMobile {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes fadeInRotateLogo {
	from {
		opacity: 0;
		transform: rotate(0deg);
	}
	to {
		opacity: 1;
		transform: rotate(-8deg);
	}
}

.button__link {
	text-decoration: none;
	margin: 0;
}

.button {
	display: block;
	width: 100%;
	cursor: pointer;
	border: none;
	text-decoration: none;
	background-color: #f5c832;
	border-radius: var(--radius-lg);
	font-family: inherit;
	font-weight: 600;
	font-size: clamp(16px, 2.2vw, 24px);
	line-height: 1;
	text-align: center;
	color: #000000;
	padding: 20px clamp(16px, 3vw, 40px);
	margin: 0 0 40px;
	max-width: 100%;
}

section {
	margin-bottom: 40px;
}

.header {
	margin-bottom: 1.25rem;
}

.header__content {
	width: 100%;
	min-height: 75px;
	background-color: #ffffff;
	padding: 0 var(--gutter);
	border-radius: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	gap: 12px;
}

.header__menu-toggle {
	width: 30px;
	height: 30px;
	position: relative;
	border: none;
	background: none;
	padding: 0;
	cursor: pointer;
	display: none;
}

.header__icon--burger {
	display: block;
	width: 100%;
	height: auto;
}

.header__icon--close {
	display: none;
	width: 100%;
	height: auto;
}

.header__lang {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	background-color: #2d79ec;
	color: #ffffff;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.02em;
	text-decoration: none;
	border-radius: 6px;
	transition: background-color 0.2s ease, opacity 0.2s ease;
}

.header__lang:hover,
.header__lang:focus-visible {
	background-color: #2568d4;
	color: #ffffff;
}

.header__nav {
	flex: 1;
	display: flex;
	align-items: center;
}

.header__nav-links {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	list-style: none;
	width: 100%;
	margin: 0;
	flex-wrap: nowrap;
}

.header__nav-link {
	text-decoration: none;
	color: #27293e;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 1rem;
	line-height: 1.375rem;
	font-weight: 400;
	padding: 0.5rem 0;
	display: inline-block;
	transition: all 0.3s ease;
	border-radius: 4px;
	gap: 5px;
}

.hero {
	width: 100%;
	max-width: 1200px;
	min-height: 611px;
	background-color: #2d79ec;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
	padding: 2rem 1rem;
	margin-bottom: 40px;
}

.hero__logo {
	position: absolute;
	width: 256px;
	top: 100px;
	left: 21.2%;
	transform: rotate(0deg);
	height: auto;
	opacity: 0;
	transform-origin: bottom left;
	transition: all 1s ease-in-out;
	animation: fadeInRotateLogo 1s ease-out forwards;
}

.hero__title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	height: auto;
	display: block;
	width: 100%;
	max-width: 1056px;
	transition: all 1s ease-in-out;
	animation: fadeInScale 0.7s ease-out forwards;
}

.hero__content-wrapper {
	position: static;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.hero__paragraph {
	font-family: 'Nunito Sans', sans-serif;
	color: #f4f4f4;
	font-size: 40px;
	font-weight: 400;
	line-height: 1.2;
	padding: 32px 52px 81px 68px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

.hero__paragraph--bold {
	font-weight: bolder;
}

.about {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr 2fr;
	gap: 10px;
}

.about__box {
	background-color: #ffffff;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	padding: 16px;
	min-width: 0;
	gap: 15px;
}

.about__logo-background {
	display: flex;
	align-items: center;
	background-color: #e5e8ed;
	border-radius: 4px;
	width: fit-content;
	max-height: 32px;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	padding: 10px;
	gap: 10px;
}

.about__title {
	font-size: 16px;
	line-height: 20px;
	font-weight: bold;
}

.about__paragraph {
	font-size: 16px;
	line-height: 20px;
}

.about__box-row2 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 10px;
	width: 100%;
	margin-top: 0;
	grid-column: 1 / -1;
}

.about__logo-link {
	text-decoration: none;
}

.about__logo-text {
	font-family: 'Nunito Sans', sans-serif;
	font-style: normal;
	font-size: 12px;
	font-weight: bold;
	margin-right: 12px;
	padding-right: 16px;
	color: #27293e;
	text-decoration: none;
}

.projects__card {
	position: relative;
	background-color: #ffffff;
	border-radius: 16px;
	display: flex;
	overflow: hidden;
	margin-bottom: 10px;
	padding: 30px;
	align-items: center;
	gap: 20px;
}

.projects__card-content {
	flex-basis: 50%;
}

.projects__card-title {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 900;
	font-size: 38px;
	line-height: 100%;
	color: #0b5ed9;
	margin-bottom: 20px;
}

.projects__card-paragraph {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 120%;
	color: rgba(44, 44, 44, 0.8);
	margin-bottom: 20px;
}

.projects__card-paragraph--bold {
	font-weight: 900;
}

.projects__card-image-wrapper {
	flex-basis: 50%;
}

.projects__card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	display: block;
}

.projects__boxes-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 10px;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	margin-bottom: 20px;
}

.projects__box {
	background-color: #ffffff;
	border-radius: 16px;
	padding: 20px;
}

.projects__box-icon {
	width: 42px;
	height: 42px;
	display: block;
	margin-bottom: 20px;
}

.projects__card-price,
.price-list__price {
	font-family: 'PP Neue Machina', sans-serif;
	font-weight: 800;
	font-size: 38px;
	line-height: 100%;
	color: #2c2c2c;
	margin-bottom: 5px;
}

.pricing-grid__paragraph {
	margin-bottom: 15px;
}

.pricing-grid__price--publication {
	font-family: 'PP Neue Machina', sans-serif;
	font-weight: 800;
	font-size: 38px;
	line-height: 100%;
	color: #2c2c2c;
	margin-bottom: 15px;
}

.pricing-grid__paragraph.pricing-grid__paragraph--publication {
	margin-bottom: 5px;
}

.pricing-grid__paragraph.pricing-grid__paragraph--individual {
	margin-bottom: 5px;
}

.pricing-grid {
	display: grid;
	margin-bottom: 10px;
	grid-template-columns: 1fr;
	gap: 10px;
}

.pricing-grid__paragraph--secondary {
	font-weight: 900;
	color: #0b5ed9;
}

.corporate-blog__text-and-tables-wrapper {
	background-color: #ffffff;
	border-radius: 16px;
	margin-bottom: 10px;
	padding: 30px;
}

.corporate-blog__text {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	max-width: 504px;
	margin-bottom: 20px;
}

.corporate-blog__title {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 900;
	font-size: 38px;
	line-height: 100%;
	color: #3663e0;
}

.corporate-blog__paragraph {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 120%;
	color: rgba(44, 44, 44, 0.8);
}

.corporate-blog__paragraph {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 120%;
	color: rgba(44, 44, 44, 0.8);
	padding: 10px 0 0 10px;
}

.corporate-blog__table-image {
	display: block;
	width: 100%;
	height: auto;
	max-width: 545px;
	margin: 0;
}

.corporate-blog__tables {
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	margin-bottom: 20px;
}

.corporate-blog__caption {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 800;
	line-height: 120%;
	text-align: left;
	font-size: 20px;
	color: rgb(11 94 217);
}

.ratings {
	width: 100%;
	max-width: 1200px;
	background-color: #ffffff;
	border-radius: 16px;
}

.ratings__table-wrapper {
	padding: 0 20px 20px;
}

.ratings__badge-paragraph {
	margin-top: 20px;
	padding: 3px 9px;
	color: #e01339;
	margin-bottom: 10px;
	border: 1px solid #ffdbe2;
	background-color: #ffdbe2;
	border-radius: 16px;
	width: 227px;
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 600;
	font-size: 10px;
	line-height: 120%;
	text-align: left;
	display: flex;
	align-items: center;
}

.ratings__badge {
	background-color: #e01339;
	color: #ffffff;
	border-radius: 50%;
	width: 14px;
	height: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 3px;
}

.ratings__table-image {
	display: block;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	height: auto;
}

.partner-networks-ratings,
.services-rating {
	width: 100%;
	max-width: 1200px;
	padding: 30px;
	background-color: #ffffff;
	border-radius: 16px;
}

.column-ratings__wrapper {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	flex-direction: column;
}

.column-ratings__images {
	display: flex;
	align-items: start;
	gap: 20px;
}

.column-ratings__column.column-ratings__column--left {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.column-ratings__column.column-ratings__column--right {
	display: flex;
	align-items: flex-end;
}

.column-ratings__table-image {
	display: block;
	width: 100%;
	height: auto;
	max-width: 545px;
}

.column-ratings__main-image {
	display: block;
	width: 100%;
	height: auto;
	max-width: 545px;
}

.sponsor__price-container,
.native-integration__price-container,
.price-list__price-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.price-list__price {
	margin-bottom: 0;
}

.price-list__price-row {
	margin-bottom: 20px;
}

.native-integration__price-container {
	gap: 10px;
}

.projects__card-paragraph--native-bold {
	font-weight: 800;
}

.price-list__frequency {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 900;
	font-size: 16px;
	line-height: 100%;
	color: #0b5ed9;
}

.pricing-table {
	width: 100%;
	border-radius: 16px;
	overflow: hidden;
	border-collapse: collapse;
	max-width: 505px;
	margin-bottom: 20px;
}

.pricing-table__row--odd {
	background-color: #ebf0ff;
}

.pricing-table__cell {
	padding: 15px;
	vertical-align: middle;
}

.pricing-table__cell--price {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 800;
	font-size: 40px;
	line-height: 100%;
	color: #2c2c2c;
	white-space: nowrap;
}

.pricing-table__cell--description {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 120%;
	color: #2c2c2c;
}

.pricing-table__row--even {
	background-color: #d9e2fc;
}

.pricing-table__currency {
	color: #3663e0;
}

.pricing-table__link {
	color: #3663e0;
	text-decoration: none;
}

.social-media-branding__package-title {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 900;
	font-size: 18px;
	line-height: 100%;
	color: #727272;
	margin-bottom: 20px;
	margin-top: 20px;
}

.vacancy__list {
	list-style-type: disc;
	margin: 0;
	padding: 0;
	padding-left: 10px;
}

.vacancy__list-item {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 120%;
	color: rgba(44, 44, 44, 0.8);
	padding-left: 10px;
	padding-bottom: 10px;
	margin-left: 20px;
}

.contacts {
	background-color: #fff;
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
	align-items: stretch;
	border-radius: 20px;
	overflow: hidden;
	padding: 40px 48px;
	gap: 28px;
}

.contacts__title {
	margin: 0;
	text-align: center;
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 800;
	font-size: 40px;
	line-height: 1.1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #2b2b2b;
}

.contacts__card-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 20px;
	width: 100%;
}

.contact-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 18px;
	background-color: #eceef5;
	border-radius: 999px;
	text-decoration: none;
	color: inherit;
	min-width: 0;
	transition: background-color 0.2s ease;
}

.contact-card:hover {
	background-color: #e2e5f0;
}

.contact-card__avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.contact-card__info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
	flex: 1;
}

.contact-card__role {
	margin: 0;
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.2;
	color: #6b6b6b;
}

.contact-card__handle {
	margin: 0;
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 800;
	font-size: 18px;
	line-height: 1.2;
	color: #1f1f1f;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.contact-card__telegram {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	display: block;
}

.footer {
	width: 100%;
	margin-top: 75px;
	background-color: #4a4a4a;
	padding: 0;
}

.footer .wrapper {
	display: flex;
	justify-content: space-between;
	padding-top: 40px;
	padding-bottom: 40px;
}

.footer__column {
	flex-basis: 1fr;
}

.footer__logo {
	margin-bottom: 16px;
}

.footer__paragraph {
	width: 264px;
	margin-bottom: 12px;
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #d9d9d9;
}

.footer__socials {
	margin-bottom: 73px;
}

.footer__social-link {
	margin-right: 10px;
	display: inline-block;
}

.footer__social-icon {
	width: 24px;
	height: 24px;
}

.footer__link {
	display: block;
	text-decoration: none;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: -0.31px;
	color: #d9d9d9;
	margin-bottom: 12px;
}

.header__menu-toggle.header__menu-toggle--active .header__icon--burger {
	display: none;
}

.header__menu-toggle.header__menu-toggle--active .header__icon--close {
	display: block;
}

.header__nav.header__nav--active {
	display: flex;
}

.header__nav.header__nav--active .header__nav-links {
	align-items: baseline;
	padding-left: 20px;
}

.header__nav.header__nav--active .header__nav-links .header__nav-item {
	border-bottom: 1px solid #f0f0f0;
	width: 100%;
}

.sponsor__price-options .pricing-grid__paragraph--secondary {
	margin: 0;
}

.sponsor__price-options {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
	margin-left: 10px;
	gap: 5px;
}

.pricing-grid__paragraph-additional {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 400;
	font-size: 10px;
	line-height: 12px;
	text-align: center;
	border-radius: 16px;
	padding: 2px 6px;
}

.pricing-grid__paragraph-additional.yellow {
	background-color: #f9f9c9;
}

.pricing-grid__paragraph-additional.red {
	background-color: #ffdbe2;
	color: #e01339;
}

.footer__link {
	display: block;
}

.projects__card-paragraph.projects__card-paragraph--bold {
	position: absolute;
	bottom: 0;
	font-size: 20px;
	color: rgb(11 94 217);
}

@media (max-width: 1200px) {
	.hero__title {
		position: static;
		transform: none;
		margin: 0 auto;
		width: auto;
		max-width: 100%;
		display: block;
		animation: fadeInScaleMobile 0.7s ease-out forwards;
	}

	.hero__logo {
		position: static;
		transform: none;
		margin: 0 auto;
		margin-left: 190px;
	}

	.about > .about__box {
		width: 100% !important;
	}

	.about {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 1024px) {
	.hero__content-wrapper {
		padding-left: 30px;
		padding-right: 30px;
	}
}

@media only screen and (max-width: 991px) {
	.header__content {
		flex-wrap: wrap;
	}

	.header__menu-toggle {
		display: block;
		order: 1;
	}

	.header__lang {
		order: 2;
		margin-left: auto;
	}

	.header__nav {
		display: none;
		order: 3;
		flex: none;
		width: 100%;
	}

	.header__nav-links {
		flex-direction: column;
		width: 100%;
		padding: 1rem;
		gap: 0;
		justify-content: flex-start;
	}

	.projects__card {
		flex-direction: column;
	}

	.corporate-blog__tables {
		flex-direction: column;
		align-items: center;
	}

	.pricing-table {
		max-width: 100%;
	}

	.projects__card-price,
	.price-list__price {
		margin-bottom: 5px;
	}

	.pricing-grid__paragraph {
		margin-bottom: 15px;
	}

	.projects__card-image-wrapper.project__card-image-wrapper-get {
		padding-bottom: 50px;
	}
}

@media only screen and (max-width: 900px) {
	.projects__card-title {
		font-size: 30px;
	}

	.projects__card-price,
	.price-list__price {
		font-size: 30px;
	}
}

@media only screen and (max-width: 768px) {
	.hero {
		min-height: 450px;
	}

	.hero__logo {
		margin-left: 90px;
	}

	.hero__paragraph {
		font-size: 26px;
		padding: 50px;
	}

	.pricing-table__cell {
		display: block;
		width: 100%;
		padding: 10px;
	}

	.pricing-table__cell--price {
		font-size: 28px;
		padding-bottom: 0;
	}

	.contacts__card-row {
		grid-template-columns: 1fr;
	}

	.footer .wrapper {
		flex-direction: column;
		padding: 20px;
	}

	.footer__column {
		margin-bottom: 20px;
	}

	.footer__paragraph {
		width: 100%;
	}
}

@media only screen and (max-width: 580px) {
	.hero__paragraph {
		font-size: 24px;
	}
}

@media only screen and (max-width: 550px) {
	.projects__card-title {
		font-size: 26px;
	}

	.projects__card-price,
	.price-list__price {
		font-size: 25px;
	}

	.contacts {
		padding: 28px 20px;
		gap: 20px;
	}

	.contacts__title {
		font-size: 28px;
	}

	.contact-card__handle {
		font-size: 16px;
	}
}

@media only screen and (max-width: 500px) {
	.hero__logo {
		width: 170px;
		margin-left: 90px;
	}

	.column-ratings__images {
		flex-direction: column;
	}

	.hero__paragraph {
		font-size: 27px;
	}
}

@media only screen and (max-width: 478px) {
	.projects__box {
		display: flex;
		align-items: center;
		gap: 5px;
	}

	.projects__box-icon {
		margin-bottom: 0;
	}
}

@media only screen and (max-width: 420px) {
	.hero__paragraph {
		font-size: 25px;
	}
}

@media only screen and (max-width: 400px) {
	.hero {
		min-height: 370px;
	}
	.hero__logo {
		width: 170px;
		margin-left: 60px;
	}

	.hero__paragraph {
		font-size: 20px;
	}
}
