.main {
	width: 100%;
}

/* HEAD */
.contact_head {
	width: 100%;
	height: 440px;
	background: url('../img/Rectangle\ 118.png');
	display: flex;
	justify-content: center;
	align-items: center;
}
.contact_container {
	width: 1160px;
	display: grid;
	grid-template-rows: repeat(2, auto);
	grid-gap: 28px;
	justify-items: center;
	align-content: center;
}
.contact_title {
	font-weight: 700;
	font-size: 48px;
	line-height: 130%;
	color: #fff;
	text-align: center;
}
.contact_text {
	font-size: 22px;
	line-height: 150%;
	/* or 33px */

	text-align: center;

	color: #ffffff;
	width: 70%;
}

/* CONTACT ITEMS */
.contact_items_container {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;

	margin-top: 100px;
}

.contact_items_all {
	width: 1160px;
	display: grid;
	grid-template-columns: repeat(2, auto);
	grid-template-rows: repeat(5, auto);
	justify-items: center;
	/* align-items: center; */
	grid-template-areas:
		'ur_info ur_adress'
		'sv_soc sv_smi'
		'sv_info sv_gos'
		'sv_tech sv_con'
		'world sv_con';

	grid-gap: 80px 40px;
}
.contact_item {
	display: grid;
	grid-template-rows: auto auto 2fr;
	grid-gap: 24px;
	align-items: start;
}

.contact_item_icon {
}
.contact_item_title {
	font-weight: 500;
	font-size: 24px;
	line-height: 130%;
}
.contact_item_content {
	font-size: 17px;
	line-height: 150%;

	display: grid;
	grid-template-rows: repeat(2, auto);
	grid-gap: 15px;
}
.contact_item_content span {
	color: #226ce6;
}
.social ul {
	display: flex;
	gap: 12px;
}

.ur_info {
	grid-area: ur_info;
}
.ur_adress {
	grid-area: ur_adress;
}
.sv_soc {
	grid-area: sv_soc;
}

.sv_smi {
	grid-area: sv_smi;
}
.sv_info {
	grid-area: sv_info;
}
.sv_gos {
	grid-area: sv_gos;
}
.sv_tech {
	grid-area: sv_tech;
}
.sv_con {
	grid-area: sv_con;
}
.world {
	grid-area: world;
}

.sv_con .contact_item_content ul {
	display: grid;
	grid-template-rows: repeat(2, auto);
	grid-gap: 18px;
}
.sv_con .contact_item_content ul li {
	list-style: disc;
	color: #226ce6;
	padding-left: 15px;
	margin-left: 15px;
}
.sv_con .contact_item_content ul li::marker {
	font-size: 22px;
}
.sv_con .contact_item_content ul li p {
	margin-bottom: 12px;
}
