#hero {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 120px 0;
    color: #fff;
}
#hero .bg {
    background: rgba(25, 25, 25, 0.89);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
#hero .container {
    position: relative;
    z-index: 2;
}
#hero-search-form {
    width: 100%;
    height: 90px;
    background: #fff;
    border: 1px solid #C9C9C9;
    border-radius: 5px;
    position: relative;
}
#hero-search-form input {
    background: transparent;
    border: none;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    font-size: 24px;
    font-weight: 300;
}
#hero-search-form input::placeholder {
  color: #848484;
  opacity: 1; /* Firefox */
}

#hero-search-form input::-ms-input-placeholder { /* Edge 12 -18 */
  color: #848484;
}
#hero-search-form button {
    position: absolute;
    height: 100%;
    width: 90px;
    right: 0;
    font-size: 25px;
    border: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background: #CF1D1D;
    color: #fff;
}
#hero .row{
    align-items: center;
}

#hero .url{
    color: #fff;
    font-weight: 300;
}
#hero h1{
    font-size: 45px;
    line-height: 54px;
    font-weight: 800;
}
#hero p{
    color: #D6D6D6;
    font-weight: 300;
}
#hero .btn{
    background: transparent linear-gradient(180deg, #DB3636 0%, #DB3636 45%, #CF1D1D 46%, #CF1D1D 100%) 0% 0% no-repeat padding-box;
    border-radius: 5px;
    height: 90px;
    font-size: 26px;
    font-weight: 800;
    margin-top: 20px;
}
#hero .btn:hover{
    color: #fff;
    border-color: #fff;
}
#hero .rating{
    display: flex;
    margin: 15px 0;
    align-items: center;
}
#hero span{
    margin-left: 10px;
    font-weight: 600;
    font-size: 22px;
}
#hero .star{
    height: 20px;
    width: 20px;
}
#hero .star.selected{
    color: #CF1D1D;
}
#hero .right{
    padding-left: 100px;
}
@media(max-width: 1200px) {
    #hero .right{
        padding-left: 15px;
        padding-top: 50px;
    }

}
@media(max-width: 767px) {
    #hero {
        padding: 80px 0;
    }
    #hero h1{
        font-size: 30px;
        line-height: 44px;
    }
    #hero p{
        color: #D6D6D6;
        font-weight: 300;
    }
}


/* ==================================================================
COMPANIES
==================================================================*/
.label {
    font-weight: 300;
    letter-spacing: 7.97px;
    color: #C9C9C9;
    text-transform: uppercase;
    margin-bottom: 10px;
}

#companies {
    background: #191919 0 0 no-repeat padding-box;
    padding: 92px 0;
    color: #fff;
}
#companies .btn {
    background: transparent linear-gradient(180deg, #DB3636 0%, #DB3636 45%, #CF1D1D 46%, #CF1D1D 100%) 0 0 no-repeat padding-box;
    border-radius: 5px;
    height: 90px;
    font-size: 26px;
    font-weight: 800;
    margin-top: 20px;
    max-width: 604px;
    margin: 50px auto 0;
}
#companies .btn:hover {
    color: #fff;
    border-color: #fff;
}
#companies h2 {
    font-size: 45px;
    line-height: 54px;
    margin-bottom: 20px;
}
#companies p {
    font-size: 23px;
    line-height: 26px;
    letter-spacing: 1.08px;
}

/* ==================================================================
CATEGORIES
==================================================================*/
#categories{
    padding: 45px 0;
}
#categories h2{
    margin-bottom: 40px;
    font-size: 30px;
    line-height: 37px;
    font-weight: 800;
}
#categories h5{
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    text-align: center;
}
#categories .col .inner{
    border: 1px solid #C9C9C9;
    border-radius: 5px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#categories img{
    height: 42px;
    width: 42px;
    margin: 20px 0 35px;
}

@media(max-width: 1400px){
    #categories h5 {
       min-height: 50px;
    }
}
@media(max-width: 1200px){
    #categories .row{
        flex-wrap: wrap;
    }
    #categories .col {
        flex: 1 0 33%;
        margin-bottom: 20px;
    }
}
@media(max-width: 991px){
    #categories .col {
        flex: 1 0 50%;
    }
}
@media(max-width: 500px){
    #categories .col {
        flex: 1 0 100%;
    }
    #categories h5 {
       min-height: auto;
    }
}

/* ==================================================================
TEXT BLOCK
==================================================================*/
.text-block{
    padding: 45px 0;
}
.text-block h2{
    font-size: 45px;
    line-height: 54px;
    margin-bottom: 20px;
}