/* Deputis and departments */


.departments-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, calc(100% / 3 - 20px));
	justify-content: space-between;
	flex-wrap: wrap;
  }
  .departments-list {
	display: flex;
	align-items: center;
	min-height: 110px;
	border-left: 4px solid #2D9AD8;
	margin-bottom: 30px;
	padding: 20px 30px;
	color: #235788;
	font-size: 18px;
	font-size: 1.15em;
	line-height: 1.15em;
	transition: 250ms;
	-webkit-transition: 250ms;
  }
  .departments-list:hover,
  .departments-list:focus {
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	color: #235788;
	border-color: #235788;
  }
  @media (max-width: 1199px) {
	.departments-container {
	  grid-template-columns: repeat(auto-fill, calc(100% / 2 - 13px));
	}
  }
  @media (max-width: 991px) {
	.departments-container {
	  grid-template-columns: repeat(auto-fill, 100%);
	}
	.departments-list {
	  margin-bottom: 20px;
	  min-height: inherit;
	  padding: 20px;
	}
  }
  @media (max-width: 767px) {
	.departments-list {
	  margin-bottom: 15px;
	  font-size: 1em;
	  line-height: 1.5em;
	  padding: 16px;
	  min-height: 4.5em;
	}
  }
  .deputies-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, calc(100% / 3 - 20px));
	justify-content: space-between;
	flex-wrap: wrap;
  }
  .deputies-list {
	display: block;
	margin-bottom: 60px;
	position: relative;
  }
  .deputies-list::before {
	display: block;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	background: white;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	content: "";
	position: absolute;
	z-index:0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 130px);
  }
  .deputies-link {
	display: block;
	padding: 0 50px 29px 50px;
	cursor: pointer;
	position: relative;
	z-index: 1
  }
  .deputies-image-container {
	display: block;
	width: 100%;
	min-width: 100%;
	height: 0;
	padding-bottom: 72%;
	position: relative;
	background: black;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	margin-bottom: 20px;
  }
  .deputies-image {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 7px;
	-webkit-border-radius: 7px;
	overflow: hidden;
  }
  .deputies-text-info {
	font-size: 15px;
	font-size: 1.05em;
	line-height: 24px;
	line-height: 1.5em;
  }
  .deputies-text-info  h3,
  .deputies-text-info p{
	font-size: 1.05em;
	line-height: 1.5em;
  }

  .deputies-text-info h1,
  .deputies-text-info h2,
  .deputies-text-info h3,
  .deputies-text-info h4 {
		font-family: "firago-semibold";
	color: #235788;
	padding: 0;
	margin: 0 0 5px 0;
  }
  .deputies-text-info p {
	padding: 0;
	margin: 0 0 20px 0;
	color: #8A8D95;

  }
  .deputies-contact-info-container {
	border-top: 1px solid #DBE2E8;
	padding-top: 25px;
  }
  .deputies-contact-info {
	display: flex;
	flex-wrap: nowrap;
	margin-bottom: 15px;
	color: #297CAC;
	align-items: center;

  }
  .phone-icon,
  .email-icon {
	width: 18px;
	width: 1.1em;
	margin-right: 10px;
	height:  1.1em;
	fill: #297CAC;
  }
  .deputies-details-container {
	display: flex;
	padding-bottom: 25px;
  }
  .deputies-image-cont {
	display: block;
	width: 33%;
	min-width: 33%;
	max-width: 33%;
	height: 0;
	padding-bottom: 22%;
	position: relative;
	background: black;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	margin: 0 30px 0 0;
  }
  .deputies-image-cont .deputies-image {
	margin: 0;
	display: block;
	position: absolute;
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	height: 100%;
	z-index: 1;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 7px;
	-webkit-border-radius: 7px;
	overflow: hidden;
  }
  .deputies-details-info {
	display: flex;
	align-items: center;
	width: 33%;
	min-width: 33%;
	max-width: 33%;
  }
  @media (max-width: 1499px) {
	.deputies-link {
	  padding: 0 30px 19px 30px;
	}
  }
  @media (max-width: 1199px) {
	.deputies-details-info {
	  flex-grow: 1;
	  width: auto;
	  min-width: inherit;
	  max-width: inherit;
	}
	.deputies-image-cont {
	  width: 45%;
	  min-width: 45%;
	  max-width: 45%;
	  padding-bottom: 30%;
	}
  }
  @media (max-width: 991px) {


	.deputies-container {
	  grid-template-columns: repeat(auto-fill, calc(50% - 13px));
	}
  }
  @media (max-width: 767px) {
	.deputies-details-container {
	  display: block;
	}
	.deputies-image-cont {
	  width: 100%;
	  min-width: 100%;
	  max-width: 100%;
	  padding-bottom: 64%;
	  margin-bottom: 25px;
	}
	.deputies-container {
	  grid-template-columns: repeat(auto-fill, 100%);
	}
  }
  @media (max-width: 499px) {
	.deputies-link {
	  padding: 0 15px 8px 15px;
	}
  }
