.logobottom {
color:orange;
font-size:1.1rem;
}
.myhavbartop {
border-bottom: 5px solid #fb8d07 !important;
}
.advantagesBottom {
font-size:1.4rem;
color:white;
}
.myabout {
text-indent:30px;
}
.myabout span {
display: inherit;
}
.myabout span::before {
content: "✔";
display: block;
width: 30px;
height: 30px;
float: left;
color: green;
font-size: 1.5rem;
}
.myabout > strong:first-of-type {
display: inherit;
text-align: center;
font-size: 2rem;
}
.devider {
width: 100vw;
height: calc(100vw * 0.0958);
background-image: url(../images/introline.png);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
.dataTable-top {
display:none;
}
.dataTable-bottom 
{
display:none;
}
.table 
{
display: inline-block;
overflow-x: auto;
}
.a1, .mts {
font-size:2rem;
font-weight:bold;
color:#fb8d08 !important;
}
.a1::before,
.mts::before 
{
	left: -60px;
	top: -10px;
	content: ' ';
	background-image: url(../images/social.svg);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 60px;
	height: 60px;
	position: absolute;
}
/*города*/
        .cities-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
            justify-content: center;
        }
		.cities-container * {
        font-family: Play, sans-serif;
		}
        .city-card {
            flex: 0 0 calc(12.5% - 14px); /* 8 элементов в строке */
            min-width: 150px;
            background-color: #ffbe5e;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 45px;
            padding: 10px;
            box-sizing: border-box;
			cursor:pointer;
        }
        
        .city-card:hover {
            transform: translateY(-3px) !important;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
            background-color: #F09000 !important;
        }
        
        .city-name {
            text-align: center;
            font-weight: 600;
            font-size: 1rem;
            color: #2c3e50;
            line-height: 1.3;
        }
		.city-name a {
			font-weight:inherit;
		}
        /* Адаптивность */
        @media (max-width: 1200px) {
            .city-card {
                flex: 0 0 calc(25% - 12px); /* 4 элемента в строке */
            }
        }
        
        @media (max-width: 768px) {
            .city-card {
                flex: 0 0 calc(33.333% - 10px); /* 3 элемента в строке */
            }
        }
        
        @media (max-width: 576px) {
            .city-card {
                flex: 0 0 calc(50% - 8px); /* 2 элемента в строке */
            }
        }
        
        @media (max-width: 400px) {
            .city-card {
                flex: 0 0 100%; /* 1 элемент в строке */
            }
        }