
.my_table {
    border-collapse: collapse; /* Убирает двойные границы между ячейками */
    width: 100%; /* Ширина таблицы */
}

.my_table th, .my_table td {
    border: 1px solid rgb(84, 82, 82); /* Граница для ячеек */
    padding: 8px; /* Отступы внутри ячеек */
    text-align: left; /* Выравнивание текста */
}

.my_table th {
    background-color: #f2f2f2; /* Цвет фона для заголовков */
}



.benefits {
    width: 100%;
    /*background: #151d2d;*/
}

.benefits__inner {
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    /*justify-content: space-between;*/
    /*width: 100%;*/
    /*max-width: 1140px;*/
    /*margin: 0 auto;*/
    /*padding: 60px 0;*/
}

.benefits__inner1 {
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    /*justify-content: space-between;*/
    /*width: 100%;*/
    /*max-width: 1140px;*/
    /*margin: 0 auto;*/
    /*padding: 60px 0;*/
}

.benefits__header {
    width: 100%;
    /*text-align: center;*/
    /*line-height: 1.3;*/
    /*padding: 0 15px 60px;*/
    /*color: #e2e2e2;*/
    /*font-size: 2rem;*/
    text-transform: uppercase;
}

.benefits__element {
    /*width: 30%;*/
}

.benefits__icon {
    display: block;
    width: 60px;
    height: 50px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.benefits__element p {
    /*color: #cdcdcd;*/
    /*text-align: center;*/
    /*line-height: 1.3;*/
}

.benefits__number {
    /*font-size: 2.5rem;*/
    /*font-weight: 700;*/
    /*margin-bottom: 20px;*/
    /*opacity: 0;*/
}

.benefits__title {
    /*font-size: 1.125rem;*/
}



/* Настройки маркированного списка */
.hover-effect-cover {
    list-style:none;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    padding: 0;
}
.hover-effect-cover li {
    position: relative;
    /*width: 49%; !* Задаем ширину элемента списка с картинкой*!*/
    display: inline-block;
    background-color: #fff;
    margin: 0;
    /*border: 5px solid #fff;*/
    /*box-shadow: 1px 3px 1px 0 rgba(0, 0, 0, 0.08);*/
    overflow: hidden;
}
/* Заголовок, текст и ссылка */
.hover-effect-cover li h3{
    color: #fff;
    margin: 5px;
}
.hover-effect-cover li p{
    color: #fff;
    margin: 5px;
}
.hover-effect-cover li a {
    display: block;
    text-decoration: none;
    padding: 15px;
    color: #fff;
    background: #000;
    border-radius: 5px;
    margin: 0 auto;
    transition: all 0.4s ease-in-out;
}
.hover-effect-cover li a:hover {
    background: #454545;
    color: #fff;
}
/* Выезжающий блок с текстом для панели снизу вверх */
.hover-effect-cover li > div.effect-to-top {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.hover-effect-cover li:hover > div.effect-to-top {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
}
.hover-effect-cover li div.effect-to-top {
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.3); /* Фон блока при наведении */
    transition: all 0.4s ease-in-out;
    color: #fff;
    transform: translate(0px, 250px) rotate(0deg); /* Направление выезжающей панели */
    border-radius: 3%;
}
.hover-effect-cover li:hover div.effect-to-top {
    opacity: 1;
    transform: translate(0px, 0px) rotate(0deg);
}

