.videos__title {
    font-size: 90px;
    text-align: center;
}

.videos__container {
    width: 100%;
    max-width: 1700px;
    padding: 0 30px;
    margin: 0 auto;
}
@media (max-width: 767px) {
    .videos__container {
        padding: 0 15px;
    }
}
@media (max-width: 479px) {
    .videos__container {
        margin: 40px auto 0;
    }
}
.videos__items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}
@media (max-width: 767px) {
    .videos__items {
        margin: 0;
    }
}
.videos__item {
    flex:0 0 calc(33.333% - 40px);
    margin: 0 20px 40px;
}
@media (max-width: 991px) {
    .videos__item {
        flex:0 0 calc(50% - 40px);
        margin: 0 0 40px 0;
    }
}
@media (max-width: 767px) {
    .videos__item {
        flex:0 0 100%;
    }
}
.videos__item-image {
    margin: 0 0 8px 0;
    position: relative;
    cursor: pointer;
}

.videos__item-image:before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    border-left: 40px solid #52b92e;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-right: 0px solid transparent;
    transition: .4s;
    z-index: 3;
}
.videos__item-image:after {
    content: '';
    transition: .4s;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    opacity: .3;
    z-index: 2;
}

.videos__item-image:hover:before {
    opacity: .5;
}

.videos__item-image:hover:after {
    opacity: 0;
}

.videos__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .videos__item-image img {
        max-width: 100%;
        display: block;
        margin: auto;
    }
}

.videos__item-title {
    line-height: 1.5;
    font-size: 18px;
    color: #000;
    font-weight: 900;
}

.timer {
    width: 100%;
    padding: 10px;
    background: #52b92e;
    transition: .4s;
    position: relative;
    z-index: 9999;
}

.timer:hover {
    background: #60d139;
}

.timer__link {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.timer__link._live {
    display: none;
}

.timer__tema {
    color: #fff;
    flex: 0 0 100%;
    margin: 5px 0 14px 0;
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
}

.timer__note {
    color: #fff; 
    margin: 0 12px 0 0;
    font-size: 18px;
}

@media (max-width: 575px) {
    .timer__note {
        flex:0 0 100%;
        margin: 0 0 6px 0;
        text-align: center;
    }
}

.timer__note._center {
    text-align: center;
}

.timer__items {
    display: flex;
    font-size: 24px;
    justify-content: center;
}
.timer__item {
  position: relative;
  min-width: 60px;
  margin-left: 10px;
  margin-right: 10px;
  padding-bottom: 15px;
  text-align: center;
  color: #fff;
}
.timer__item::before {
  content: attr(data-title);
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  font-size: 14px;
}
.timer__item:not(:last-child)::after {
  content: ':';
  position: absolute;
  right: -15px;
}
.timer__close {
    position: absolute;
    width: 15px;
    height: 15px;
    right: 15px;
}

.timer__close:before, .timer__close:after {
    content: '';
    width: 15px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    transition: .4s;
}

.timer__close:before {
    transform: rotate(45deg);
}

.timer__close:after {
    transform: rotate(-45deg);
}

.opinions__carousel-img {
    height: 250px;
    object-fit: contain;
}

.efiry-videos {
    padding: 30px 0;
}