/* ===========================
   HERO
=========================== */

.hero {
    position: relative;
    padding: 110px 0 90px;
    overflow: hidden;
    background:
        linear-gradient(rgba(10, 28, 60, .55), rgba(10, 28, 60, .55)),
        url('/upload/directions/premium.jpg') center center/cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 119, 255, .18),
            rgba(0, 188, 212, .12));
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1180px;
}

.hero h1 {
    max-width: 760px;
    color: #fff;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 25px;
}

.hero p {
    max-width: 650px;
    color: rgba(255, 255, 255, .92);
    font-size: 21px;
    line-height: 1.7;
    margin: 0 0 45px;
}

.hero .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 42px;
    border-radius: 60px;
    background: #ff7a00;
    color: #fff !important;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none !important;
    transition: .3s;
    box-shadow: 0 15px 35px rgba(255, 122, 0, .35);
}

.hero .btn:hover {
    background: #ff9200;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 122, 0, .45);
}

/* Блок поиска */

.tv-search-form {
    margin-top: 60px;
    background: #fff;
    padding: 30px;
    border-radius: 22px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .15);
}

/* Адаптив */

@media(max-width:992px) {

    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

}

@media(max-width:576px) {

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 17px;
    }

    .hero .btn {
        width: 100%;
    }

    .tv-search-form {
        padding: 20px;
    }

}