

	.additional_blocks {
		margin-top: 40px;
	}


	.additional_blocks h2 {
	    margin-bottom: 16px;
	    font-weight: 700;
	    font-size: 18px;
	    line-height: 24px;
	    color: #000;		
	}

	.additional_blocks h3 {
	    margin-bottom: 7px;
	    font-weight: 600;
	    font-size: 14px;
	    line-height: 20px;
	    color: #222;
	}

	.additional_blocks p, .additional_blocks li {
	    margin-bottom: 7px;
	    font-weight: 400;
	    font-size: 13px;
	    line-height: 18px;
	    color: #606060;		
	}


	.msg-faq {
		margin-left: auto;
    	margin-right: auto;
    	max-width: 1200px;
	}

	.msg-faq__blocks {
		display: flex;
		flex-direction: column;
	}

	.msg-faq__block {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		width: 100%;
	}
	.msg-faq__block__question {
		min-width: 300px;
		width: 30%;
		padding-right: 20px;
		box-sizing: border-box;
	}
	.msg-faq__block__answer {
		min-width: 700px;
		width: 70%;
		padding-bottom: 10px;
		margin-bottom: 10px;
		border-bottom: 1px solid #DDD;
	}	



/*

**** Блок фотографий ****

*/

.additional_blocks_photos .heading-text {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.additional_blocks_photos .heading-text span {
  font-weight: 100;
}

.additional_blocks_photos ul {
  list-style: none;
  padding-inline-start: 0px;
}

/* Responsive image gallery rules begin*/

.additional_blocks_photos .image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.additional_blocks_photos .image-gallery > li {
  flex: 1 1 auto; /* or flex: auto; */
  height: 200px;
  cursor: pointer;
  position: relative;
}
/*
.additional_blocks_photos .image-gallery::after {
  content: "";
  flex-grow: 999;
}
*/
.additional_blocks_photos .image-gallery li img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  border-radius: 5px;
}

.additional_blocks_photos .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(57, 57, 57, 0.502);
  top: 0;
  left: 0;
  transform: scale(0);
  transition: all 0.2s 0.1s ease-in-out;
  color: #fff;
  border-radius: 5px;
  /* center overlay content */
  display: flex;
  align-items: center;
  justify-content: center;
}

.additional_blocks_photos .overlay span {
	text-align: center;
}

/* hover */
.additional_blocks_photos .image-gallery li:hover .overlay {
  transform: scale(1);
}