.contacts-hero {
    background: linear-gradient(88.78deg, #162256 0%, #142988 50%, #162256 100%);
}

/* === Contacts === */

.contacts {
	padding: 70px 0;
	background: #fff;
}

.contacts .container {
	display: flex;
	flex-direction: column;
	gap: 70px;
}

.contacts .section-header {
	text-align: center;
}

.contacts .section-header .section-title {
	font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
}

.contacts .section-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contacts .section-split {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.contacts .contact-box {
    position: relative;
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 30px;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid #3A80F533;
    background: linear-gradient(104.6deg, rgba(58, 128, 245, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
}

img.grid-image {
    min-width: 30px;
    width: 30px;
    height: 30px;
}

.contact-box .contact-content {
	display: flex;
	flex-direction: column;
	padding-top: 8px;
}

.contact-box .contact-label {
	font-weight: 600;
	font-size: 20px;
	line-height: 1.35em;
}

.contact-box .contact-description {
	font-weight: 400;
	font-size: 14px;
	color: rgba(0,0,0,0.6);
	line-height: 1.35em;
}

.contact-box .contact-value {
	text-decoration: none;
	font-size: 18px;
	cursor: pointer;
}

@media only screen and (max-width: 767px) {
	
	.contacts {
		padding: 0;
	}
	
	.contacts .section-header {
		margin-bottom: 30px;
	}
	
	.contacts .section-content {
		gap: 20px;
	}
	
	.contacts .section-split {
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
	}
	
}