#big-head {
    font-size: 90px;
}
@media (max-width: 59rem) {
    #big-head {
        font-size: 90px !important;
        transition: all 1s;
    }
}
@media (max-width: 40rem) {
    #big-head {
        font-size: 80px !important;
        transition: all 1s;
    }
}
@media (max-width: 31rem) {
    #big-head {
        font-size: 50px !important;
        transition: all 1s;
    }
}

/* video-list-new-keys */

.keys-video-list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    margin: 3rem 1.5rem 6rem;
}

.keys-video-list-two {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    margin: 3rem 1.5rem 0;
}

.keys-video-list--item {
    flex: 0 0 calc(33% - 30px);
    margin-bottom: 3rem;
}

.keys-video-list--item-two {
    flex: 0 0 calc(50% - 30px);
    margin-bottom: 6rem;
}

.keys-video-list--item-preview {
    position: relative;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 5px;
}

.keys-video-list--item-preview img,
.keys-video-list--item-preview iframe {
    border: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

@media (hover:hover) {
    .keys-video-list--item:hover .keys-video-list--item-preview img,
    .keys-video-list--item-two:hover .keys-video-list--item-preview img {
        -webkit-transform:scale(1.2);
        -ms-transform:scale(1.2);
        transform:scale(1.2)
    }
    .keys-video-list--item:hover .keys-video-list--item-heading,
    .keys-video-list--item-two:hover .keys-video-list--item-heading {
        color: #e7332a
    }
}

.keys-video-list--item-descr {
    padding: 20px 0 0 0;
    text-align: left;
}

.keys-video-list--item-heading {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 600;
    margin: 0 0 12px;
    font-size: 29px;
    line-height: 1.2;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

@media (max-width: 900px) {
    .keys-video-list--item {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 600px) {
    .keys-video-list--item-two {
        flex: 0 0 100%;
        margin-bottom: 4rem;
    }
    .keys-video-list-two {
        margin: 3rem 1.5rem 2rem;
    }
}

@media (max-width: 500px) {
    .keys-video-list--item {
        flex: 0 0 100%;
    }
    .keys-video-list {
        margin: 3rem 1.5rem 4rem;
    }
}


/* Всплывающие Подсказки */

span.tooltip-video {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url("/themes/classic/img/page-video/ask.svg") center center no-repeat transparent;
    position: relative;
    bottom: -5px;
    left: 5px;
}
/* делаем подсказку прозрачной и убираем её со страницы, чтобы она не появлялась при наведении на место, где она должна появиться */
span.tooltip-video:before, span.tooltip-video:after{
    position: absolute;
    opacity: 0;
    visibility: hidden;
}
/* стили для всплывающего блока с текстом */
span.tooltip-video:before {
    white-space: pre-line;
    content: attr(data-tooltip);
    width: 350px;
    height: auto;
    font-size: 13px;
    line-height: 20px;
    background: #3C4896;
    color: #fff;
    border-radius: 5px;
    bottom: 55px;
    right: calc(50% - 70px);
    padding: 10px;
    z-index: 10;
}
span.bigtip:before {
    white-space: pre-line;
    content: attr(data-tooltip);
    width: 350px;
    height: auto;
    font-size: 13px;
    line-height: 20px;
    background: #3C4896;
    color: #fff;
    border-radius: 5px;
    bottom: 55px;
    right: calc(50% - 130px) !important;
    padding: 10px;
    z-index: 10;
}
@media (max-width: 32rem) {
    span.tooltip-video:before {
        width: 250px;
    }
}
/* стили для стрелки */
span.tooltip-video:after {
    content: "";
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: #3C4896;
    bottom: 35px;
    left: calc(50% - 10px);
}
span.tooltip-video:hover:before, span.tooltip-video:hover:after {
    opacity: 1;
    visibility: visible;
    transition: .2s ease-in-out .4s; /* сделаем появление подсказки с задержкой */
}
/* добавляем эффект движения */
span.tooltip-video:hover:before {
    bottom: 35px;
}
span.tooltip-video:hover:after {
    bottom: 15px;
}
.part-one-desc ul li {
    margin-bottom: 0.4rem;
}
.part-two ul li {
    margin-bottom: 0.8rem;
}
