.instr{
	background: white;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid black;
    margin-bottom: 20px;
    box-shadow: 5px 5px 11px #a9a9a9;
}
.inst-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0px;
	max-width: 1200px;
	margin: 0 auto;
}
.card > div{
	text-align:left;
}
.card {
	background-color: #fff;
	border-radius: 8px;
	/* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
	padding: 20px;
	text-align: center;
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.card img {
	max-width: 150px;
    height: auto;
    border-radius: 8px;
    filter: drop-shadow(5px 4px 10px #a9a9a9);
}
.card h3 {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--end-color);
	margin: 0;
}
.card p {
	margin: 0;
    padding-top: 10px;
    font-size: 14px;
    color: var(--end-color);
	margin:0;
}
.hightUp{
    margin: 0;
    font-size: 25px;
    font-weight: 800;
    text-align: center;
    color: var(--end-color);
	margin-bottom:20px;
}
.redButton{
    background-color: #F90716;
    display: inline-block;
    color: white !important;
    text-decoration: none;
    font-size: 14px;
    border-radius: 5px;
	padding: 15px 30px;
}
.orangeButton{
    background-color: #fe510c;
    display: inline-block;
    color: white !important;
    text-decoration: none;
    font-size: 14px;
    border-radius: 5px;
	padding: 15px 30px;
}
.yellowButton{
    background-color: #FFCA03;
    display: inline-block;
    color: white !important;
    text-decoration: none;
    font-size: 14px;
    border-radius: 5px;
	padding: 15px 30px;
}
.info-card-block p{
	font-size:16px;
}
.info-card-block{
	background:white;
	border-radius:10px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	padding:15px;
}
.pre-info{
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, 1fr);
	margin-bottom:20px;
}
.image-bvlock{
	padding:0 0px 10px 0;
}
.image-bvlock img{
	max-width:50px;
}
.info-card-block_head{
	display: block;
    font-size: 20px;
    font-weight: 700;
	color: var(--end-color);
}
  .reviews-title {
text-align: center;
font-size: 24px;
margin-bottom: 20px;
color: #333;
  }

  .reviews {
display: flex;
justify-content: space-between;
gap: 20px;
flex-wrap: wrap;
  }

  .review-card {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
padding: 20px;
flex: 1;
min-width: 280px;
max-width: 48%;
display: flex;
align-items: flex-start;

  }

  .review-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
background-color: #ccc;
margin-right: 15px;
  }

  .review-content {
flex: 1;
  }

  .review-author {
font-weight: bold;
color: #333;
  }

  .review-role {
font-size: 14px;
color: #777;
margin-bottom: 10px;
  }

  .review-text {
font-size: 16px;
color: black;
margin-bottom: 10px;
  }

  .review-rating {
color: #f3c623;
  }
.Reviews-sect{
	margin-bottom:20px;
}
.tariff-table {
width: 100%;
/* max-width: 800px; */
border-collapse: collapse;
margin: 0 auto;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
overflow: hidden;
background-color: #fff;
display:none;
margin-bottom:20px;
}
.tariff-table th, .tariff-table td {
padding: 15px;
text-align: center;
border: 1px solid #ddd;
}
.tariff-table th {
background-color: #f0f0f0;
font-weight: bold;
}
.tariff-table td:first-child {
text-align: left;
font-weight: bold;
}
.tariff-table tr:last-child td {
border-bottom: none;
}
.site-header{
	padding: 40px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.in_site{
	text-align:center;
	width:200px;
}
@media screen and (max-width:767px)
{
	.inst-container{
		display:block;
	}
	.pre-info{
		display:block;
	}
	.info-card-block{
		margin-bottom:15px;
	}
	.card{
		flex-direction: column;
	}
	.site-header{
		flex-direction: column;
	}
	.buttBlock > a{
		margin-bottom:10px;
	}
	.buttBlock{
		text-align:center;
	}
}