.page__text {
	width: 80%;	
}

.page__logos {
	display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 20px;
	margin-bottom: 30px;
}

.page__logos div {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #F5F5F5;
	border-radius: 24px;
	height: 220px;
}

.page__logos div img {
	max-width: 90%;
}

.page__blue {
	border-radius: 16px;
	background: #F2F2FB;	
	padding: 30px;
	font-size: 24px;
	margin-bottom: 80px;
}

.page__text-tile {
	margin: 80px 0;
}

.page__text-tile-wrapper {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.page__text-tile-item {
	position: relative;
    padding: 20px;
    border-radius: 24px;
    background: #F5F5F5;
    font-size: 20px;
    color: #0a0a0a;
    line-height: 1.6;
}

.page__text-tile-item:before {
    display: block;
    content: "";
    width: 40px;
    height: 40px;
    background: url(/images/check-circle.png) no-repeat;
    margin-bottom: 25px;
}

.page__title {
	font-size: 48px;
    color: #0a0a0a;
    margin: 0 0 40px;
    font-weight: 600;
    line-height: 1;
	text-align: center;
    word-wrap: break-word;
}

.company-icons {
	display: grid;
	grid-template-columns: 40% 40%;
	grid-gap: 50px;
	margin-bottom: 50px;
}

.company-icons__item {
	display: flex;
	align-items: center;
}

.company-icons__item svg {
	fill: #0202b3;
}

.company-icons__item-text {
	padding-left: 30px;
	color: #1f1446;
	font-size: 18px;
}

@media (max-width: 1100px) {
	.page__text {
		width: 100%;
	}
}

@media (max-width: 840px) {
	.page__logos div {
		height: 160px;
		border-radius: 16px;
	}
	
	.page__logos div img {
		max-width: 70%;
	}	
	
	.page__title {
		font-size: 32px;
	}	
	
	.page__text-tile-item {
		border-radius: 16px;
		font-size: 16px;
	}	
	
	.page__text-tile-item:before {
		width: 32px;
		height: 32px;
		background-size: cover;
		margin-bottom: 15px;
	}
}


@media (max-width: 540px) {
	.page__text-tile {
		margin: 40px 0;
	}
	
	.page__text-tile-wrapper {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	
	.page__blue {
		padding: 20px;
		font-size: 20px;
		margin-bottom: 40px;
	}	
}