.operator_block{
    padding-bottom:4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.phone_number_block{
    background-color: #F2F2F2;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 30px 0 0;
}
.phone_number_block .phone_number{
    font-size: 2.5rem;
    color: #cc2f2f;
    font-weight: bold;
}
.main_title{
color: #333333;
}
.checkbox:not(checked) {
    position: absolute;
    opacity: 0;
}
.map-options {
    display: inline-block;
    padding-right: 15px;
}
.checkbox + label {
	cursor: pointer;
	font-size:18px;
	font-family:'PTSansRegular', sans-serif;
	color:#333;
	position:relative;
	height:26px;
	font-weight:normal;
}
.checkbox:not(checked) + label {
  position: relative; /* будем позиционировать псевдочекбокс относительно label */
  padding: 0 0 0 20px; /* оставляем слева от label место под псевдочекбокс */
}
.checkbox:not(checked) + label:before {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  width: 14px;
  height: 14px;
  background: #fff;
  border:1px solid #ccc;
}
.checkbox:not(checked) + label:after {
  content: '';
  position: absolute;
  top: 7px;
  left: 3px;
  width: 10px;
  height: 10px;
  background: #C22E2E;
  display:none;
}
.checkbox:checked + label:before {
  background: #fff;
  border:1px solid #C22E2E;
}
.checkbox:checked + label:after {
  display:block;
}
.checkbox:checked + label {
  color: #C22E2E;
}
.checkbox:focus + label:before {
  box-shadow: 0 0 0 3px rgba(255,255,0,.5);
}
.gallery_section{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 3rem 0 2rem 0;
}
.map-container{
  width: 60%;
  margin: auto;
  height: inherit;
}
.map-container img, .map-container iframe{
  width: 100%;
  height: 100%;

}
.maps{
    background-color: #F1F1F1;
    height: 29.167vw;
}
.mail{
    color: #B52222;
     font-size: 1.875rem;
    line-height: 2.25rem;
}
.contact_info_mail{
    padding: 3.125rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 23px;
}
.main_paragraph{
    margin-bottom: 24.5px;
}
@media screen and (max-width:992px) {
    .map-container,.maps{
        height: 192px;
    }
    .mapsOptionsBlock{
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 5px;
    }
}