.site-footer {
	padding: 32px 0;
}

.site-footer.grey {background: #f8f8f8;}

.site-footer__inner {
	display: grid;
}

.site-footer__column:nth-child(1) {order: 1}
.site-footer__column:nth-child(2) {order: -1}
.site-footer__column:nth-child(3) {order: 0}

.site-footer__column:nth-child(3) .site-footer__address, .site-footer__column:nth-child(3) .site-footer__socials, .site-footer__text {display: none;}

.site-footer__logo {
	line-height: 0;
	margin-bottom: 24px;
}

.site-footer__privacy {
	font-size: 13px;
	line-height: 16px;
	letter-spacing: -0.0928571px;
	color: #909090;
	margin-bottom: 16px;
}

.site-footer__privacy a {color: #0369D9; text-decoration: none;}

.site-footer__address {
	font-size: 13px;
	line-height: 20px;
	letter-spacing: -0.0928571px;
	color: #909090;
	margin-bottom: 16px;
}

.site-footer__socials { font-size: 0; }

.site-footer__socials-item {
	display: inline-block;
	margin-right: 8px;
}

.site-footer__menu-group {
	margin-bottom: 24px;
}

.site-footer__menu-group-title {
	cursor: pointer;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: -0.1px;
	color: #333333;
	position: relative;
	padding-right: 40px;
}

.site-footer__menu-group-title a {
	color: inherit;
	text-decoration: none;
}

.site-footer__menu-group-title:before {
	position: absolute;
	right: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.989 9.629a.692.692 0 10-.902 1.05l6.462 5.54c.26.222.642.222.901 0l6.462-5.54a.692.692 0 10-.901-1.05L12 14.78 5.989 9.629z' fill='%23333'/%3E%3C/svg%3E");
	content: "";
	width: 24px;
	height: 24px;
	top: 50%;
	margin-top: -12px;
	transition: all 0.2s;
}

.site-footer__menu-group-title.has-link:before {display: none;}

.active .site-footer__menu-group-title:before {transform: rotate(180deg);}

.site-footer__menu-group-box {
	height: 0;
	overflow: hidden;
	transition: all 0.3s;
}

.site-footer__menu-group-box-inner {
	padding-top: 15px;
}

.site-footer__menu-item {
	display: block;
	font-size: 13px;
	line-height: 16px;
	letter-spacing: -0.0928571px;
	color: #909090;
	text-decoration: none;
}

.site-footer__menu-item._flex {
	display: flex;
	align-items: center;
}

.site-footer__menu-item._flex img {margin-right: 4px;}

.site-footer__menu-item + .site-footer__menu-item {margin-top: 8px;}

.site-footer__phone-title {
	font-size: 13px;
	line-height: 20px;
	letter-spacing: -0.0928571px;
	color: #909090;
}

.site-footer__phone {
	font-weight: 800;
	font-size: 18px;
	line-height: 20px;
	color: #282828;
}

.site-footer__phone a {color: inherit; text-decoration: none;}

.site-footer__search {
	display: block;
	position: relative;
	margin-top: 24px;
	margin-bottom: 28px;
	height: 48px;
}

.site-footer__search-input {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	background: #FFFFFF;
	border: 1px solid #D3D3D3;
	outline: none;
	border-radius: 8px;
	font-size: 13px;
	line-height: 24px;
	color: #333333;
	padding: 0 40px 0 16px;
}

.site-footer__search-button {
	position: absolute;
	top: 11px;
	right: 15px;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	cursor: pointer;
	outline: none;
}

@media all and (min-width: 600px) {
	.site-footer {
		padding: 56px 0;
	}
	
	.site-footer__inner {
		grid-template-columns: repeat(2, 1fr);
		grid-column-gap: 32px;
	}
	
	.site-footer__column:nth-child(1) {
		order: 0;
		grid-row-start: 1;
		grid-row-end: 3;
	}
	
	.site-footer__logo {margin-bottom: 21px;}
	
	.site-footer__text {
		display: block;
		font-size: 13px;
		line-height: 20px;
		letter-spacing: -0.0928571px;
		color: #909090;
		margin-bottom: 16px;
	}
	
	.site-footer__text p { margin: 0 0 1em; }
	.site-footer__text p:last-child {margin-bottom: 0;}
	
	.site-footer__search {margin-bottom: 0;}
}

@media all and (min-width: 960px) {
	.site-footer {
		padding: 80px 0;
	}
	
	.site-footer__inner {
		grid-template-columns: 1fr 2fr 1fr;
	}
	
	.site-footer__column:nth-child(3) .site-footer__address, .site-footer__column:nth-child(3) .site-footer__socials {display: block;}
	.site-footer__column:nth-child(1) .site-footer__address, .site-footer__column:nth-child(1) .site-footer__socials {display: none;}
	
	.site-footer__socials {margin-top: 32px;}
	
	.site-footer__search {margin-top: 29px;}
	
	.site-footer__address {margin-bottom: 0; margin-top: 32px;}
	
	.site-footer__privacy {margin-bottom: 0;}
	
	.site-footer__phone {margin-top: 4px;}
	
	.site-footer__column:nth-child(2) {
		display: flex;
		margin-left: -8px;
		margin-right: -8px;
	}
	
	.site-footer__menu-column {
		margin: 0 8px;
		flex: none;
		width: calc(100% / 3 - 16px);
	}
	
	.site-footer__menu-group {margin-bottom: 0;}
	
	.site-footer__menu-group + .site-footer__menu-group {margin-top: 16px;}
	
	.site-footer__menu-group-title {padding-right: 0;}
	
	.site-footer__menu-group-title:before {display: none;}
	
	.site-footer__menu-group-box {height: auto !important;}
}

@media all and (min-width: 1200px) {
	.site-footer__inner {
		grid-template-columns: 264px 1fr 240px;
	}
	
	.site-footer__logo {
		margin-top: -3px;
		margin-bottom: 17px;
	}
	
	.site-footer__text p {margin-bottom: 20px;}
	
	.site-footer__column:nth-child(2) {margin-left: 36px;}
}

.site-footer__mail-wrapper {
	margin-top: 16px;
	display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.site-footer__mail-text a {
	cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.1px;
    color: #333333;
    position: relative;
    padding-right: 40px;
    text-decoration: none;
}