/**********************************************************************/
/**********************************************************************/
.page-contacts {
	margin-bottom: 130px;
}

/**********************************************************************/
.page-contacts .breadcrumbs {
	margin-top: 40px;
}
.page-contacts .breadcrumbs a,
.page-contacts .breadcrumbs a:after,
.page-contacts .breadcrumbs p {
	color: #808080;
	text-shadow: none;
}

/**********************************************************************/
.page-contacts__title {
	margin-bottom: 35px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 84px;
	line-height: 92px;
	color: #76B5CD;
}


/**********************************************************************/
/**********************************************************************/
.page-contacts__body {
	display: flex;
	justify-content: space-between;
	margin-bottom: 80px;
}

/**********************************************************************/
.page-contacts__map {
	width: calc(100% - 490px);
	margin-bottom: 20px;
}
.page-contacts__map iframe {
	width: 100%;
	height: 600px;
}

/**********************************************************************/
.page-contacts__info {
	display: flex;
    flex-direction: column;
	flex-wrap: wrap;
	width: 450px;
	max-width: 100%;
}
.page-contacts__company {
	margin-bottom: 50px;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 30px;
	color: #424A5F;
}
.page-contacts .contacts-infolist {
	margin-bottom: 30px;
}
.page-contacts .contacts-infolist .col {
	margin-bottom: 30px;
}
.page-contacts .contacts-infolist .col:last-child {
	margin-bottom: 0;
}
.page-contacts .contacts-infolist__item {
	position: relative;
	display: flex;
	flex-direction: column;
    justify-content: center;
	min-height: 30px;
	padding-left: 50px;
}
.page-contacts .contacts-infolist__item img {
	position: absolute;
	left: 0;
	top: 5px;
	width: 24px;
}
.page-contacts .contacts-infolist__item p {
	margin-right: auto;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	color: #424A5F;
}
.page-contacts .contacts-infolist__item a {
	margin-right: auto;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	color: #424A5F;
	transition: opacity 0.3s;
}
.page-contacts .contacts-infolist__item a:hover {
	opacity: 0.6;
}
.page-contacts__btns {
	display: flex;
	flex-wrap: wrap;
	margin-top: auto;
}
.page-contacts__btn {
	margin-right: 30px;
	margin-bottom: 20px;
	padding: 15px 25px;
	border-radius: 30px;
	background-color: #C5DCEB;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 30px;
	color: #3F7C94;
	text-align: center;
	transition: background-color 0.3s, color 0.3s;
}
.page-contacts__btn:last-child {
	margin-right: 0;
}
.page-contacts__btn:hover {
	background-color: #76B5CD;
	color: #FFFFFF;
}


/**********************************************************************/
/**********************************************************************/
.page-contacts .team {
	display: flex;
	flex-direction: column;
}

/**********************************************************************/
.page-contacts .team__cats {
	display: flex;
	flex-wrap: wrap;
	border-left: 1px solid #FFFFFF;
	border-top: 1px solid #FFFFFF;
}
.page-contacts .team__cat {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 20%;
	height: 75px;
	padding: 5px 15px;
	border-right: 1px solid #FFFFFF;
	border-bottom: 1px solid #FFFFFF;
	background-color: #C5DCEB;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 22px;
	color: #3F7C94;
	text-align: center;
	transition: background-color 0.3s, colo 0.3s;
	cursor: pointer;
}
.page-contacts .team__cat:hover {
	background-color: #76B5CD;
	color: #FFFFFF;
}
.page-contacts .team__cat.active {
	background-color: #76B5CD;
	font-weight: 600;
	color: #FFFFFF;
}

/**********************************************************************/
.page-contacts .team__members {
	display: flex;
	flex-wrap: wrap;
	border-left: 1px solid #FFFFFF;
}
.page-contacts .team-member {
	position: relative;
	display: none;
	flex-direction: column;
	width: 20%;
	padding-bottom: 20%;
	border-right: 1px solid #FFFFFF;
	border-bottom: 1px solid #FFFFFF;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: #76B5CD;
	overflow: hidden;
}
.page-contacts .team-member.active {
	display: flex;
}
.page-contacts .team-member__icon {
	position: absolute;
	top: 10px;
	right: 10px;
	display: none;
	flex-direction: column;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: #2C4080;
}
.page-contacts .team-member__icon img {
	width: 15px;
	margin: auto;
    padding-bottom: 2px;
}
.page-contacts .team-member__body {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transform: translateX(-100%);
	display: flex;
	flex-direction: column;
	padding: 20px 20px 30px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: #76B5CD;
	transition: transform 0.3s;
}
.page-contacts .team-member:not(.has-photo) .team-member__body,
.page-contacts .team-member.has-photo:hover .team-member__body {
	transform: none;
}
.page-contacts .team-member__name {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
	color: #FFFFFF;
}
.page-contacts .team-member__info {
	display: flex;
	flex-direction: column;
	margin-top: auto;
}
.page-contacts .team-member__pos {
	margin-bottom: 5px;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
	color: #FFFFFF;
}
.page-contacts .team-member__tel {
	margin-top: 5px;
	margin-right: auto;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	color: #FFFFFF;
	transition: opacity 0.3s;
}
.page-contacts .team-member__tel:hover {
	opacity: 0.6;
}
.page-contacts .team-member__email {
	margin-top: 5px;
	margin-right: auto;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	color: #FFFFFF;
	text-decoration: underline;
	transition: opacity 0.3s;
}
.page-contacts .team-member__email:hover {
	opacity: 0.6;
}




/**********************************************************************/
/*********************         RESPONSIVE         *********************/
/**********************************************************************/
@media screen and (max-width: 1440px) {
	/******************************************************************/
	/******************************************************************/
	.page-contacts {
		margin-bottom: 80px;
	}
	
	/******************************************************************/
	.page-contacts__title {
		margin-bottom: 20px;
		font-size: 50px;
		line-height: 60px;
	}
	
	
	/******************************************************************/
	/******************************************************************/
	.page-contacts__body {
		margin-bottom: 60px;
	}

	/******************************************************************/
	.page-contacts__map {
		width: calc(100% - 420px);
	}
	.page-contacts__map iframe {
		height: 450px;
	}

	/******************************************************************/
	.page-contacts__info {
		width: 380px;
	}
	.page-contacts__company {
		margin-bottom: 30px;
		font-size: 18px;
		line-height: 24px;
	}
	.page-contacts .contacts-infolist {
		margin-bottom: 20px;
	}
	.page-contacts .contacts-infolist .col {
		margin-bottom: 20px;
	}
	.page-contacts .contacts-infolist__item {
		min-height: 25px;
		padding-left: 40px;
	}
	.page-contacts .contacts-infolist__item img {
		width: 20px;
	}
	.page-contacts .contacts-infolist__item p {
		line-height: 24px;
	}
	.page-contacts .contacts-infolist__item a {
		line-height: 24px;
	}
	.page-contacts__btn {
		margin-right: 20px;
		padding: 10px 20px;
		font-size: 18px;
		line-height: 25px;
	}

	
	/******************************************************************/
	/******************************************************************/
	.page-contacts .team__cat {
		height: 60px;
		padding: 3px 10px;
		font-size: 16px;
		line-height: 18px;
	}

	/******************************************************************/
	.page-contacts .team-member__body {
		padding: 15px;
	}
	.page-contacts .team-member__name {
		font-size: 16px;
		line-height: 20px;
	}
	.page-contacts .team-member__pos {
		font-size: 16px;
		line-height: 20px;
	}
	.page-contacts .team-member__tel {
		font-size: 14px;
		line-height: 18px;
	}
	.page-contacts .team-member__email {
		font-size: 14px;
		line-height: 18px;
	}
}


@media screen and (max-width: 1024px) {
	/******************************************************************/
	/******************************************************************/
	.page-contacts__body {
		flex-direction: column;
	}

	/******************************************************************/
	.page-contacts__map {
		width: 100%;
		margin-bottom: 0;
	}
	.page-contacts__map iframe {
		width: 100%;
		height: 400px;
	}

	/******************************************************************/
	.page-contacts__info {
		flex-direction: row;
		width: 100%;
		margin-bottom: 40px;
		order: -1;
	}
	.page-contacts__company {
		width: 700px;
		max-width: 100%;
	}


	/******************************************************************/
	/******************************************************************/
	.page-contacts .team__cat {
		width: 25%;
		padding: 3px 5px;
		font-size: 14px;
		line-height: 100%;
	}

	/******************************************************************/
	.page-contacts .team-member {
		width: 25%;
		padding-bottom: 25%;
	}
	.page-contacts .team-member__name {
		font-size: 14px;
		line-height: 18px;
	}
	.page-contacts .team-member__pos {
		margin-bottom: 3px;
		font-size: 14px;
		line-height: 18px;
	}
	.page-contacts .team-member__tel,
	.page-contacts .team-member__email {
		margin-top: 3px;
		font-size: 12px;
		line-height: 14px;
	}
}


@media screen and (max-width: 767px) {
	/******************************************************************/
	/******************************************************************/
	.page-contacts {
		margin-bottom: 60px;
	}

	/******************************************************************/
	.page-contacts .breadcrumbs {
		margin-top: 20px;
	}

	/******************************************************************/
	.page-contacts__title {
		margin-bottom: 10px;
		font-size: 40px;
		line-height: 50px;
	}


	/******************************************************************/
	/******************************************************************/
	.page-contacts__body {
		margin-bottom: 40px;
	}

	/******************************************************************/
	.page-contacts__map {
		width: calc(100% + 60px);
		margin-left: -30px;
		margin-right: -30px;
	}
	.page-contacts__map iframe {
		height: 300px;
	}

	/******************************************************************/
	.page-contacts__info {
		margin-bottom: 30px;
	}
	.page-contacts__company {
		margin-bottom: 20px;
		font-size: 16px;
		line-height: 20px;
	}
	.page-contacts .contacts-infolist {
		margin-bottom: 30px;
	}
	.page-contacts .contacts-infolist .col {
		margin-bottom: 15px;
	}
	.page-contacts .contacts-infolist__item {
		min-height: 20px;
		padding-left: 35px;
	}
	.page-contacts .contacts-infolist__item p {
		font-size: 14px;
		line-height: 20px;
	}
	.page-contacts .contacts-infolist__item a {
		font-size: 14px;
		line-height: 20px;
	}
	.page-contacts__btn {
		margin-bottom: 10px;
		font-size: 16px;
		line-height: 20px;
	}


	/******************************************************************/
	/******************************************************************/
	.page-contacts .team__cat {
		width: calc(100% / 3 );
		height: 50px;
	}

	/******************************************************************/
	.page-contacts .team-member {
		width: calc(100% / 3 );
		padding-bottom: calc(100% / 3 );
	}
	.page-contacts .team-member__icon {
		display: flex;
	}
	.page-contacts .team-member__body {
		padding: 10px;
	}
	.page-contacts .team-member.has-photo:hover .team-member__body {
		transform: translateX(-100%);
	}
	.page-contacts .team-member.has-photo.show .team-member__body {
		transform: none !important;
	}
}


@media screen and (max-width: 600px) {
	/******************************************************************/
	/******************************************************************/
	.page-contacts .team__cat {
		width: 50%;
		font-size: 12px;
	}

	/******************************************************************/
	.page-contacts .team-member {
		width: 50%;
		padding-bottom: 50%;
	}
	.page-contacts .team-member__name {
		font-size: 12px;
		line-height: 14px;
	}
	.page-contacts .team-member__pos {
		font-size: 12px;
		line-height: 14px;
	}
	.page-contacts .team-member__tel {
		margin-top: 0;
		font-size: 10px;
	}
	.page-contacts .team-member__email {
		margin-top: 0;
		font-size: 10px;
	}
}


@media screen and (max-width: 450px) {
	/******************************************************************/
	/******************************************************************/
	.page-contacts .team-member__icon {
		top: 5px;
		right: 5px;
		width: 25px;
		height: 25px;
	}
	.page-contacts .team-member__icon img {
		width: 12px;
	}
}