.wrapper__rekvizity {background: linear-gradient(0deg, rgb(223, 223, 223) 0%, rgba(249, 250, 254, 0) 100%)}
.contacts{margin: 0 auto; background: #fff; border-radius: 10px; overflow: hidden}
.contacts__grid{display: flex;}
.contacts__main{width: 75%;padding: 15px;}
.contacts__sidebar{padding: 15px;background: #c4c4c4;width: 25%;}
.contacts__inner-grid{display: flex;flex-wrap: wrap;gap: 20px;}
.contacts__column{width: calc((100% - 40px) / 3); min-width: 250px}
.contact-item{margin-bottom: 30px;padding: 10px;min-height: 250px}
.contact-item__icon{width: 75px; height: 75px; margin-bottom: 15px; display: flex; align-items: center; justify-content: center; background: #FFEFEF; border-radius: 50%}
.contact-item__icon img{max-width: 70%; max-height: 70%}
.contact-item__title{font-size: 16px;font-weight: 700;color: #000;margin-bottom: 15px;border-bottom: 1px solid rgba(0,0,0,0.2);padding-bottom: 15px}
.contact-item__content{font-size: 16px;color: #222}
.contact-item__phone{color: #990001;text-decoration: none;font-size: 20px;transition: color 0.2s ease}
.contact-item__phone:hover{color: #000}
.contact-item__address{line-height: 1.5}
.contact-item__email{color: #990001;font-size: 20px;}
.contact-item__email:hover{color: #000}
.contact-item__list{list-style: none}
.contact-item__list-item{margin-bottom: 10px}
.contact-item__list-link{color: #990001; text-decoration: none; display: flex; align-items: center; transition: color 0.2s ease}
.contact-item__list-link:hover{color: #000}
.contact-item__list-icon{margin-right: 8px; width: 20px; height: 20px}
.contacts-details{padding: 20px; background: #f8f8f8}
.contacts-details__title{color: #990001; line-height: 1.3; margin: 0 0 20px}
.contacts-details__list{list-style: none}
.contacts-details__item{margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px dashed rgba(0,0,0,0.2); font-size: 16px; line-height: 1.5; color: #000}
.contacts-details__item:last-child{border-bottom: none; margin-bottom: 0; padding-bottom: 0}
        
@media(max-width:1259px){
	.contacts__grid{flex-wrap:wrap}
	.contacts__main, .contacts__sidebar{width: 100%;}
	.contact-item{min-height:215px}
}  
@media(max-width:991px){
	.contacts__inner-grid{gap: 15px;}
	.contacts__column{width: calc((100% - 15px) / 2);}
} 
@media(max-width:767px){
	.contacts__inner-grid{gap:0;}
	.contacts__column{width: 100%}
	.contact-item{min-height:auto; margin:0}
	.contacts__main, .contacts__sidebar{padding: 10px;}
	.contacts__sidebar{padding: 15px}
	.contact-item__icon{width: 50px; height: 50px; margin-bottom: 10px}
	.contact-item__title{margin-bottom: 10px; padding-bottom: 10px}
	.contact-item__content{font-size: 14px}
	.contact-item__phone, .contact-item__email{font-size: 18px}
	.contacts-details{padding: 15px}
	.contacts-details__title{ margin: 0 0 15px}
	.contacts-details__item{font-size: 14px; line-height: 1.4}
}