.hero {

    padding: 55px 0 30px;

}

.hero-title {

    font-size: 44px;

    font-weight: 800;

    margin-bottom: 10px;

}

.hero-subtitle {

    color: var(--text-dim);

    font-size: 18px;

    max-width: 700px;

}

/*
======
Slider
======
*/

.hero {

    padding: 70px 0;

}

.hero-content {

    display: grid;

    grid-template-columns: 420px 1fr;

    gap: 40px;

    align-items: center;

}

.hero-left h1 {

    font-size: 52px;

    font-weight: 800;

    line-height: 1.1;

}

.hero-left p {

    margin: 25px 0;

    font-size: 18px;

    color: var(--text-dim);

}

.hero-search {

    display: flex;

    margin: 35px 0;

}

.hero-search input {

    flex: 1;

    padding: 16px;

    background: #161b22;

    border: none;

    border-radius: 12px 0 0 12px;

    color: #fff;

}

.hero-search button {

    width: 70px;

    background: var(--accent);

    border: none;

    cursor: pointer;

}

.hero-stats {

    display: flex;

    gap: 35px;

    margin-top: 30px;

}

.hero-stats strong {

    display: block;

    font-size: 30px;

}

.hero-right {

    position: relative;

}

.hero-slide {

    margin-top: 24px;

    position: relative;

    overflow: hidden;

    border-radius: 24px;

}

.hero-slide img {

    width: 100%;

    height: 520px;

    object-fit: cover;

}

.hero-overlay {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    padding: 45px;

    background: linear-gradient(transparent,

            rgba(0, 0, 0, .92));

}

.hero-overlay h2 {

    margin: 15px 0;

    font-size: 34px;

}

.hero-play {

    display: inline-block;

    margin-top: 20px;

    padding: 14px 30px;

    background: var(--accent);

    border-radius: 30px;

}

/*
=====
Swiper
=====
*/
.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
}
.swiper-pagination-bullet {
    color: #fff;
    background: #424242;
}
.swiper-pagination-bullet-active {
    color: #fff;
    background: #007aff;
    opacity: 1;
}
